How to display accessories on a client sided dummy

Keep in mind, I’m not the best scripter and I just started trying my hand at it again, so if the answer is really obvious, please tell. I’ve tried everything from directly cloning and parenting an accessory into a client-side dummy for my character menu, to cloning a server-sided version of the accessory and then parenting it, but nothing works. The accessories are actually cloned and placed into the dummy client character for my game’s menu, but they don’t display. Any help would be appreciated.

local DisplayHair = Character:WaitForChild("FlatHair"):Clone()
	DisplayHair.Handle.Color = Color3.new(0.105882, 0.164706, 0.207843)
	DisplayHair.Parent = CloneDisplay
1 Like

Accessory welds are only created on server, adding a accessory in client won’t work

You might want to take a look at this thread

1 Like