Answered by
7 years ago Edited 7 years ago
I've have not tested this scripted but I am gonna destroy the 2nd button so both buttons can be in 1 script also on line 4 for both you left a space between the connect. That might be the reason
Version 1(Uses 1 button only):
2 | if script.Parent.Parent.LightPart.Range = = 0 then |
3 | script.Parent.Parent.LightPart.Range = 8 |
4 | elseif script.Parent.Parent.LightPart.Range = = 8 then |
5 | script.Parent.Parent.LightPart.Range = 0 |
8 | script.Parent.ClickDetector.MouseClick:connect(onTouch) |
Version 2(Uses both buttons):
2 | script.Parent.Parent.LightPart.PointLight.Range = 8 |
4 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |
2 | script.Parent.Parent.LightPart.PointLight.Range = 0 |
4 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |
You messed up on version 2 with the connect having a space.