Accessory not welded

well i tried to make a StarterCharacter with nothing for choosing a character selection in this case i clone a character accessories from replicatedstorage into the Character but idk why the welding won’t work even after chaging the AccessoryType and they just noclip


here is the script :
image

I don’t see any welding taking place there. I don’t know if it is supposed to be automatic, but I believe you need to manually weld using WeldConstraint.

1 Like

you need to make a new weldconstraint liek this

local newweld = Instance.new("WeldConstraint")
newweld.Parent = Character.Head
newweld.Part0 = Character.Head
newweld.Part1 = Hair

also remove the “WeldClone” you dont need it and this is way easier

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.