how do I make my avatar run faster and jump higher?

vinilimaaa
Joined 07/08/2022
Posts 12
12:48 AM 14/10/2022
Quote from Exposing , 10:11 PM 13/10/2022
Quote from MixaMega , 05:05 PM 12/10/2022
Quote from ezg , 10:59 AM 12/10/2022
try this:

Game.on("playerJoin", (player) => {
player.setSpeed(8) // default walkspeed is 4.
})

this ^^^
to change the jump do
player.setJumpPower(10)

Thank you! How do I add it to my game tho? Do I just make a note pad and upload it?
You can make a new JavaScript file (must end with .js extension) and then add it to your "user_scripts" folder 😁


[Frick] Exposing
Joined 25/08/2022
Posts 16,156
01:49 PM 14/10/2022
Quote from vinilimaaa , 12:48 AM 14/10/2022
Quote from Exposing , 10:11 PM 13/10/2022
Quote from MixaMega , 05:05 PM 12/10/2022
Quote from ezg , 10:59 AM 12/10/2022
try this:

Game.on("playerJoin", (player) => {
player.setSpeed(8) // default walkspeed is 4.
})

this ^^^
to change the jump do
player.setJumpPower(10)

Thank you! How do I add it to my game tho? Do I just make a note pad and upload it?

You can make a new JavaScript file (must end with .js extension) and then add it to your "user_scripts" folder 😁
thanks!


1 2