There's a function of the Players
service. It's called GetCharacterAppearanceAsync
.
The function returns a model containing all of the assets that a player(you need to put their UserId for the parameter) is wearing, except for their gear.
If you don't want a model, but a table instead, you can use GetCharacterAppearanceInfoAsync
, which does the same, but returns a table.
1 | local Model = game.Players:GetCharacterAppearanceAsync( 13645 ) |
The code above would return a model, containing all of the assets that Telamon is currently wearing.
This(as far as I'm aware) includes the shirt, the pants, the T-shirt, any accessories, and any body parts that the player is wearing.
We can then simply parent any shirt, pants, T-shirt, or CharacterMesh that the model has to the clone.
When using the AddAccessory
function of Humanoid
, make sure that there is an Attachment
of each type(you may not remember which accessories require which attachments) that are descendants of the clone. If you don't do this, then the accessory won't be attached to the clone(from my understanding of the Developer Hub).
01 | local Model = game.Players:GetCharacterAppearanceAsync( 13645 ) |
02 | local Dummy = game.Workspace.Dummy |
04 | for i, v in pairs (Model:GetChildren()) do |
05 | if v.ClassName = = "Shirt" or v.ClassName = = "Pants" then |
07 | elseif v.ClassName = = "Accessory" then |
08 | Dummy.Humanoid:AddAccessory() |
09 | elseif v.ClassName = = "CharacterMesh" then |
I know that you don't need to add that last elseif
statement(as opposed to putting it in the first conditional statement), but I did so the code block doesn't automatically drop a line
Looking at this, it looks like it should work. I know you wanted to make a clone of YOUR character, but this should work just the same if you put the LocalPlayer's UserId in the function.
If anyone spots out an error (or more) I've made, please point it out.