How do you make a script that teleports you back when the game ended?
Well I have a really big script so this is just one piece of it
01 | status.Value = "Be The Last Standing!" |
03 | game.Workspace.Sound:Stop() |
08 | status.Value = "Time is up!" |
13 | if #_G.gameplayers = = 1 then |
14 | for i, v in pairs (_G.gameplayers) do |
16 | status.Value = v.. " Won The Game!" |
17 | game.Players [ v ] .leaderstats.Cash.Value = game.Players [ v ] .leaderstats.Cash.Value + 15 |
24 | status.Value = i.. "..Seconds Remaining!" |
27 | for i, player in ipairs (game.Players:GetPlayers()) do |
28 | if player.Character then |
29 | local hum = player.Character:FindFirstChild( 'Humanoid' ) |
35 | mapstorage:ClearAllChildren() |
I tried the code
1 | for i, player in ipairs (game.Players:GetPlayers()) do |
2 | if player.Character then |
3 | local hum = player.Character:FindFirstChild( 'Humanoid' ) |
to spawn the characters back into the lobby but it didn't worked. Any solutions ???