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

My script doesn't remove packages. Why?

Asked by 5 years ago

Hey. How can I make it so that the player spawns with no packages? This for some reason doesn't work:

game.Players.PlayerAdded:Connect(function(plr)
    plr.CharacterAppearanceLoaded:Connect(function(chr)
        for i,v in pairs(chr:GetChildren()) do
            if v:IsA("CharacterMesh") then
                v:Destroy()
            end
        end
    end)
end)
0
R15 games do not use CharacterMesh objects for packages, they use MeshParts. This is true even for non-package wearers. User#19524 175 — 5y
0
So I can't remove their package? bruceywayne 35 — 5y

Answer this question