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

Sit onTouched help?

Asked by
FiredDusk 1466 Moderation Voter
9 years ago

When I touch a part, i want the player to sit down. But if they jump, the stand (like normal)

1script.Parent.Touched:connect(function(hit)
2 
3        local Player = hit.Parent:FindFirstChild("Humanoid")
4 
5 
6        Player.Humanoid.Sit = true
7 
8end)

1 answer

Log in to vote
4
Answered by
funyun 958 Moderation Voter
9 years ago

Player already references the humanoid and not the character. Simply change line 6 to Player.Sit.

1script.Parent.Touched:connect(function(hit)
2 
3        local Player = hit.Parent:FindFirstChild("Humanoid") --"Player" referring to Humanoid
4 
5 
6        Player.Sit = true --Player.Sit == hit.Parent.Humanoid.Sit
7 
8end)
Ad

Answer this question