Let's create an illusion of a scrolling road. Design a sprite to be a single road divider line, and then program it so it scrolls downwards. It should scroll based off your "speed" variable. (You'll want to keep your speed variable a postive number, so how would you force it to be negative in this new code?)
Put your mouse over the blue cat face and click on the paintbrush tool that pops up. Use the rectangle tool to draw a little road divider line. Remember, you can resize the sprite in the sprite properties if it looks too big or small.
Add a "when green flag clicked" block into the new sprite's code. Then, add a "go to x: __ y:__" block. The top middle of your screen in Scratch would be (0, 170)
Add a "when I start as a clone" block from "control" and put it somewhere else in your code. Then, grab a "looks" block called "go to back layer" and connect it on.
This code will tell your road divider lines to be beneath your car instead of floating on top.
Grab a "change Y by __" block from "motion" and connect it on. You want the clones to be moving based off speed, so grab an orange "speed" bubble from "variables" and drop it in the blank.
You'll want the clone's Y position to change by a negative number so they scroll down instead of up, but right now speed is a positive number.
Grab an "operators" block called " __ * __" which is a multiplication block. Put this in the "change Y by __" blank. Put the orange "speed" bubble in the first green blank. Then in the second, type -1.