so, its like this
1 | while true do -- this loop is still active when ("ThisIsATest is still active") is printed |
2 | wait() |
3 | print ( "ThisIsATest" ) |
4 | end |
5 |
6 | print ( "ThisIsATest is still active" ) |
try doing spawn(function()
or coroutine.wrap(function()
, then put the loop inside. Do it like this:
1 | spawn( function () |
2 | while true do |
3 | wait( 1 ) |
4 | print ( "ThisIsATest" ) |
5 | end |
6 | end ) |
7 |
8 | print ( "ThisIsATest is still active" ) |
I added 1
to wait()
so it will prevent too much stuff that you can't see the other print.
You can also do the coroutine method:
1 | coroutine.wrap( function () |
2 | while true do |
3 | wait( 1 ) |
4 | print ( "ThisIsATest" ) |
5 | end |
6 | end ) |
7 |
8 | print ( "ThisIsATest is still active" ) |
Hope this helps!