of     1   

ScaryHabits
#183489378Saturday, February 13, 2016 6:57 AM GMT

How would you make it so that when a player dies he's auto put into a different team? I have it so it grabs them in the beginning of the game and puts them into alive. Something like this? if player.health = 0 then (code) end I have a change team function already, so I just need to know how to format it
Luo_Basics
#183489479Saturday, February 13, 2016 7:01 AM GMT

guessing that player directs to the humanoid if player.Health == 0 then (code) end
ScaryHabits
#183489852Saturday, February 13, 2016 7:16 AM GMT

I did a function for it function changeteam() if player2.Health == 0 then for _, player in pairs(game.Players:GetPlayers()) do setTeam(player, "Dead") end end heres my player2 code local player2 = game.Players.Humanoid would that work?
ScaryHabits
#183489872Saturday, February 13, 2016 7:16 AM GMT

sorry this is better just realized that function changeteam() if player2.Health == 0 then setTeam(player, "Dead") end
cofunction
#183489885Saturday, February 13, 2016 7:17 AM GMT

player.Character.Humanoid.Died:connect(function() player.TeamColor = BrickColor.random() end)

    of     1