Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

Roblox lua

/why won't this work?
print("loop")
repeat
	
until
/well its actually
while true do
	wait(1)
	print("loop")
end
/or
local timeout = 10 
local Time = 0

while true do
	wait(1)
	print("looping")
	Time = Time + 1
	if Time == timeout then
		break
		
	end
end

Source by developer.roblox.com #
 
PREVIOUS NEXT
Tagged: #Roblox #lua
ADD COMMENT
Topic
Name
2+4 =