Animation not showing correctly

I made an walking animation and used a script to put it ingame
today, it stopped working properly, the legs and arms do not go the full length of the step
i tried a different script, different animation priorities, but it didn’t work

the script in serverscriptstorage

game.Players.PlayerAdded:Connect(function(Player)
	Player.CharacterAdded:Connect(function(Character)
		Character.Animate.walk.WalkAnim.AnimationId = "rbxassetid://12481245183"
	end)
end)

its supposed to look like this

but ingame it looks like this

1 Like

I believe that an animation change occurred today that applies new smoothing to animations, with a significant amount of this impact being shown in r6. To fix this:

  1. Click on Workspace.
  2. Add an attribute called “RbxLegacyAnimationBlending” as a boolean.
  3. Tick the boolen on.
    image

This doesn’t fully replicate how it should look, but it’s as close as you can get right now.
Hope this helps! I’ve posted about it here as well.

6 Likes

I’ve heard forking the default animate script and adding a task.wait() ontop of it also fixes the issue

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.