of     1   

saurus10
#141061248Monday, July 21, 2014 3:40 PM GMT

So I want players to get teleported to a place (which I've already done) but when they all die and are in the respawn room, the game resets. So I need help doing that while true do for _,v in pairs(game.Players:GetChildren()) do alive = v:FindFirstChild("Humanoid") if alive ~=nil then end end Does this make sense? If it does not, please help me
pa00
#141062782Monday, July 21, 2014 3:59 PM GMT

The humanoid would still exist if they respawn. You could set them on a certain team if they are alive, then change the team when they die.
saurus10
#141063354Monday, July 21, 2014 4:06 PM GMT

So... while true do for _,v in pairs(game.Players:GetChildren()) do alive = v:FindFirstChild("Humanoid") if game.Players.TeamColor = BrickColor.new("Alive") ~=nil then end end ???
saurus10
#141064240Monday, July 21, 2014 4:15 PM GMT

Or an updated version: while true do for _,v in pairs(game.Players:GetChildren()) do alive = v:FindFirstChild("Humanoid") game.Players.TeamColor = BrickColor.new("Alive") ~=nil local h = Instance.new("Message") h.Parent = Workspace h.Text = "Everyone died!" wait(10) h:Remove() end end Does this work?
saurus10
#141266663Wednesday, July 23, 2014 12:18 PM GMT

Bumpy doo
CaptainSource
#141267055Wednesday, July 23, 2014 12:27 PM GMT

Just make teams alive and dead when someone dead change his team to dead and hide teams. then check teams if there is no alive i mean there is no one in team alive then tp them.
AnonyAnonymous
#141267161Wednesday, July 23, 2014 12:29 PM GMT

Alive = 0 while true do for i,v in pairs(game.Players:GetChildren()) do if v.TeamColor == game.Teams.Alive.TeamColor then Alive = Alive + i if Alive == 0 then local h = Instance.new("Message") h.Parent = Workspace h.Text = "Everyone died!" wait(10) h:Remove() end end end Try using this.
CaptainSource
#141268418Wednesday, July 23, 2014 12:59 PM GMT

#AnonyAnonymous also you need to change their team to dead :p
CaptainSource
#141268496Wednesday, July 23, 2014 1:01 PM GMT

#AnonyAnonymous not sure but it might break.
BlackTheHacker
#141268625Wednesday, July 23, 2014 1:03 PM GMT

Your script made NO sense whatsoever. You need to use a table.
CaptainSource
#141269008Wednesday, July 23, 2014 1:10 PM GMT

# BlackTheHacker What table ? :c tme = 30 game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) num = 0 num = num + 1 character.Humanoid.Died:connect(function() num = num - 1 if num == 0 then text = Instance.new("Message", game.Workspace) text.Text = "yolo" wait(tme) text:remove() end return character end) end) end)
BlackTheHacker
#141269094Wednesday, July 23, 2014 1:12 PM GMT

Stop stalking me you idiot. Get a life.
saurus10
#141492913Friday, July 25, 2014 12:10 PM GMT

*CoughSaysTheHackerCough*
BlackTheHacker
#141506025Friday, July 25, 2014 3:42 PM GMT

@noob above What does my name have anything to do?
Waffloid
#141506776Friday, July 25, 2014 3:52 PM GMT

How's he stalking you..? He just replied to your post. ~Swagilitious and not Nutricious~
BlackTheHacker
#141510757Friday, July 25, 2014 4:39 PM GMT

No he can't following me on every thread.
BlackTheHacker
#141510820Friday, July 25, 2014 4:39 PM GMT

*kept
saurus10
#141742030Sunday, July 27, 2014 5:37 PM GMT

@BlackTheHacker Because you said he doesn't have a life, when we all know hackers don't have lives, they have nothing better to do :D
BlackTheHacker
#141751590Sunday, July 27, 2014 7:31 PM GMT

That is where you are wrong. "Hackers" develop complex programs. They sell it. They make money.

    of     1