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

How could you change any player that joins walkspeed?

Asked by 8 years ago

I tried this

player = game.Players.LocalPlayer
character = player.Character
Character.WalkSpeed = 50 

Not working :(

1 answer

Log in to vote
0
Answered by
Hero_ic 502 Moderation Voter
8 years ago

Place in a "localscript" in the startergui you also forgot to add humanoid also change the first C in line 3 to a lower case one

The script should look like this

player = game.Players.LocalPlayer
character = player.Character
character.Humanoid.WalkSpeed = 50 

Ad

Answer this question