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

how do I fix changing the players speed?

Asked by 5 years ago

I am trying to set the players walkspeed to 30 but I get the error "Humanoid is not a valid member of Model".

if check:InvokeClient(v) == true then

v.Character.Humaniod.WalkSpeed = 30

end
0
Use WaitForChild, Character:WaitForChild("Humanoid").WalkSpeed. MArzalAlBuchariZ 33 — 5y
0
^^ and your line 3 is 'Humaniod`, it should be `Humanoid` NickAtNick 163 — 5y
0
I believe the only issue here is the "Humaniod" typo MegaManSam1 207 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
if check:InvokeClient(v) == true then

v.Character.Humanoid.WalkSpeed = 30

end

You misspelled "Humanoid".

Ad

Answer this question