Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

i want a script that works in 2019 that makes the roblox character faster how do i get one?

Asked by 6 years ago

i have tried many a code, but none work. i want the speed to go like 50 or something so that the character can jump over big holes like that speedrun game. ive edited the huminoid speed directly but when i die it gets set back. i really need help.

0
next time, include your latest attempt so we can see how you attempted to do it and what your thought process is theking48989987 2147 — 6y
0
localscript: game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50 greatneil80 2647 — 6y
0
be greatful ^ also, put the script in startergui greatneil80 2647 — 6y
0
i did. and it didnt work? is there anything i need to change with the script? i am using R15 so if its supposed to run R6 i can change that therealdood35 -5 — 6y
0
check if another script is using WalkSpeed and destroy that part from that script, That is the only other problem I see greatneil80 2647 — 6y

2 answers

Log in to vote
0
Answered by
clc02 553 Moderation Voter
6 years ago

You haven't really attempted to make a script of your own, but I'm going to give you the benefit of the doubt and assume that you're asking how such a thing would be done. This isn't a site for requests. It's for asking for methods on how to do a thing, or after making an attempt come back with your script for error checking.

You'll want to use the PlayerAdded event of game.Players, and on every player use the CharacterAdded event, this code will run every time the player respawns, and you can set the humanoid walkspeed in that chunk of code. Character Added passes the character through it's connected function so you can use that argument to find the humanoid you're changing the walk speed of.

Ad
Log in to vote
-3
Answered by 6 years ago

create a script in "starter character" scripts and do something like this

script.Parent.Humanoid.WalkSpeed = 50
script.Parent.Humanoid.JumpPower = 75

even if you die, you'll still be the same speed. I'm guessing you're fairly new to scripting helpers but it's recommended to put up a script of what's wrong it's not a request site.

0
*nice, -3 rep :D* greatneil80 2647 — 6y

Answer this question