Get Animation Length without Loading the Animation

Is there any other solution to getting the length of an animation without loading it first?

Example of getting the length by loading the animation:

local LoadedAnim = Animator:LoadAnimation(Anim)
while LoadedAnim.Length == 0 do RunService.Heartbeat:Wait() end
local Len = LoadedAnim.Length
1 Like

Impossible, you can only check the AnimationTrack which is loaded from the Animation object.

3 Likes