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 11 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 11 years ago

If you mean the Walkspeed of a Player, then;

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

I hope this helped! ;)

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

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

Answer this question