roblox studio for loops code example

Example 1: repeating loop roblox

while true do
	-- Your script here
    -- Every loop needs a wait increment, or your game might crash
    wait(1) 
end

Example 2: 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)

Example 3: how to do for loops roblox

--roblox forloop
for count = 1, 5 do
	print(count)
end

Example 4: roblox repeat until

repeat
	spawnGoblin()
	currentGoblinCount = currentGoblinCount + 1
	print("Current goblin count: " .. currentGoblinCount)
until currentGoblinCount == 25

Tags:

Lua Example