Answers for "how to make a forever loop in roblox"

5

loop true childs roblox

for i,v in pairs(game.Players:GetChildren()) do
-- v is your player
end
Posted by: Guest on August-09-2020
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