Accessory not going onto character

I was trying to make a boombox backpack sort of thing, but I seem to be having trouble with it actually going onto the player. I’ve attached a video showing what I’m doing. Any idea why this doesn’t work? I watched this video, and as far as I know, I did the same exact thing. The character I’m inserting into is my character, and I’m trying to attach using the attachment called “BodyBackAttachment”

2 Likes

The problem is that you’re trying to equip the accessory while the server is running
You’d have to add it through a script with Humanoid:AddAccessory() if you want to add an accessory while the server is running

Character.Humanoid:AddAccessory(game.ServerStorage.Boombox:Clone())
3 Likes