Answers for "roblox while true do"

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

roblox while true do

while true do
	wait()
    print("Looping through forever")
end
Posted by: Guest on July-12-2021
0

roblox while true do

local loops = 0
while loops < 101 do
	loops = loops + 1
    print("Looped through "..loops.."times")
end
Posted by: Guest on July-12-2021

Browse Popular Code Answers by Language