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

How do I make an undroppable hat?

Asked by 10 years ago

Sort of like an undroppable gear.

3 answers

Log in to vote
1
Answered by 10 years ago

You can take the Handle out of the hat, and then weld it on to your head I guess.

Ad
Log in to vote
1
Answered by
Tesouro 407 Moderation Voter
10 years ago

This is a lazy method, it just return the hat to character, so its placed back. (place the script in the character)

script.Parent.ChildRemoved:connect(function(child) -- triggered when a child is removed
    if child:IsA("Hat") then -- check if it's a hat
        wait() -- a little wait to prevent errors
        child.Parent = script.Parent -- return it to the character
    end
end)

The problem is that the hat still jumps forward and other person can catch it. I tried to weld it to the head, but still the same.

Log in to vote
-4
Answered by 10 years ago

Just change your heads mesh to the specified id that you want =D hope this helped!

0
um...I don't think he wanted to do that. ChemicalHex 979 — 9y

Answer this question