Here is another simpler way, the seat has an awesome property called occupant
, which is whoever sat on the seat, if no one is currently sitting, it will be nil. So if we use this with a .Changed
event which checks if a property has changed. We can check if the occupant
property has changed, and if it has changed and the occupant is a player, we set his jumppower to 0!
And btw, your script is actually right, but the if statments are only checking once if the humanoid sitting, because if statments always check a condition once, so you have to put them inside of a loop or something so they contanly check. But this way is more efficient I think.
The paramater for the changed
event is whatever property was changed. And the occupant is actually the humanoid that is sitting.
01 | local seat = script.parent |
03 | seat.Changed:Connect( function (prop) |
04 | if prop = = "Occupant" then |
05 | if seat.Cccupant:IsA( "Humanoid" ) then |
06 | local humanoid = seat.Occupant |
07 | humanoid.JumpPower = 0 |
And that should work!