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:
This is what it looks like when I run the game:
This is the script:
local bjeffryHumDesc = game.Players:GetHumanoidDescriptionFromUserId(1489014563)
local humanoid = script.Parent:WaitForChild("Humanoid")
humanoid:ApplyDescription(bjeffryHumDesc)
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.
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.