Like clicking or touching a brick so it will turn on
Clicked:
Add ClickDetector To Part.
Add to part: Light, script and clickdetector.
Lua:
1 | script.Parent.ClickDetector.MouseClick:connect( function () |
2 | if script.Parent.Light.Enabled = = true then |
3 | script.Parent.Light.Enabled = false |
4 | else |
5 | script.Parent.Light.Enabled = true |
6 | end |
7 | end ) |
Touched:
Add to part: Script and light.
Lua:
1 | script.parent.Touched:connect( function () |
2 | if script.Parent.Light.Enabled = = true then |
3 | script.Parent.Light.Enabled = false |
4 | else |
5 | script.Parent.Light.Enabled = true |
6 | end |
7 | end ) |
Its simple just learn if.