Note
If you see any text in blue, it's a line of text you can click to open a link.
Local Scripts
I believe you have been misinformed or you misunderstood what a LocalScript is for. A summary would be the following; a local script is a script that interacts with the Client, not the server.
Server Script
Otherwise known as a regular script is a script that interacts with the Server which those effects transfer to all the clients.
Your Error
As you can see in your script, you contradict your value seat
with Line 3 local seat = script.Parent.Parent
and Line 6 function onSeated(isSeated, seat)
, the seat in line 3 is a defined variable, however in Line 6, you turn it into a variable for that function which removes Line 3's purpose.
Your Script
I have not tested this so it may not work,however it's worth the try
TURN THIS INTO A SERVER SCRIPT IF YOU CAN, THERE'S NO REASON FOR IT TO BE A LOCAL SCRIPT.
01 | local character = script.Parent |
02 | local humanoid = character:WaitForChild( "Humanoid" ) |
03 | local seat = script.Parent.Parent |
04 | local sound = script.Parent |
06 | function onSeated(isSeated) |
11 | humanoid.Seated:Connect(onSeated) |