"Failed to load animation - sanitized ID:" error

After the outage yesterday, I been recently getting this error:
Screenshot 2023-10-22 123026

This is the first time I got this error, and my script looks like as it is usually is before I started getting the error.

	local anim = Instance.new("Animation")
	anim .AnimationId = "rbxassetid://(ANIMATIONID)"
	char:WaitForChild("Humanoid"):LoadAnimation(chairHoldChar):Play()

I used the sanitized ID, but it’s the same result. This could be a bug, but I am not too sure since the posts I checked were back in August 2021.

Thanks!

1 Like

Just wrap the script in a pcall function incase the request to load the animation fails. There’s nothing else you can do if ROBLOX’s servers are just being poop.

1 Like

You should be loading the animation onto the animator since loading to the humanoid is deprecated.