Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Need help with stopping my function, bindable functions?

Asked by
JoneXI 51
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:

01local btn1 = script.Parent.btn1
02local btn2 = script.Parent.btn2
03local btn3 = script.Parent.btn3
04local btn4 = script.Parent.btn4
05local btn5 = script.Parent.btn5
06local btn6 = script.Parent.btn6
07local btn7 = script.Parent.btn7
08local btn8 = script.Parent.btn8
09 
10local btnTable = {btn1, btn2, btn3, btn4, btn5, btn6, btn7, btn8}
11function cycle()
12while true do
13for i=1,#btnTable do
14    print("Hack happening")
15         btnTable[i].BackgroundColor3 = Color3.fromRGB(0, 255, 0)
View all 23 lines...

Answer this question