Custom R15 character rig with default accessories/clothing

Hello developers!

I have a custom R15 rig (dogu15) and I would like to know how I can make it the default!

My question must not have been very readable, so it follows below a game that contains this modified rig, keeping the player’s own accessories and clothes.

https://gyazo.com/85bb76fa61246c246fdb678bf72ce727

1 Like

name it StarterCharacter and put it in StarterPlayer.

The StarterHumanoid clone the clothing, body colors etc?

I tested it and don’t work. The custom rig remain without my clothes!!

image

just make a “in pairs” script and find anything that is not a part or meshpart on your original character and clone it to the custom rig

1 Like

Roblox added a pretty nifty system for applying stuff to humanoids
Basically, two functions are needed to do what you want to do:
Players:GetHumanoidDescriptionFromUserId()
Humanoid:ApplyDescription()

These two events can be used in conjunction to create a script along the lines of:

local players = game.Players
local humDes = players:GetHumanoidDescriptionFromUserId(144258819) --this is my id for example but it can be any id
local npcHumanoid = workspace.NPC.Humanoid --just an example

npcHumanoid:ApplyDescription(humDes)

image

2 Likes