Why are accessories broken?

Hello. I’ve been trying to make characters in my game “npcs” and whenever I put a hat into their rig it wont attach to the body. Why is this happened? And no it aint anchored.

Make the npc in another game, then copy and paste it to the one you want it in. That worked for me.

First select the rig, then the accessory, then run this in the command bar (make sure not unselect the stuff while selecting the command bar)

local Selection = game:GetService("Selection"):Get()
local rig = Selection[1]
local accessory = Selection[2]

rig.Humanoid:AddAccessory(accessory)
1 Like