Can't attack and move at the same time

When I am moving and I press the attack button, it just plays the first frame. Could anybody help?

Thanks.

That’s because you overwrite it, if you press d and e at the same time, you set the animation to Walking and Attack1 at the same time.
I think you need two Player is moving conditions(or subs), one with and one without attack.

Sorry for the late reply, but could you elaborate?

If you only see the first frame, you probably have a conflict of animations. You need to fix it by adding more conditions to make sure only one animation can play at any time.
What @jack suggested is:

If Player is moving

  • If e is pressed : play attack
  • If e is not pressed : play walking