Goal :
I want to use a HumanoidDescription
, Function LoadCharacterWithHumanoidDescription()
Issue :
- HumanoidDescription.Face does not update face & work
- 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
NOTE :
- Hair Accessories loads correctly (as far as I know)
- Loading HumanoidDescription.Face shows no errors in the “output”, however it does not update
FaceID used: rbxassetid://32723156 (32723156
)