Animation Doesn't Play On Player like it does In Animation editor

Hello, im making it where if u press e next to a wall ur character does a jump Animation and climbs it, the animation looks fine in Animation editor but in game its really bad.

script.Parent.Triggered:Connect(function(player)
	player.Character.HumanoidRootPart.CFrame = script.Parent.Parent.CFrame
	local Humanoid = player.Character.Humanoid
	local anim = script.Animation
	local Animatiom = Humanoid:LoadAnimation(anim)
	Animatiom:Play()
end)


I figured it out, i changed the priority to idle and it works fine now.

2 Likes