How would I make a script that only gives tools to a certain team?
function tele() wait() c=game.Players:GetChildren() for i=1, #c do team = c[i].TeamColor if team == BrickColor.new("Bright red") then --List path to tool and clone()-- end if team == BrickColor.new("Bright blue") then --List path to tool and clone()-- end end end