|
| 15 Mar 2015 04:11 AM |
im making a script where if this bool becomes false while the script is ongoing, the script will not continue anymore
i used this method but i was wondering if there was anything simpler
if bool == false then --continue if bool == false then --continue if bool == false then --continue end end end
while this does accomplish what i want, i was wondering if there was a simpler way to do it. also the parts that continue arent repetative so i cant use a loop then break it |
|
|
| Report Abuse |
|
|
| 15 Mar 2015 07:45 AM |
while true do if bool == false then end |
|
|
| Report Abuse |
|