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

Is there a way to cancel a function while it is running?

Asked by
Vain_p 78
6 years ago

So I want to cancel this function so when all the players die but how can I cancel a function tho?

001function StartGame()
002    ChooseGame()
003    print(rm)
004    game.ReplicatedStorage.PlayersAlive.Value = game.ReplicatedStorage.NumPlayers.Value
005    for i,v in pairs(game.Players:GetChildren()) do
006        v.Backpack.inGame.Value = "Game"
007    end
008    game.ReplicatedStorage.GameStatus.Value = "Game"
009    if rm == 1 then
010        game.ReplicatedStorage.GameStatus.Value = "Game"
011        local WaterRunMap = game.ServerStorage.WaterRun:Clone()
012        WaterRunMap.Parent = game.Workspace
013        game:GetService("ReplicatedStorage").GameTime60:Fire()
014        game:GetService("ReplicatedStorage").WaterRun:FireAllClients()
015        wait(2.5)
View all 110 lines...

I want to cancel this function

0
Use the keyword 'return' to prematurely end a function, or return a value from it, or both User#24403 69 — 6y
0
I don't know if i'm right or not, but try using the "Break" function. B_rnz 171 — 6y
0
break is used for loops, return is used to end a function. AbstractionsReality 98 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

I believe you call 'return'. This would make the function return a value of 'nil', which would cancel your function as a side effect.

0
how would I do that cause I am trying to cancel it via another function? Vain_p 78 — 6y
0
While I don't really know exactly how to do that, I think the answer is in coroutines. You start the function you want to be cancelable via coroutine, and then when you want to cancel it, the other function can call some coroutine function to stop the coroutine. DoubleDual36 18 — 6y
0
so I use local StartGame = coroutine.create (function() and put the function inside of it? Vain_p 78 — 6y
0
what do I do after that? Vain_p 78 — 6y
0
Not sure looool DoubleDual36 18 — 6y
Ad

Answer this question