How do I add accessories to a rig?

Yo, so I took a 6 month long break and I’m not sure if I forgot or things have changed in studio but how do add accessories to a rig now? Hats, face items, etc. (and also the 3d clothing!)

When I add an accessory to a fresh rig with nothing on it I can’t put in an ID.

Much appreciated.

3 Likes

Just give it a search on YouTube. Can usually find a tutorial with ease.

7 Likes

Its actually simple.
Go to your rig and copy attachment from it ( like head attachment for hat or hair)
Paste it in the handle of your choice
Put the handle in accessory class.
Ready

Other way is to use roblox accessory plugin released recently

1 Like

It’s simple as few lines of code. Just make sure to have all the items in the Workspace.

local humanoid = workspace["YourCharacterRigName"]:FindFirstChildWhichIsA("Humanoid")
humanoid:AddAccessory(workspace["YourAccessoryName"])

image

You can run the code via command bar.

image

3 Likes