Part wont rotate

Ok, so I have this animation which when I play it on a dummy it will work,

But when I play it with my player the kunai wont rotate

The Motor6D’s are the same as the ones in the dummy

	local Kunai = game.ServerStorage.Kunai:Clone()
	Kunai.Parent = Char.HumanoidRootPart
	
	local Motor6D = Instance.new("Motor6D",Char["Torso"])
	Motor6D.Name = "KunaiHold"
	Motor6D.Part0 = Char["Right Arm"]
	Motor6D.Part1 = Kunai
local function Swing(player,count)
	
	
	local Swing1 = Hum:LoadAnimation(script.Animations.Swing1)
	
	print(count)
	
	Swing1:Play()

Update: It was because of another anim conflicting with it