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)