Your clones should start on the side of the screen opposite your hero, and slowly fly towards it. When they hit the other side of the screen, the clones should delete themselves.
This is how we give instructions to the clones instead of the normal sprite. Even though it looks like an "events" block, this is actually a "control" block.
The clones are spawning all in the same place, which would make the game very predictable! Let's randomize where the clones pop up, but also make sure the clones always start on the right side of the screen so they don't show up too close to your hero.
You'll need a "go to x: __ and y: __" block for this.
Scratch's screen width goes from -240 to 240. Knowing this, how do we make the clone go to the right side of the screen?
To make a random height, you'll need a green "operators" block, "pick random from __ to __." Scratch's screen height goes from -180 to 180. Knowing this, what range should go in your green operators block?
Grab a "repeat until ___" block and put it around the movement block.
Grab a green "operators" block that looks like "__ < __." In the first blank, plug in a dark blue "x position" block. In the second, use -230, because that's the left side of the screen.