Trying to figure out GetHumanoidDescriptionFromUserId but something seems off
It aplies the id but player is naked & if i copy the applied code and press enter it works
A video to understand what issue is:
Script:
local humanoidDescription = Players:GetHumanoidDescriptionFromUserId(player.UserId)
local pant = humanoidDescription.Pants
local clone = script:WaitForChild("NormalPant"):Clone()
clone.Parent = hit
clone.PantsTemplate = "http://www.roblox.com/asset/?id=" .. pant
Really weird, have no clue why it doesn’t work myself. I think you’d have to do a work around like cloning the pants before they ever change or use insert service
local copy_of_original_pants = InsertService:LoadAsset(pant)
copy_of_original_pants:GetChildren()[1].Parent = char