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

How do I delete a player's hats but not hair?

Asked by
Shubu13 29
4 years ago

The title says it all but I've been using this script and it removes everything not just hat.

01function onTouched(hit)
02    local d = hit.Parent:GetChildren()
03    for i=1, #d do
04        if (d[i].className == "Accessory") then
05            d[i]:remove()
06        end
07    end
08end
09 
10script.Parent.Touched:connect(onTouched)
1
I know this is unrelated but you can do for i, v in pairs() instead of for i=1, #d do iRunzs 20 — 4y
0
Thank you for letting me know Shubu13 29 — 4y

2 answers

Log in to vote
1
Answered by 4 years ago

As far as I am aware, hats are also just accessories. Is there a way to differentiate between two hats? Do they contain meshes which point to an asset on the Roblox catalog? If they do the easiest way would be to create a table that contains blacklisted IDs and stops them from being removed.

Although I'm not sure if the following would work, but I hope it will help.

01local Blacklisted = { 1000001, 1000002, 1000003 }
02 
03function IsBlacklisted(Accessory)
04    for _, v in pairs(Blacklisted) do
05        if Accessory.Mesh.MeshId == v
06            return true
07        else
08            return false
09        end
10    end
11end
12 
13-- somewhere in line four of your code
14if d[i].className == "Accessory" and not IsBlackListed(d[i]) then

But I doubt that we are using meshes, so in your case possibly manually add something that prevents it from being deleted, i.e a bool value which, when true, stops d[i] from being destroyed.

Ad
Log in to vote
2
Answered by 4 years ago
Edited 4 years ago
01function onTouched(hit)
02    local d = hit.Parent:GetChildren()
03    for i=1, #d do
04        if (d[i].className == "Accessory") then
05            if d[i].Handle:FindFirstChild("HatAttachment") then
06                d[i]:Destroy()
07        end
08        end
09    end
10end
11 
12script.Parent.Touched:connect(onTouched)

Hair and hats both have their own name for the attachment that keeps them on the player. In this case, only hats have the name "HatAttachment."

What this does is it checks if it is an accessory, and if it is, it goes into the handle and searches for a HatAttachment. If it finds any hats, it will then destroy them.

Also, :remove() is depreciated, so using :Destroy() can make the game run slightly faster.

Hopefully this helped!

1
I learnt something new here, haha; I didn't know only hats had hat attachments. radiant_Light203 1166 — 4y
0
umm idk how to accept 2 answers.... Shubu13 29 — 4y
0
You can only accept one answer DarkDanny04 407 — 4y
0
Accept Danny's answer! radiant_Light203 1166 — 4y

Answer this question