while wait do roblox code example
Example 1: for i = 1 to n roblox
local n = 10
for i = 1, n do
print('monke god')
end
Example 2: roblox repeat until
repeat
spawnGoblin()
currentGoblinCount = currentGoblinCount + 1
print("Current goblin count: " .. currentGoblinCount)
until currentGoblinCount == 25
Example 3: Roblox Script wait
-- To wait in Roblox Lua
wait(0)
-- Replace 0 with the amount of seconds
-- If you wanted to wait for 1 Minute it would be
wait(60)