of     1   

Mariocool925
#62738755Sunday, February 12, 2012 3:48 AM GMT

Lets say there are two teams: Red and Blue if i wanted to get all players on red team to be on blue team, how do I do it without having them touch the blue spawn? And if a blue team player gets killed, how do I make it so they go back to red team?
RobloxNewb01
#62739297Sunday, February 12, 2012 3:58 AM GMT

I dont know why ima do this but... function onPlayer(newP) if newP.TeamColor == BrickColor.new("Really red") then a = game.Players:GetChildren() for i = 1, #a do a[i].TeamColor = BrickColor.new("Really red") elseif not newP.TeamColor == BrickColo.new("Really red") then newP.Character:BreakJoints() end end end game.Players.PlayerAdded:conncet(onPlayer) and the next script function onCame(p) if p.TeamColor == BrickColor.new("Really blue") and p.Charcater.Humanoid.Health = 100 then if p.Charcter.Humanoid.Health = 0 then p.TeamColor == BrickColor.new("Really red") end end end game.Players.PlayerAdded:conncet(onCame) THey might not work, I'm tired so yeah...

    of     1