Failed to Load Animation

Yesterday, every animation that I tried to use suddenly just didn’t load, and I got this error that always appeared in the output.

image

Every animation is uploaded to a group, and for some reason it just doesn’t seem to load properly. The strangest part is that this has NEVER happened previously, so it’ll be nice for someone to give me some advice on what to do.

I’m pretty sure it has to do with animation ownership. Do you own the group, and are you testing in studio or roblox itself?

Yes, and I’m testing this on studio.

That’s weird, could I see the script that sets the animation ID and loads it?

Also, check things like if your game is under the group, if the animation is set to private, or if it’s just an uploading issue.

parent the animation to workspace, see if anything changes.

The game is under the group, but animations before that were set to private were working correctly.

local AnimationTrack = TrackFolder[Name] :: AnimationTrack?

if (not AnimationTrack) and Animator and Animation then

	AnimationTrack = Animator:LoadAnimation(Animation)
	LoadedAnimations[RegisteredToonType][Name] = AnimationTrack

end

It might be an uploading issue, but I’m not too sure.