why doesn't the Character Clothing Dont appear in studio and in-game?
This is the script
03 | game.Players.PlayerAdded:connect( function (player) |
04 | player.CharacterAdded:connect( function (character) |
07 | for i, v in pairs (character:GetChildren()) do |
08 | if v:IsA( "Shirt" ) then |
14 | for i,v in pairs (character:GetChildren()) do |
15 | if v:IsA( "Pants" ) then |
21 | for i,v in pairs (character:GetChildren()) do |
27 | local Shirt = Instance.new( "Shirt" , character) |
28 | Shirt.Name = "DefaultS" |
30 | local Pants = Instance.new( "Pants" , character) |
31 | Pants.Name = "DefaultP" |
What it is suppose to do is
1.Delete Character Hats,Shirt,Pants
2.make new pants and shirt
3.put the New pants and shirts in the character
everything in that list works but the thing is they shirts and pants don't even show up on the character!
there no errors in output
it like the character clothes are invisible