Hello,
I am trying to remove the player’s character’s bundle, but any script I try does not work. I have tried looping through the character and finding any CharacterMesh and destroying it, but the script did not detect any (I am using the Man bundle). Secondly, I tried to change the HumanoidDescription, which did not work at all! (Current Script I am using):
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
local humanoid: Humanoid = char:WaitForChild("Humanoid")
local description = humanoid:GetAppliedDescription()
description.Head = 0
description.LeftArm = 0
description.RightArm = 0
description.RightLeg = 0
description.LeftLeg = 0
description.Torso = 0
print('Ran!')
end)
end)