--roblox forloop
for count = 1, 5 do
print(count)
end
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)
for count = 1, 10 do
print(count)
end
while true do print("Looping...") wait(0.5)end