/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