How do I use HumanoidDescriptions to load accessories?

expected behavior:

what’s happening:

i’m trying to load characters onto a modified R6 rig. however, when i try to use HumanoidDescriptions, I only get the BodyColors, and nothing else. roblox’s documentation states that i can get everything that the character is wearing, including accessories and clothes. however, when i apply the description, i’m only getting the BodyColors. what am i supposed to do?

my script: (it’s server-sided)

local services = {
	Players = game:GetService("Players")
}

local function handle_plr(player: Player)
	local char = player.Character
	local desc = services.Players:GetHumanoidDescriptionFromUserId(player.UserId)
	local humanoid = char:WaitForChild("Humanoid")
	
	if humanoid then
		humanoid:ApplyDescription(desc)
	end
end

services.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function()
		handle_plr(plr)
	end)
end)

the rig i was using had issues. why am i such a moron?

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.