Answers for "open while loop 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

open while loop lua

Open while loops can potentially crash your program so be careful!
Posted by: Guest on October-05-2021
3

while in lua

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

Browse Popular Code Answers by Language