Project 113: Finger Dancing

3. Arrow Movement

Make your arrow clones start at the bottom of the screen and move upwards toward the top.
Starting point file for this challenge

Your goal

Steps

1. Add a "when I start as clone" block

Add a "when I start as clone" block from the yellow "Events" section. This event will let you add code to only the newly created clones, and not to the original sprite.

2. Show the arrow

You want to first add a "show" block so you will be able to see the new clones, which will start hidden, like the original sprite.

3. Set the starting X and Y position of the clone

You want the clone to start at the bottom of the screen, lined up with the corresponding arrow at the top of the screen. 
The starting Y position will be at the bottom of the screen, which is around -150.
The starting X position will be the same as the corresponding arrow sprite at the top of the screen. 
(For example, the Left Arrow should start at X: -185, Y: -150)

4. Make the arrow move up by 8, forever

Add a forever loop with a "change y by __" block from the dark blue "Movement" section, and change the number to 8.