What Is Humanoid:ApplyDescription()? And How To Use It?

What Is Humanoid:ApplyDescription()? And How To Use It?

local id = 3348311798
local name = game.Players:GetNameFromUserIdAsync(id)
local humanoid = workspace:WaitForChild("Dummy"):WaitForChild("Humanoid")

local appearance = game.Players:GetHumanoidDescriptionFromUserId(id)
humanoid:ApplyDescription(appearance)
humanoid.DisplayName = name
2 Likes

So basically each avatar has a HumanoidDescription inside their Humanoid-object. This description contains information to the avatar’s look.

You can use Humanoid:ApplyDescription() to apply that description to characters that have a humanoid inside.

I hope this sort of explains it.

3 Likes

Oh Thank You So It Basicaly Just Applies Your Looks / Avatar To A Humanoid

Wait… So When my Avatar Updates The Dummy Updates Too?

That’s right!
It just has to be a character like these dummies from this character spawner.

1 Like

If you’re familiar with /Morph, this is what it uses to do that :slight_smile:

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.