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:
1 | script.Parent.Touched:connect( function (hit) |
2 | local hum = hit.Parent.Humanoid |
3 | if hum then |
4 | hum.Walkspeed = 30 |
5 | else |
6 | print ( "No hum" ) |
7 | end |
8 | end ) |
Please help?
1 | script.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 |
8 | end ) |