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

How do i make robloxians walk 10 speed or slower?

Asked by 10 years ago

How do i make robloxians walk 10 speed or slower? trying to make a horror game

2 answers

Log in to vote
2
Answered by 10 years ago

If you mean the Walkspeed of a Player, then;

game.Players.PlayerAdded:connect(function(plr)
plr.CharacterAdded:connect(function(char)
char:FindFirstChild("Humanoid").WalkSpeed=NUMBERHERE
end) end)

I hope this helped! ;)

Ad
Log in to vote
4
Answered by
RM0d 305 Moderation Voter
10 years ago
game.Players.PlayerAdded:connect(function(Player)-- WHEN PLAYER JOINS
Player.CharacterAdded:connect(function(character)-- when there character gets added
character:FindFirstChild("Humanoid").WalkSpeed = 10 --Gets there humanoid and set there walkspeed to 10

end)
end)

If you have any problems comment below. If I helped Upvote me please

Answer this question