Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » Coin script.
- jellbics
-
3 posts
Coin script.
I wanna make the coin script. When character touch it, it disappears on the screen. I also need score, too!
Can someone help me?
Can someone help me?
- coxy5
-
100+ posts
Coin script.
Have a look at this project as the worms in this do exactly what you want the coins to do!
http://scratch.mit.edu/projects/27077550/
http://scratch.mit.edu/projects/27077550/
- MegaApuTurkUltra
-
1000+ posts
Coin script.
Use this script in your coin sprite
when gf clicked
repeat (number of clones)
create clone of [myself v]
when I start as a clone
go to whatever position::grey
forever
if<touching [player v]>
change [ca$h money v] by (1)
delete this clone
end
wait (0.01) secs // don't spam out other scripts (a glitch that happens sometimes with PepperFlash)
Last edited by MegaApuTurkUltra (Sept. 22, 2014 14:29:06)
- Discussion Forums
- » Help with Scripts
-
» Coin script.