i dont really know how to make a code for this, but maybe i could copy and paste with different numbers?
print(1) print(2) print(3) print(4) print(5) print(6) print(7) print(8)
for i = 1,math.huge do -- makes a for loop that runs infinitely. print(i) -- prints i (the number the loop is on, which will go on forever.) wait(.1) end
Hope this helped!
All you really have to do is this, i'd recommend learning the basics of ROBLOX Coding such as while loops.
while true do print(1) wait(0.5) -- I recommend having a wait, otherwise your game will most likely crash. print(2) wait(0.5) print(3) wait(0.5) print(4) wait(0.5) print(5) wait(0.5) print(6) wait(0.5) print(7) wait(0.5) print(8) wait(0.5)
This should work, let me know if it doesn't repeat.
If you mean like 10 t/m 1 or smth here is an example:
for i = 10, 1, -1 do print(i) wait(1) -- Wait 1 sec for new number end