:AddAccessory() doesn't works Client-side

I’m trying to make a character-preview, SO I clone the player character, and make the preview, but I have a trouble;

	print(MoreCharacterStuff.HELMET[characterIndex])
			local K = MoreCharacterStuff[index][characterIndex]:Clone()
			K.Parent = FakeChar
			
			FakeChar:WaitForChild('Humanoid'):AddAccessory(K)

It seems like this doesn’t works on clientside, any idea why this could be?

1 Like

Humanoid:AddAccessory() doesn’t actually attach from the client, you need to either run it server side or set up a temporary way to preview using a different method (welding, or just positioning the accessory and anchoring it in place).

6 Likes