Trying to make a part have the same animation as a roblox limb

is it possible for the glowing part to have the same animation as the left arm before i removed it? just wondering, i am totally fine without the animation, just thought it would be more realistic for something im making. thanks.

i forgot the code sorry

game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(char)
parent.ClickDetector.MouseClick:Connect(function()
	local la = char:FindFirstChild("Left Arm")
	if la then
		print("user already has left arm")
	else
				parent.Position = char:FindFirstChild("LimbH").Position
				parent.Rotation = char:FindFirstChild("LimbH").Rotation
		local weld = Instance.new("WeldConstraint", parent)
		weld.Part0 = parent
		weld.Part1 = char:FindFirstChild("LimbH")
		parent.BillboardGui:Destroy()
		parent.ClickDetector:Destroy()
		script.Disabled = true
	end
end)
	end)
	end)```

copy over the motors, remove the weldconstraint and that allows for animations to be played and make the arm’s parent the player