In your graphics code, I think you should be able to use the bot sprites with the car without any need for image editing.
Just add four instances of the construction robot graphics, add the position property to put them at the corners. That property is relative to the direction of the vehicle.
Like so, for the four entries of the construction robot graphics respectively:
position = {0.0, 1.0}
position = {0.0, -1.0}
position = {1.0, 0.0}
position = {-1.0, 0.0}
Then you script it to change render_layer of the bots as it turns, to make sure the right robots are behind and in front depending which way the vehicle is facing.