of     1   

Vexchan
#168707119Saturday, July 25, 2015 12:31 AM GMT

A while ago I had this script. But I've forgotten it. Can anyone help me out?
TimeTicks
#168707546Saturday, July 25, 2015 12:36 AM GMT

if player.TeamColor == BrickColor.new("Bright red") then tool:Clone().Parent = player.Backpack end "Talk is cheap. Show me the code." - Linus Torvalds
instawin
#168708162Saturday, July 25, 2015 12:43 AM GMT

loop through all players, and depending on their team color, give them corresponding weapons local function isRedORBlue(plr) if plr.TeamColor == BrickColor.new("Bright red") then return "red" elseif plr.TeamColor == BrickColor.new("Bright blue") then return "blue" end end for i, v in pairs(game.Players:GetPlayers()) do if isRedORBlue(v) == "red" then redTool:Clone().Parent = v.Backpack elseif isRedORblue(v) == "blue" then blueTool:Clone().Parent = v.Backpack end end

    of     1