of     1   

BEART12
#40293571Monday, January 03, 2011 11:26 PM GMT

what is it could you use an exsample and exsplane to me
3dGen
#40293763Monday, January 03, 2011 11:28 PM GMT

Wiki.roblox.com search "coroutine" Yes, you do have to spell it right
BEART12
#40293941Monday, January 03, 2011 11:30 PM GMT

Ok but can it have waits in it could i please see an exsample for it
3dGen
#40294564Monday, January 03, 2011 11:37 PM GMT

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.
ChatR
#40294827Monday, January 03, 2011 11:39 PM GMT

@3d You tag it. lol = coroutine.create(function() print"hi" end) coroutine.resume(lol) Or getfenv() coroutine.resume(getfenv()["lol"])
3dGen
#40294986Monday, January 03, 2011 11:41 PM GMT

I knew that, but don't you have to assert it or something?

    of     1