This script looks like it’s from 2008. Everything you’re using is deprecated.
Here is how you can optimize your code and also make it work
function onButtonClicked() → local function onButtonClicked()
ww = 0 → local ww = 0
X = … → local X = …
X[i].className → X[i].ClassName
X[i]:remove() → X[i]:Destroy()
ww… → ww… (only 2 dots, for some reason devforum won’t let you type 2 dots)
:connect → :Connect
Then in that case, you need only add an extra step and check the Accessory for a Hair Attachment Piece like so:
for_, desc in ipairs(Character:GetDescendants()) do
if desc:IsA('Accessory') and desc:FindFirstChild('Handle') and desc.Handle:FindFirstChild('HairAttachment') then desc:Destroy() end
end
This is because Hair itself doesn’t have a differing class compared to a Hat or another Accessory.