Need help with stopping my function, bindable functions?
Asked by
5 years ago Edited 5 years ago
Hello, I have a problem. I have a GUI, you open a window inside the GUI and inside it there is a color cycle thing I made. I used bindable function for that. The script works fine, but once I exit out of it the function doesn't stop running. How do I stop it? I tried to use a second bindable function and it didin't work. I dont get any errors. Thank you.
Script:
01 | local btn 1 = script.Parent.btn 1 |
02 | local btn 2 = script.Parent.btn 2 |
03 | local btn 3 = script.Parent.btn 3 |
04 | local btn 4 = script.Parent.btn 4 |
05 | local btn 5 = script.Parent.btn 5 |
06 | local btn 6 = script.Parent.btn 6 |
07 | local btn 7 = script.Parent.btn 7 |
08 | local btn 8 = script.Parent.btn 8 |
10 | local btnTable = { btn 1 , btn 2 , btn 3 , btn 4 , btn 5 , btn 6 , btn 7 , btn 8 } |
14 | print ( "Hack happening" ) |
15 | btnTable [ i ] .BackgroundColor 3 = Color 3. fromRGB( 0 , 255 , 0 ) |
17 | btnTable [ i ] .BackgroundColor 3 = Color 3. fromRGB( 255 , 0 , 0 ) |
21 | script.Parent.Parent.Hacking 1. OnInvoke = function () |