How can I make a seat that kills everyone who isn't on a list?

I want to make a seat for an exclusive vehicle that kills anyone whose user id isn’t specified.

You’ll have to listen for changes to the properties of the seat, and apply checks based on that. There’s some great example code on the wiki: Seat | Documentation - Roblox Creator Hub
(It’s at the very bottom of that page)

So I can detect the occupant’s id and run something to kill them if they’re not the specified id?

You can. The example code that I linked to should be very easy to work off of. Where it says, “print(player.Name…” has sat down")" on line 16, you could implement your checks and kill the humanoid if the checks aren’t satisfied.

Sounds good, I’ll do this. :happy4: