I need help with this. I tinkered around with a free model (mainly for learning how coding works) and it isn't working. What is wrong here?
1 | mylight = game.Workspace.Lamp.Lamp.ButtonLight.PointLight |
2 | function click() |
3 | mylight.Enabled = not mylight.Enabled |
4 | end |
Anyways, the output suggests putting a '=' sign by Function. Its not working. the 2nd line is the only problem. This is for a lantern with a clickable on/off button.
This probably isn't the most efficient way to deal with your issue, but it should still work fine.
Just replace this with your current function.
1 | function click() |
2 | if mylight.Enabled = = true then |
3 | mylight.Enabled = false |
4 | else if mylight.Enabled = = false then |
5 | mylight.Enabled = true |
6 | end |
7 | end |
8 | end |
Exactly as above, except that you need to add the following:
1 | --Edit ButtonPathHere with the path leading to your on/off button. |
2 | ButtonPathHere.MouseButton 1 Click:connect(click) |