How to put an accessory on a dummy / player from roblox marketplace

Plain and simple, I haven’t really found any source on how to actually put the accessory on the player. All I really found out is how to put it into the game and from there I’ve tried some basics like a weld but no luck.

This is quite literally all I have for the script right now:

local test = game.InsertService:LoadAsset(17408283)
	test.Parent = game.Workspace
2 Likes

Place the accessory inside the character.

local test = game.InsertService:LoadAsset(17408283)
test:FindFirstChildOfClass("Accessory").Parent = character
test:Destroy()
1 Like

Oh my god I feel like an idiot now, thank you.

1 Like