I need help to script a light with light switches in if you got any scripts that can help please let me know.
Well, i suggest this:
01 | local LightSwitch = workspace.LightSwitch --Imagine your light switch is in Workspace. |
02 | local Light = workspace.Light.PointLight --Imagine you have a part where there's a PointLight, disable the "Enabled" property of PointLight. |
03 |
04 | local LightOn = false --This tells the script if the light is on or off, if you want your light to be on already, change the "false" to "true" |
05 |
06 | LightSwitch.ClickDetector.MouseClick:connect( function () --When you click the Light Switch... |
07 | if LightOn = = false then --If the light is off when you click the Light Switch... |
08 |
09 | Light.Enabled = true --The light will turn on. |
10 | LightOn = = true --This tells the script the light is already on. |
11 |
12 | elseif LightOn ~ = false then --If the light is on when you click the Light Switch... |
13 |
14 | Light.Enabled = false --The light will turn off. |
15 | LightOn = = false --This tells the script the light is already off. |
16 |
17 | end |
18 | end ) |
Hope this helped!
Make a model with 2 parts. Insert a PointLight into the part that will have the light, and a ClickDetector into the switch. Now insert this script into the Model
01 | local Light = script.Parent.(name of the light soruce) |
02 | local Switch = script.Parent.(name of the switch) |
03 | local On = false |
04 |
05 | Switch.ClickDetector.MouseClick:Connect( function () |
06 | if not On then |
07 | Light.PointLight.Enabled = true |
08 | On = true |
09 | else |
10 | Light.PointLight.Enabled = false |
11 | On = false |
12 | end |
13 | end ) |
Make sure that the light is disabled by default. If not change "On" to false