How to use control server objects with localscripts?
So I am working on a game that uses localscripts to detect the player pressing a button while on a seat and it works perfectly for the client. The way it works is when you sit on the seat and press l, the lights for the car turn on/off. The issue is that localscripts only control things for the local client. So no other players can see the lights when they are on. How can I fix this? I have heard things about "triggers" and I have no idea what they are or how to use them. Heres my code, How can I adapt it to make the server change the parts? This script is located in StarterGUI and is disabled until the player sits on the correct seat. It is disabled again when the player gets up.
01 | local player = game.Players.LocalPlayer |
02 | local userInput = game:GetService( "UserInputService" ) |
05 | FunctionParts = workspace.PickUpTruck.Vehicle.FunctionParts |
07 | userInput.InputBegan:Connect( function (key) |
08 | if key.KeyCode = = Enum.KeyCode.L then |
11 | FunctionParts.Light 1. Material = "Neon" |
12 | FunctionParts.Light 1. SpotLight.Enabled = true |
13 | FunctionParts.Light 2. Material = "Neon" |
14 | FunctionParts.Light 2. SpotLight.Enabled = true |
15 | FunctionParts.Light 3. Material = "Neon" |
16 | FunctionParts.Light 3. SpotLight.Enabled = true |
17 | FunctionParts.Light 4. Material = "Neon" |
18 | FunctionParts.Light 4. SpotLight.Enabled = true |
19 | elseif toggle = = 1 then |
21 | FunctionParts.Light 1. Material = "Plastic" |
22 | FunctionParts.Light 1. SpotLight.Enabled = false |
23 | FunctionParts.Light 2. Material = "Plastic" |
24 | FunctionParts.Light 2. SpotLight.Enabled = false |
25 | FunctionParts.Light 3. Material = "Plastic" |
26 | FunctionParts.Light 3. SpotLight.Enabled = false |
27 | FunctionParts.Light 4. Material = "Plastic" |
28 | FunctionParts.Light 4. SpotLight.Enabled = false |
Thank you to anyone who can help or tried to help.