xxxxxxxxxx
-- Place this inside a Script (to run on the server)
local RepeatEverySecond = coroutine.create(function()
while wait(1) do
print("This will be printed once per second on the server.")
end
end)
coroutine.resume(RepeatEverySecond)