Playing Animation Does not work At All

Was following the Roblox Documentation on playing animations, but it’s broken. I followed every step too.


local Players = game:GetService("Players")

local function ReplaceAnimations(Character)
	local Humanoid = Character:WaitForChild("Humanoid")
	local Animator = Humanoid:WaitForChild("Animator")
	
	for _, AnimationTrack in pairs(Animator:GetPlayingAnimationTracks()) do
		AnimationTrack:Stop(0)
		
		local AnimateScript = Character:WaitForChild("Animate")
		AnimateScript.run.RunAnim.AnimationId = "rbxassetid://15144986248"
	end
end

Players.PlayerAdded:Connect(function(Player)
	Player.CharacterAppearanceLoaded:Connect(ReplaceAnimations)
end)

Output keeps returning :arrow_forward: Failed to load animation - sanitized ID: rbxassetid://15144986248 (x2), I checked other posts, and I couldn’t find something that works.

We’re just gonna have to wait it out until roblox fixes this, unfortunately. You’re not the only person who’s development has been halted due to this service error.