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

How do you make a script that teleports you back when the game ended?

Asked by 7 years ago

Well I have a really big script so this is just one piece of it

01status.Value = "Be The Last Standing!"
02if status.Value then
03    game.Workspace.Sound:Stop()
04end
05wait(4)
06for i = 196,0,-1 do -- You can adjust the #196 to how long you want the round to last.
07    if i == 0 then
08        status.Value = "Time is up!"
09        wait(3)
10        break
11    end
12    wait(1)
13    if #_G.gameplayers == 1 then
14        for i, v in pairs(_G.gameplayers) do
15            if v ~= nil then
View all 38 lines...

I tried the code

1for i, player in ipairs(game.Players:GetPlayers()) do
2   if player.Character then
3       local hum = player.Character:FindFirstChild('Humanoid')
4       if hum then
5           hum.Health = 0
6       end
7   end

to spawn the characters back into the lobby but it didn't worked. Any solutions ???

1 answer

Log in to vote
0
Answered by
Avigant 2374 Moderation Voter Community Moderator
7 years ago

You could loop through all players and call player:LoadCharacter() to respawn the player without killing them if you wanted to.

1local players = game.Players:GetPlayers()
2 
3for index = 1, #players do
4    players[index]:LoadCharacter()
5end
Ad

Answer this question