of     1   

Zawie
#140956140Sunday, July 20, 2014 4:16 PM GMT

SCRIPT: local Tool = game.Lighting.O game.Players.PlayerAdded:connect(function(Player) if Player.TeamColor == "Bright orange" then Tool:clone().Parent = Player.StarterGear Tool:clone().Parent = Player.Backpack end end) PROBLEM: Doesn't give you the tool "O" Solution: \/\/\/\/\/\/
crocidile345
#140956822Sunday, July 20, 2014 4:25 PM GMT

Probably because the players team isn't orange once it joins the game?
Zawie
#140957070Sunday, July 20, 2014 4:29 PM GMT

oh good point. Should I just add a wait? Or is there like :WaitForTeams()
crocidile345
#140957614Sunday, July 20, 2014 4:36 PM GMT

To be honest i'm not quite sure because i haven't worked on teams for a while so i'd like search up some info about that if i were you or wait till someone can answer this, sorry :/
Zawie
#140958174Sunday, July 20, 2014 4:43 PM GMT

So anybody going to be able to fix this? Instance.new("Bumo")
BLOXLUA
#140958236Sunday, July 20, 2014 4:44 PM GMT

Bumo
Zawie
#140959406Sunday, July 20, 2014 4:58 PM GMT

Bumpo
Zawie
#140959941Sunday, July 20, 2014 5:05 PM GMT

Nobody can fix this? Really????
LUVMARIOLUIGI10000
#140960062Sunday, July 20, 2014 5:06 PM GMT

local Tool = game.Lighting.O game.Players.PlayerAdded:connect(function(Player) if Player.TeamColor == BrickColor.new("Bright orange") then Tool:clone().Parent = Player.StarterGear Tool:clone().Parent = Player.Backpack end end)
Skitzone
#140960168Sunday, July 20, 2014 5:07 PM GMT

I got the same thing as mario.. local Tool = game.Lighting.O game.Players.PlayerAdded:connect(function(Player) if Player.TeamColor == "Bright orange" then Tool:clone().Parent = Player.StarterGear Tool:clone().Parent = Player.Backpack end end)
LUVMARIOLUIGI10000
#140960176Sunday, July 20, 2014 5:07 PM GMT

That was a fix for your code. Here would be my more efficient version: local Tool = Game:GetService('Lighting'):WaitForChild('O'); Game:GetService('Players').PlayerAdded:connect(function(Player) repeat Wait() until Player.Character; if Player.TeamColor == BrickColor.new('Bright orange') then Tool:Clone().Parent = Player.StarterGear; Tool:Clone().Parent = Player.Backpack; end end)
Zawie
#140960179Sunday, July 20, 2014 5:07 PM GMT

Didn't fix...
Skitzone
#140960208Sunday, July 20, 2014 5:08 PM GMT

Oops, local Tool = game.Lighting.O game.Players.PlayerAdded:connect(function(Player) if Player.TeamColor == BrickColor.new("Bright orange") then Tool:clone().Parent = Player.StarterGear Tool:clone().Parent = Player.Backpack end end)
Zawie
#140960440Sunday, July 20, 2014 5:11 PM GMT

Wait nvm @Luv. It did fix it. I didn't copy the top part. I thought your fix was = ("Bright orange")
GeneralPsyBeam
#140971842Sunday, July 20, 2014 7:15 PM GMT

because you need to use the color number not the color name
Zawie
#140972363Sunday, July 20, 2014 7:20 PM GMT

No color names works =/

    of     1