Answers for "do while lua"

Lua
6

lua while loops

--// Basic while true do loop

while true do
	
	--// Looped text
	print("Looped Text")
	
	--// Time the loop waits before looping again
	wait(1)
end
Posted by: Guest on April-03-2020
1

while true do lua

while (statement) do
	-- code
end
Posted by: Guest on March-17-2021
3

while in lua

while(condition)
do
   statement(s)
end
Posted by: Guest on May-13-2020
0

do while lua

repeat
	someThing()
	someOtherThing()
until not c
Posted by: Guest on September-15-2021

Browse Popular Code Answers by Language