Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

help with making loop active while the rest of the script is still going?

Asked by 4 years ago

so, its like this

1while true do -- this loop is still active when ("ThisIsATest is still active")  is printed
2    wait()
3    print("ThisIsATest")
4end
5 
6print("ThisIsATest is still active")

1 answer

Log in to vote
2
Answered by 4 years ago

try doing spawn(function() or coroutine.wrap(function(), then put the loop inside. Do it like this:

1spawn(function()
2    while true do
3        wait(1)
4        print("ThisIsATest")
5    end
6end)
7 
8print("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:

1coroutine.wrap(function()
2    while true do
3        wait(1)
4        print("ThisIsATest")
5    end
6end)
7 
8print("ThisIsATest is still active")

Hope this helps!

0
tysm GameStealerKid 79 — 4y
Ad

Answer this question