Answers for "forever loop roblox studio"

Lua
1

loop roblox studio

while wait() do
	print("Looping...") -- This Will Loop
  	wait() -- Make Sure The Script Doesnt Crash
end)
-- Another Method 
while true do
	print("Looping...") -- This Will Loop
	wait() -- Make Sure The Script Doesnt Crash
end)
Posted by: Guest on March-04-2021
0

how to make a forever loop in roblox

local timeRemaining = 10
 
while timeRemaining > 10 do
	print("Seconds remaining: " .. timeRemaining)
	wait(1)
	timeRemaining = timeRemaining - 1	
end
 
print("Timer reached zero!")
Posted by: Guest on June-22-2021

Browse Popular Code Answers by Language