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
1 | while true do |
2 | print ( "Test" ) |
3 | break |
4 | end |
i know that break breaks a while loop. not sure for loops tho.
1 | while true do -- Loop |
2 | break -- Command to break loop |
3 | end |