If you get 4 points...
For more complex motion, you can combine various movement blocks to create intricate movement patterns. This involves using multiple movement instructions to achieve a more dynamic and engaging result. Here's an example of a complex movement sequence:
when green flag clicked
repeat (4)
move (100) steps
turn cw (90) degrees
repeat (2)
glide (1) secs to x:(pick random (-100) to (100)) y:(pick random (-100) to (100))
end
end
glide (1) secs to x:(0) y:(0)
In this example, the sprite first performs a square movement pattern and then glides to random positions within the screen. The use of nested repeat blocks and glide instructions creates a dynamic and varied movement sequence.