Answers for "roblox studio for loops"

7

repeating loop roblox

while true do
	-- Your script here
    -- Every loop needs a wait increment, or your game might crash
    wait(1) 
end
Posted by: Guest on April-15-2020
1

how to do for loops roblox

--roblox forloop
for count = 1, 5 do
	print(count)
end
Posted by: Guest on September-07-2020
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

Browse Popular Code Answers by Language