|
| 22 Nov 2014 06:09 PM |
This script is supposed to replace the clothes of people on a certain team with new ones provided by the game. However, the script isn't working. Can someone please help me? Here's the script:
local t2shirt = game.ServerStorage:WaitForChild("DF1") local t2pants = game.ServerStorage:WaitForChild("DF2") game.Players.PlayerAdded:connect(function(p) p.CharacterAdded:connect(function(char) if p.TeamColor == BrickColor.new("Bright blue") then -- Put the actual PrickColor if char:FindFirstChild("Pants") then char.Pants:remove() end if char:FindFirstChild("Shirt") then char.Shirt:remove() end t2shirt:clone().Parent = char t2pants:clone().Parent = char end end) end) |
|
|
| Report Abuse |
|
| |