I am aware Roblox changed how the animations work a while back, but i cannot figure out how to fix it.
in the editor it looks fine, but in game it looks horrible.
Here’s the animation in the editor
It looks good, Now here’s the animation in game
It looks different, and I tried using different AnimationBlendFix options
Here’s the script that I use to run it
script.Parent.Equipped:Connect(function(Mouse)
Mouse.Button1Down:Connect(function()
animation = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(script.Parent.Animation)
animation:Play()
end)
end)
script.Parent.Unequipped:Connect(function()
animation:Stop()
end)