Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

why doesn't the Character Clothing Dont appear in studio and in-game?

Asked by 9 years ago

This is the script

01This is the script
02-----[[Scripted by bradleyawsome]]-----
03game.Players.PlayerAdded:connect(function(player)
04    player.CharacterAdded:connect(function(character)
05        wait(6)
06                if character then
07            for i, v in pairs(character:GetChildren()) do
08                if v:IsA("Shirt") then
09                    v:remove()
10                        end    
11                    end
12                end
13        if character then
14            for i,v in pairs (character:GetChildren()) do
15                if v:IsA("Pants") then
View all 34 lines...

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

0
Did you subtract 1 from the end of the IDs? User#11440 120 — 9y
0
no bradleyawsome 10 — 9y

Answer this question