for n=1, 100 do
Label.SetText("Label1", n);
if System.IsKeyDown(33) then
break
end
if System.IsKeyDown(34) then
** disable break and continue loop (if break = 50 will continue loop = 51 to 100
end
Application.Sleep(1)
end
I have problem about Break and continue Script Process How to Break then continue
Label.SetText("Label1", n);
if System.IsKeyDown(33) then
break
end
if System.IsKeyDown(34) then
** disable break and continue loop (if break = 50 will continue loop = 51 to 100
end
Application.Sleep(1)
end
I have problem about Break and continue Script Process How to Break then continue

Comment