for i,v in pairs() do
end
-- or
for i,v in next, do
end
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)
while true do
--your loop--
wait(1)--counted in seconds, this is important or roblox studio might crash--
end
while true do print("Looping...") wait(0.5)end