When I touch a part, i want the player to sit down. But if they jump, the stand (like normal)
1 | script.Parent.Touched:connect( function (hit) |
2 |
3 | local Player = hit.Parent:FindFirstChild( "Humanoid" ) |
4 |
5 |
6 | Player.Humanoid.Sit = true |
7 |
8 | end ) |
Player
already references the humanoid and not the character. Simply change line 6 to Player.Sit
.
1 | script.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 |
8 | end ) |