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

Walkspeed script doesn't work?

Asked by 10 years ago

I'm making a script thats inside a part, so whenever someone with a humanoid touches it, the script changes their walkspeed to 65. But it doesn't work!

Script:

1script.Parent.Touched:connect(function(hit)
2local hum = hit.Parent.Humanoid
3if hum then
4    hum.Walkspeed = 30
5else
6print("No hum")
7end
8end)

Please help?

1 answer

Log in to vote
3
Answered by
hudzell 238 Moderation Voter
10 years ago
1script.Parent.Touched:connect(function(hit)
2    local hum = hit.Parent:FindFirstChild("Humanoid") --Changed to :FindFirstChild("Humanoid")
3    if hum ~= nil then --Added ~= nil
4        hum.WalkSpeed = 30 --Capitalized the S
5    else
6        print("No hum")
7    end
8end)
Ad

Answer this question