while in lua

Solutions on MaxInterview for while in lua by the best coders in the world

showing results for - "while in lua"
Isaac
12 May 2017
1--// Basic while true do loop
2
3while true do
4	
5	--// Looped text
6	print("Looped Text")
7	
8	--// Time the loop waits before looping again
9	wait(1)
10end
Avia
24 Jan 2019
1while(condition)
2do
3   statement(s)
4end
5