Character appearance problem

ISSUE: Accessories arent loading.
the accessories are not loading OR are not welded.

task.wait(2)

script.PlrID.Value = game.Players:GetPlayerFromCharacter(script.Parent).UserId
local id = script.PlrID.Value
local newHumanoidDescription = game.Players:GetHumanoidDescriptionFromUserId(id)
local newName = game.Players:GetNameFromUserIdAsync(id)
script.Parent.Humanoid:ApplyDescription(newHumanoidDescription)

task.wait(0.2)
for a,b in ipairs(script.Parent:GetDescendants()) do
	if b.Name == ("HeadWeld") or b.Name == "CharacterMesh" then
		b:Destroy()	
	end
end



function CheckAdded(Thing)
	if Thing:IsA("Tool") then
		warn("equipped")
		script.Parent.Torso["Right Shoulder"].Enabled = true
	end
end



script.Parent.ChildAdded:Connect(CheckAdded)

function CheckRemoved(Thing)
	if Thing:IsA("Tool") then
		script.Parent.Torso["Right Shoulder"].Enabled = false
	end
end



script.Parent.ChildRemoved:Connect(CheckRemoved)
1 Like