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

How to lower the player’s default walk speed?

Asked by 4 years ago

Title says it all. Thank you!

1 answer

Log in to vote
0
Answered by 4 years ago
Edited by royaltoe 4 years ago

Without code:

1) Go to StarterPlayer in the explorer. (view tab->explorer)

2) In the properties, (view tab->properties) look for the WalkSpeed property. It should have a default value of 16.

3) You can edit this number to be any number you want.

With code:

PlayedAdded and CharacterAdded are events.

PlayedAdded runs when the player joins the game CharacterAdded runs when the player's character loads into game

inside of character added, we change the players walkspeed. this means whenever the player's character loads, their walkspeed will be changed to 'newWalkspeed'

local newWalkspeed = 10 

game.Players.PlayedAdded:Connect(function(player)
   player.CharacterAdded:Connect(function(character)
      character:WaitForChild("Humanoid").WalkSpeed = newWalkspeed
   end)
end)
0
If this helped, please accept my answer. Simpletton 82 — 4y
0
do you need any more help? i tried to explain a bit more, but i don't know what exactly/ when you're trying to change the walkspeed, so more information would be helpful in order to help you   royaltoe 5144 — 4y
0
dude what the heck, you just removed my reputation points ;-; Simpletton 82 — 4y
0
i accepted it prematurely sorry. i wasnt sure if she got her answer which is why i unaccepted after i accepted royaltoe 5144 — 4y
Ad

Answer this question