coroutine.resume(coroutine.create(function()
wait(5)
print("lol")
end))
wait(5)
print("lol")
That should print "lol" at the same time, even though there are two frittered waits.
I would tell you how to create it without it being anonymous, but I forget. It tells you on the wiki tho. |