Paint with Bubble

In this project, we are going to learn how to use clone to make a bubbly project, lets have some fun with scratch animation!

1) Delete the existing sprite and create your circle sprite, fill the circle sprite with color and put the circle in center, and say "I am original!".

2) Every time we restart the game, make your sprite points to a random position and keep moving forward.

3) If the sprite touches edge, bounce back and keep moving.

4) When your sprite bounce, use "create a clone of myself" to create a clone of your sprite.

5) When start as a clone, say "I am clone!", set its size to random size, add ghost effects to make it transparent and make clone point towards random position

6) Make the clones start moving forward just like the original, once hit the wall bounce back.

7) More and more clones gets created which makes your screen very busy. Delete say blocks on both original and cloned sprits to make your project looks clean. (Hint: the purpose to add say block before is for you to understand the difference between original sprite and cloned sprite.)

8) Add two more sprits filled with different color. (Hint: right click your current sprite and choose "duplicate", "duplicate" copies both sprite and code, change the filling color)

9) Sit back and enjoy the art work you just created! Brain teaser: there are limitations on how many clones you be able to create because of browser's limited space resource,f can you find a way to delete your clones periodically?