Not sure how to load an animation that's been given to me via file

This is the first time I’ve tried to play an animation made by someone else. Normally I just do:

local Animation = Instance.new("Animation")
Animation.AnimationId = --ID
local Track = player.Character.Humanoid:LoadAnimation(Animation)
Track:Play()

This time though, I have this to work with
image

I tried doing:

local BackflipTrack = 
player.Character.Humanoid:LoadAnimation(ReplicatedStorage.Backflip)
BackflipTrack:Play()

But got this error: LoadAnimation requires an Animation object.

I tried putting the object I got into an Animation object but then it told me the ID cannot be empty. I’m extremely clueless rn and would appreciate any help.

You can’t play animations from raw keyframe sequences like this with the LoadAnimation API. You need to upload it as an animation and then use the ID of the asset to play it.

I HAVE SORTED IT

I never use animations ;p thanks for the help.