Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » Random spawning
- NinjaLemon2016
-
18 posts
Random spawning
How do you make the same sprite clone it self multiple times and appear multiple times? Project: https://scratch.mit.edu/projects/88239325/
- baconlover5555
-
100+ posts
Random spawning
repeat block with clone block.
when the clone starts, show, go to x: random -240 to 240, y: random -180 to 180, if touching player then hide
when the clone starts, show, go to x: random -240 to 240, y: random -180 to 180, if touching player then hide
- TheGamer-
-
100+ posts
Random spawning
try this
repeat ()
create clone of [ v]
end
forever
broadcast [tick v] and wait
end
when I start as a clone
go to x: (pick random (-240) to (240)) y: (pick random (-180) to (180))
show
when I receive [tick v]
if <touching [ v] ?> then
change [score v] by (1)
hide
create clone of [ v]
end
- baconlover5555
-
100+ posts
Random spawning
try thisrepeat ()
create clone of [ v]
end
forever
broadcast [tick v] and wait
end
when I start as a clone
go to x: (pick random (-240) to (240)) y: (pick random (-180) to (180))
show
when I receive [tick v]
if <touching [ v] ?> then
change [score v] by (1)
hide
create clone of [ v]
end
you never put in the delete this clone block… it will just keep making clones and never delete
- deck26
-
1000+ posts
Random spawning
Please start your own topic and share your project. didn't work
Please don't spam or necropost. hi and by
Last edited by deck26 (Nov. 11, 2017 14:10:28)
- Feeshy
-
5 posts
Random spawning
Hey guys I need a working script for it. The one you sent didn't work so I NEED a working one thank you for reading this and if you did thanks for responding!!!!!!!!!!

- supermonkeycat157
-
100+ posts
Random spawning
This could be it:
repeat ()
create clone of [myself]
end
forever
broadcast [random spawn]
end
when I receive [random spawn]
if <touching [Sprite] ?> then
change [score] by (1)
hide
create clone of [myself]
end
when I start as a clone
go to x: (pick random (-240) to (240)) y: (pick random (-180) to (180))
show
- Feeshy
-
5 posts
Random spawning
Thx but that “Touching sprite” block I don't think exists anymore! Try to find another one also I'll keep searching!
- Script_Helper
-
100+ posts
Random spawning
Hey guys I need a working script for it. The one you sent didn't work so I NEED a working one thank you for reading this and if you did thanks for responding!!!!!!!!!!
I triedthat one
Oh oops that might work didn't try that one sorry!
Please Thx but that “Touching sprite” block I don't think exists anymore! Try to find another one also I'll keep searching!DO NOT necropost
- Feeshy
-
5 posts
Random spawning
Guys please give a script!!!!
Feeshy wrote:
Hey guys I need a working script for it. The one you sent didn't work so I NEED a working one thank you for reading this and if you did thanks for responding!!!!!!!!!!
Feeshy wrote:
I triedthat one
Feeshy wrote:
Oh oops that might work didn't try that one sorry!
Feeshy wrote:
Thx but that “Touching sprite” block I don't think exists anymore! Try to find another one also I'll keep searching!
Please DO NOT necropost

Feeshy wrote:
Hey guys I need a working script for it. The one you sent didn't work so I NEED a working one thank you for reading this and if you did thanks for responding!!!!!!!!!!
Feeshy wrote:
I triedthat one
Feeshy wrote:
Oh oops that might work didn't try that one sorry!
Feeshy wrote:
Thx but that “Touching sprite” block I don't think exists anymore! Try to find another one also I'll keep searching!
Please DO NOT necropost
- Discussion Forums
- » Help with Scripts
-
» Random spawning