I need to be able to get layered clothing ids from a humanoid description, but there’s currently no way to do this it seems. Is there any way I can get some sort of JSON encoded list of the humanoid description or something like that? Any advice helps, thanks!
HumanoidDescription.AccessoryBlob is what you are looking for.
https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/AccessoryBlob
1 Like
Unfortunately I’ve looked into the AccessoryBlob and according to the site, I’m not able to access it via Lua code which is what I need to do
However, this led me to something else called Humanoid:GetAccessories()
which could hold the layered clothing! I guess this is my best option, thank you!