So how could I do a for do loop to get all the players, but only do it on those on a certain team. This is all I got :
for i,v in pairs (game.Players:GetChildren()) do
if v.TeamColor ~= BrickColor.new("Bright blue") then
v.Character.Humanoid.Health = 0
end
end
|