Giving accessories the original position

I want to give accessories, inserted into a dummy using the InsertService, the right position.

I don’t know any way to give the accessory the exact position that it would have when being bought in the avatar shop.

Just try

local a = Instance.new(“Accessory”)
a.Parent = game.Workspace.Dummy 

Maybe it will automatically place it inside it’s position

1 Like
local accessory = yourAccessory
dummy.Humanoid:AddAccessory(accessory)
1 Like

If it is a head accessory for ex,it should automatically go on the head on insert.
make sure to make the accessory object as the accessory you want it to be

That’s what I was looking for, thank you.