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

How do i execute a change team script?

Asked by 10 years ago

how can i make this script work

function checker()
c = game.Players:GetChildren()
    for num, obj in pairs(c) do
        if obj.Character.Humanoid.Health == 0 then
        if obj.Teamcolor == BrickColor.new("Bright blue") then 
            obj.Teamcolor =  BrickColor.new("Bright red")   

checker() -- this to loop the checking  
end
end
end
wait() --  this is to loop the checking
checker()
end
checker()

1 answer

Log in to vote
1
Answered by 10 years ago
Game.Players.PlayerAdded:connect(function(Player) --Use events for efficiency. When the  player joins,
    Player.CharacterAdded:connect(function(Character) --When they respawn,
        Character.Humanoid.Died:connect(function() --When they die
            if Player.TeamColor == BrickColor.new("Bright blue") then --If they are on the Bright blue team when they die,
                Player.TeamColor = BrickColor.new("Bright red") --Put them on the red team.
           end
        end)
    end)
end)

0
ill try and see if it works now raymandon 0 — 10y
Ad

Answer this question