of     1   

herojack24
#201800899Friday, November 18, 2016 2:09 AM GMT

Hello. My animatronic morphs are not getting rid of Hats...... I Would like some help... Link to models: https://www.roblox.com/library/549083010/Five-nights-at-Riddys-roleplay-morph-set If you figure out whats wrong with them tell me how to fix them...
Meruetes
#201801891Friday, November 18, 2016 2:22 AM GMT

Technical Support and Account Issues is not for your weeb crap. Go to the scripting place instead, fattie.
The_Kermits
#201802016Friday, November 18, 2016 2:24 AM GMT

"Five nights at riddys" misha is a robot
ColdEfficiency
#201808943Friday, November 18, 2016 4:06 AM GMT

The issue is likely that hats have changed to Accessories. So in your code you need to use IsA("Accoutrement") instead of IsA("Hat").
herojack24
#201853442Friday, November 18, 2016 8:32 PM GMT

Okay they use this script... function onTouched(hit) local d = hit.Parent:GetChildren() for i=1, #d do if (d[i].className == "Hat" then d[i].Handle.Transparency = 1 end end end script.Parent.Touched:connect(onTouched) So what do i change?
herojack24
#202001444Sunday, November 20, 2016 11:13 AM GMT

Bump . .
herojack24
#202008209Sunday, November 20, 2016 1:16 PM GMT

UGH Bump
PooTheMan
#202009605Sunday, November 20, 2016 1:40 PM GMT

just make them press =
herojack24
#202012957Sunday, November 20, 2016 2:30 PM GMT

But that drops the hairs and somebody could pick it up and have to drop it off somewhere then another person could pick it up and have to drop it off somewhere x∞
TheAddictPlayer
#202015161Sunday, November 20, 2016 3:05 PM GMT

That's an easy fix: function onTouched(hit) local d = hit.Parent:GetChildren() for i=1, #d do if (d[i]:IsA("Accoutrement")) then d[i].Handle.Transparency = 1 end end end script.Parent.Touched:connect(onTouched) http://wiki.roblox.com/index.php?title=API:Class/Accoutrement http://devforum.roblox.com/t/changes-to-hats-and-body-parts/30564 - 𝓣𝓱𝓮𝓐𝓭𝓭𝓲𝓬𝓽𝓟𝓵𝓪𝔂𝓮𝓻 | Current RAP: R$509 | #DownWithSift
TheAddictPlayer
#202015487Sunday, November 20, 2016 3:09 PM GMT

Or if you want to remove the hats: function onTouched(hit) local d = hit.Parent:GetChildren() for i=1, #d do if (d[i]:IsA("Accoutrement")) then d[i]:Destroy() end end end script.Parent.Touched:connect(onTouched) - 𝓣𝓱𝓮𝓐𝓭𝓭𝓲𝓬𝓽𝓟𝓵𝓪𝔂𝓮𝓻 | Current RAP: R$515 | #DownWithSift
herojack24
#202046853Sunday, November 20, 2016 8:52 PM GMT

SIGH i need to remove Accessories too... Y U DO DIS ROBLOX CHANGE EVERYTHING BACK TO HATS!!!
herojack24
#202058787Sunday, November 20, 2016 11:27 PM GMT

Sigh time to Bump it again Bump

    of     1