HumanoidDescription not updating Client

Goal :
I want to use a HumanoidDescription, Function LoadCharacterWithHumanoidDescription()

Issue :

  1. HumanoidDescription.Face does not update face & work
    player resapwn - Roblox Studio 01_05_2022 16_46_39
  2. Updating Shirts/Pants does not work unless you created the asset.
    (I own the group, however I cannot use the Shirts/Pants in my own game)

I have read API documentations, searched for solutions & ensured to use the correct ASSET-ID. I believe this is an internal script issue. I have no access to bug reports, hence here I am’

Sample Code :

function CoreManage:LoadCharacter(Client,Key)
	
	local HumanoidDescription			=	Instance.new("HumanoidDescription")
	HumanoidDescription.Shirt			=	tClientData[Key]["Inventory"]["Selected"]["Shirt"]
	HumanoidDescription.Pants			=	tClientData[Key]["Inventory"]["Selected"]["Pants"]
	HumanoidDescription.HairAccessory	=	tClientData[Key]["Inventory"]["Selected"]["Hair"]
	HumanoidDescription.Face			=	tClientData[Key]["Inventory"]["Selected"]["Face"]

	Client:LoadCharacterWithHumanoidDescription(HumanoidDescription)
	
end

Link to 2019 update announcement, now closed

NOTE :

  1. Hair Accessories loads correctly (as far as I know)
  2. Loading HumanoidDescription.Face shows no errors in the “output”, however it does not update

FaceID used: rbxassetid://32723156 (32723156)

1 Like