Face won't change with humanoid:ApplyDescription()

I am trying to apply a humanoid description to a humanoid rig, and it works, but the face won’t change.
This is what it should look like:
Screenshot 2022-06-06 133132
This is what it looks like when I run the game:
Screenshot 2022-06-06 133212
This is the script:

local bjeffryHumDesc = game.Players:GetHumanoidDescriptionFromUserId(1489014563)

local humanoid = script.Parent:WaitForChild("Humanoid")

humanoid:ApplyDescription(bjeffryHumDesc)
1 Like

Please show us the rest of the code [relevant to the issue]

Plus, maybe these could help:

1 Like

For other people who reference this topic, the code I showed above was the whole code.
Here is the new code that fixed the issue:

local bjeffryHumDesc = game.Players:GetHumanoidDescriptionFromUserId(1489014563)
local face = 144075659
bjeffryHumDesc.Face = face

local humanoid = script.Parent:WaitForChild("Humanoid")

humanoid:ApplyDescription(bjeffryHumDesc)

I just went onto the avatar shop, found the face I wanted, and changed the face ID of the humanoid description to the face ID of the face I wanted.

1 Like

i dont think you need a separate id for the face
it works for me
local dummy = workspace.Dummy

local humanoid = dummy:WaitForChild(“Humanoid”)

local id = game.Players:GetHumanoidDescriptionFromUserId(117391392)

humanoid:ApplyDescription(id)

Oh, well that wasn’t working for me. Might just be the face shown in the first picture wasn’t the original, so I had to get it from the store, but I’m not sure. Nonetheless, my new code worked for me.