Is there a script that forces a player in the driver’s seat to get off?
yes there is one that can get a player off a seat
just do player:Kick()
which will cause it to look like, to other players, that they have gotten off the seat.
alternatively, you could do player.Character = nil
i hope this helped!
Yeah, but that kicks the driver which can be annoying for drivers.
Instead, you could TP the player backwards of the seat
You could also try driver.Sit = false
You can change their sitting state from true to false:
player.Character.Humanoid.Sit = false
To get a character off a seat, you just need to set the Sit
property of their Humanoid
to false
.
Alternatively, you could call :Sit(nil)
onto the Seat
itself.
To force a player into a seat, you just need to use
seat:Sit(player.Character.Humanoid)
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.