Answers for "how to make a loop in roblox studio"

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

Code answers related to "how to make a loop in roblox studio"

Browse Popular Code Answers by Language