Hello I have a start button that will start a while loop. And I also have a stop button and I want to stop the loop. How can I do that? I can change it to a for loop if it is impossible to stop a while loop. Thanks
You could use this example
while true do print("Test") break end
i know that break breaks a while loop. not sure for loops tho.
while true do -- Loop break -- Command to break loop end