Discuss Scratch
- Discussion Forums
- » Help with Scripts
- » Make sprite move faster
- lisarath
-
4 posts
Make sprite move faster
What would be the appropriate steps to make my sprite move faster as a game goes on? Thank you.
- lisarath
-
4 posts
Make sprite move faster
Thank you. I have tried that but my sprite just shows on the edge of the stage but does not move. Any suggestions? Appreciate your help.
- ssss
-
500+ posts
Make sprite move faster
The sprite touching the edge is an effect of how Scratch works - to prevent new programmers from being confused, no sprites can go off the screen completely. Are you making a game that continually scrolls, or a platformer (background is static)
- lisarath
-
4 posts
Make sprite move faster
My background is static. I do already have some code as follows (not sure if this is affecting it in any way):
When green flag clicked
set speed to 1
forever
move speed steps
if on edge, bounce
When green flag clicked
set speed to 1
forever
move speed steps
if on edge, bounce
- ssss
-
500+ posts
Make sprite move faster
Alright, you need to first set the position of your sprite. Try
~ Does this help?
~ Does this help?
- philipwells
-
1 post
Make sprite move faster
How do I make my sprite go quicker someone pls help me 



- PartyChick777
-
1 post
Make sprite move faster
The Higher the number the faster it moves!
Last edited by PartyChick777 (June 12, 2016 05:30:42)
- lpm0327
-
1 post
Make sprite move faster
How can I make my sprite move faster as the game goes on?
- CobramCat
-
68 posts
Make sprite move faster
I think that I'd be making a variable (eg: quik, give it a “set quik to 1”, but then in the above listing, replace the “1” with “quik”.). My background is static. I do already have some code as follows (not sure if this is affecting it in any way):
When green flag clicked
set speed to 1
forever
move speed steps
if on edge, bounce
As your game progresses, "change ‘quik’ by +/- some fraction".
At least, that would be my starting point.
- masterd22
-
3 posts
Make sprite move faster
Do you want your sprite to increase its speed only when it moves? Or do you want the speed to inscrease with time?
Look at script A or B depending on your preferred option. I added a speed limit as the sprite may move too fast past a certain threshold.
A) Speed increases as the sprite moves
B) Speed increases independantly of the sprite. We need 2 sets of blocks:
Look at script A or B depending on your preferred option. I added a speed limit as the sprite may move too fast past a certain threshold.
A) Speed increases as the sprite moves
B) Speed increases independantly of the sprite. We need 2 sets of blocks:
- amylaser
-
500+ posts
Make sprite move faster
Everyone, please check the date of the original post… This is an extremely old topic.
Also, if you have a question of your own, it would be better to make your own topic instead of posting on someone else's.
Also, if you have a question of your own, it would be better to make your own topic instead of posting on someone else's.
- BRIGGS86
-
3 posts
Make sprite move faster
@Portalnerd27 Same here!!! “Because Im a potato” Is my fave quote!!!
- titanscratch
-
100+ posts
Make sprite move faster
Try this:
I hope I helped.


You can change all the numbers.
I hope I helped.



- CilianSmith
-
1 post
Make sprite move faster
If two sprites are racing, and let's call them cat and dog, if the cat got to the finish line first, how would you make all scripts stop for the dog and the cat?
- Discussion Forums
- » Help with Scripts
-
» Make sprite move faster