Creating a podium that loads character models

I’ve tried to find out the solution to this but I’ve only found scripts that either just load the accessories and clothing without the package or loading an entire package to a character (assuming that you know the id of the package). I’m trying to make a system that combines these aspects. Below is an image of my podium that only loads accessories and clothing but I’m not sure how to get it to load R15 packages because that changes the MeshPart that is the character’s limbs. It also needs to be able to reset the model back to a default state with along, adapt to if a player doesn’t have a package equipped, and ignore character scaling. I have no idea how to go about the package aspect of this.


With my current system it doesn’t load the packages and results in this:

image

Any help would be appreciated! Thanks!

3 Likes

HumanoidDescription can help you on this: HumanoidDescription | Documentation - Roblox Creator Hub

Example in a script in the NPC Character:

wait(5)

local description = game:GetService("Players"):GetHumanoidDescriptionFromUserId(215246184)

local humanoid = script.Parent.Humanoid

delay(2, function()

humanoid:ApplyDescription(description)

end)

You can even edit the Character before its loaded!

1 Like

Tested, and it works great! Thanks for the help!

1 Like