How can I disable a seat for the player only?
Asked by
5 years ago Edited 5 years ago
I'm making a car and want only the owner to be able to drive it. I put a string value called 'Owner' inside the seat, the value of that is the owner. I then tried to deactivate the seat for the player if they were not the owner using a local script.
Is there some kind of issue regarding the local script?
1 | script.Parent.Parent.Changed:Connect( function () |
2 | local plr = game.Players.LocalPlayer |
3 | if plr.Name = = script.Parent.Owner.Value then |
4 | script.Parent.Disabled = false |
6 | script.Parent.Disabled = true |
Thanks!