Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » How do you make your character emit a trail behind it?
- Freilly12
-
10 posts
How do you make your character emit a trail behind it?
I can't seem to figure out how to make my character emit a trail.
Any suggestions?
Any suggestions?
- awesome-llama
-
1000+ posts
How do you make your character emit a trail behind it?
Depending on what the trail is, if it is using the pen,
when green flag clickedInside the sprite.
clear
set pen color to [#0000ff]
forever
pen down
end
- coxy5
-
100+ posts
How do you make your character emit a trail behind it?
Awesome-Llama has created a solution but actually there is no need for the forever loop.
Will keep drawing a line until:
is used!
pen down
Will keep drawing a line until:
pen up
is used!
- awesome-llama
-
1000+ posts
How do you make your character emit a trail behind it?
Check out this project here for help. It uses a sprite instead of a pen.
- obirsner1
-
4 posts
How do you make your character emit a trail behind it?
you can do this for a cool trail
when green flag clicked
forever
create clone of [ myself]
when I start as a clone
repeat (5)
change [ ghost] effect by (20)
delete this clone
end
Last edited by obirsner1 (March 12, 2019 21:31:19)
- obirsner1
-
4 posts
How do you make your character emit a trail behind it?
sorry mistake, put the delete clone block outside the repeat 5 times
Last edited by obirsner1 (March 12, 2019 21:29:53)
- StrangeMagic32
-
1000+ posts
How do you make your character emit a trail behind it?
you can do this for a cool trailwhen green flag clicked
forever
create clone of [ myself]
when I start as a clone
repeat (5)
change [ ghost] effect by (20)
delete this clone
end
It's great that you want to help, but this is from 2015, that's 4 years ago… sorry mistake, put the delete clone block outside the repeat 5 times
It's best to help the people that have questions at the moment, rather than one from that long ago.
Thanks

(though yeah that is a pretty cool trail)
Last edited by StrangeMagic32 (March 12, 2019 21:35:10)
- Discussion Forums
- » Help with Scripts
-
» How do you make your character emit a trail behind it?