Hi all,

I am trying to find a way to control speed of motion and can't find it. Here an example:

Script:
repeat 4 times:
do:
Rocket.turn by (90)
Rocket.forward by (100)

All the lines of code executed immediately, I want to have a pause between motions.

Script:
repeat 4 times:
do:
Rocket.turn by (90)
Rocket.wait(1)
Rocket.forward by (100)
Rocket.wait(1)

Is there option to do it?

Thanks,

Roman