of     1   

GalaxyFPS_Studios
#227540911Tuesday, November 14, 2017 3:33 AM GMT

Tryina make a script that when a player on red team dies, the blue team gets a point. ---------------------------------------------------- game.Players.PlayerAdded:connect(function(p) if p.TeamColor == BrickColor.new("Really red") and p.Humanoid.Died() then script.Parent.Blueteam.Text = script.Parent.Blueteam.Text + 1 end
Vulkarin
#227540945Tuesday, November 14, 2017 3:34 AM GMT

Humanoid.Died:connect(function() script.Parent.Blueteam.Text = script.Parent.Blueteam.Text + 1 end)

    of     1