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

how can i call a function in the same server script and not have to wait for it to finish?

Asked by 4 years ago

i want to call function2 through function1, but function2 has a wait() command in it, but i want function1 to keep going and not have to wait for it, i tried to use remote events but it doesnt work because im using server to server

2 answers

Log in to vote
0
Answered by 4 years ago

Use coroutines.

coroutine.wrap(function()
    -- Your code here
end)()

If you want to give it a name, do this:

local myFunc = coroutine.create(function()

end)

coroutine.resume(myFunc)
Ad
Log in to vote
0
Answered by 4 years ago

Use spawn..

spawn(function()
    -- script
end)
0
on the called function or the caller? cheetahjad -4 — 4y
0
Spawn is a bad habit. Use coroutines. youtubemasterWOW 2741 — 4y

Answer this question