Command to loop the same command over and over again

Alr so, I want to loop a command forever, so how do I do that?

1 Like

Is that what you mean?

local time_between_loops = 1

while true do
   -- Command
   print("Running Command")

   wait(time_between_loops)
end
1 Like