Welding left arm to a torso makes texture disappear

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Make the texture of the arm stay

  2. **What is the issue?**https://cdn.discordapp.com/attachments/712387434318659695/822577490996363284/unknown.png

  3. What solutions have you tried so far? Cloning the parts

	local partB = character.Torso
	partA.Position = Vector3.new(0, 10, 0)
	partB.Position = Vector3.new(0, 10, 2.5)
	partA.Parent = character

	local weld = Instance.new("WeldConstraint")
	weld.Parent = character.Torso
	weld.Part0 = partA
	weld.Part1 = partB
	p.Humanoid.PlatformStand = true
	p.Humanoid.HumanoidRootPart.CanCollide = false
	p.Torso.CanCollide = false
		end)