code:
001 | local StartGame = coroutine.wrap( function () |
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" ).GameTime 60 :Fire() |
014 | game:GetService( "ReplicatedStorage" ).WaterRun:FireAllClients() |
015 | wait( 2.5 ) |
A dead coroutine is a dead coroutine, you cannot restart it. You could create a new coroutine or alternatively put the running coroutine into suspended state with the coroutine.yield
function, then repeat the necessary code once it is resumed again.
01 | local c = coroutine.create( function (x) |
02 | local n = 0 |
03 | while true do |
04 | n = n + x |
05 | print (n) |
06 | x = coroutine.yield() |
07 | end |
08 | end ) |
09 |
10 | coroutine.resume(c, 1 ) |
11 | coroutine.resume(c, 2 ) |
12 | coroutine.resume(c, 3 ) |
Before using coroutines however, please consider if you even need them. Most of the time you want the main thread yield until the game loop finishes and rather perform other actions in separate threads if absolutely necessary.