local char --Imagine I got the character here
local hum = char:WaitForChild("Humanoid")
local desc = hum:GetAppliedDescription() --Get the current description
local clone = desc:Clone() --Clone the current description
clone.Head = 000000 --Your bundle/mesh ids
clone.Torso = 000000
clone.LeftArm = 0000000
clone.RightArm = 0000000
clone.LeftLeg = 000000
clone.RightLeg = 00000
hum:ApplyDescription(clone) --Apply the new description
HumanoidDescription should automatically do that, try it and post what the results are.
Just make sure to mark it as the solution if it worked for you
Try to use the main ones, for example:
UpperTorso → Torso
RightUpperArm → RightArm
You also don’t have to include every body part.
Don’t include the head if you don’t need it.
I don’t think it’ll be much of a problem, try that and show what happens.
Edit:
@BloodAlibi I will try the script myself and tell you what the results are. Will be back in a few minutes.
I have tried with the R6 parts, here is the script :
game.Players.PlayerAdded:Connect(function(Player)
Player.CharacterAdded:Connect(function(char)
local hum = char:WaitForChild("Humanoid")
local desc = hum:GetAppliedDescription() --Get the current description
local clone = desc:Clone() --Clone the current description
clone.Torso = 4915542510
clone.LeftArm = 5878593702
clone.RightArm = 5878593702
clone.RightLeg = 5878685124
clone.LeftLeg = 5878593720
hum:ApplyDescription(clone)
end)
end)
Bu nothing changes, my character is still with standard body parts
I have looked in my Character > Humanoid Description and the IDs are not here, I just see multiple “0”.
I am also not too sure if it works with meshes (I only used it with bundles, but I think it works the same), try to make different meshes for the body parts just like you did with the legs.
The thing is that every parts have different IDs, here is the model of the dummy I use : https://www.roblox.com/library/6687347695/Dummy
It seems impossible to use only one ID for an entire body part.
It works with different meshes for the joints :
To be honest, I have no idea. I used HumanoidDescription in the past, but only with Roblox Bundles. I can give you the script I used, maybe you’ll manage to figure it out.
Would you like me to do that?
Seems like they used a StarterCharacter, as this is not your avatar.
I have another idea then:
You can make a StarterCharacter with your smooth body parts,
and use Players:GetHumanoidDescriptionFromUserId(userId) to load the clothing and accessories of the player.
You have the clothing and accessories as properties in the HumanoidDescription.
You can use InsertService:LoadAsset(assetId) to load the accessories and clothing
It’s basically the opposite of what we tried to do until now.
Instead of loading the body parts on the character with clothing, load the clothing and accessories on the character with the body parts.
That’s true.
This way seems more complicated, but since we can’t manage to load the body parts, maybe it is preferred. Unless someone else has a solution to offer.
Yes, because it is pretty much self-explanatory. You basically put the userId of the player in the brackets and get the HumanoidDescription instance in return.
Looks like this character is not working very well.
I have added a Humanoid into the original dummy and renamed it StarterCharacter. I put it into StarterPlayer.
The body parts have CanTouch and Archivable on.
Is there anything wrong with this model ? Or did I do something wrong again.
The problem is that HumanoidDescription uses the Roblox character parts dictionary and not any custom mesh. So if you want to replace body parts with your own, you have to delete the previous ones. Weld them again. There is also a big problem where you have to set up textures correctly or character limb would look like they having a stroke. At this point it’s better to make custom character system rather than improve Roblox one.
This old topic seems to always bring some people to try to solve it.
First of all, thanks to all of you for your help.
Here is my fix I found a while ago : The character meshes system of Roblox does not work with mine, so I had to put my custom character as a StarterCharacter and then add everything the player has (clothing, colors, accessories, …) on the character.