Hi, I wanted to make a dummy that loads the players character, but the accessories don’t load in the correct places.
The script:
local Players = game:GetService("Players")
local WS = game:GetService("Workspace")
local dummy = WS:WaitForChild("Dummy")
local hum = dummy:WaitForChild("Humanoid")
Players.PlayerAdded:Connect(function(plr)
local id = plr.UserId
local newHumanoidDescription = Players:GetHumanoidDescriptionFromUserId(id)
hum:ApplyDescription(newHumanoidDescription)
end)
it’s just roblox issues, don’t worry much about it, I’d also recommend you use a pcall to get the humanoid description since its a https request and it can fail
well i mean, i don’t think there’s any other way of fixing it, try setting the character to unanchored because maybe that’s making the issue (probably not)
how accessories work is they have an attachment that says where they go, like the head or something. if the character doesnt have that attachment it just creates a weld at attaches it to the part.
to fix: add all the attachments you need in the appropriate body part. it took me 30 seconds so you can do it too.