Constant style animation skips the first frame

I’m not sure if this is the right place to post this, but I couldn’t find an animation support category so here goes.

I’ve made a few placeholder animations for a fighting system.

All of the animation use constant style keyframes because I like how it looks. When playing the animation, the first frame gets skipped and the last frame is kept on extra to make up for the time lost by skipping the first one.

The animation priority is Action4 and all other animations are stopped from playing before starting this one.

I’ve tried changing the style to linear which worked, but I want to keep the animations as constant.
I’ve also looked around the forums, but haven’t found anyone with the same issue.

Media

Animation in editor:

Animation in playtest:

Code

local TestAnimation = Animator:LoadAnimation(ClassModel:FindFirstChild("test"))

TestAnimation:Play(0)
2 Likes