Animation not playing on other players screens for literally no reason at all

Hey all, been working on this game until i realized that literally none of my animations are playing on other players screens, I have no idea as to why this is happening, which is why I’ve seen to the forum for this issue.

–What is happening?–
So, every time I load up an animation I get an error that simply says

  21:42:12.888  Failed to load animation with sanitized ID rbxassetid://89758459947555: Animation failed to load, assetId: https://assetdelivery.roblox.com/v1/asset?id=89758459947555&serverplaceid=116276067719982  -  Server

Literally no idea why this is happening, as i’ve been making and loading animations for the longest time now, and it just isn’t working out of the blue.

–SERVERSIDE SCRIPT–

game.ReplicatedStorage:FindFirstChild("ArmAnim").OnServerEvent:Connect(function(plr)
	local friend = workspace:FindFirstChild("Friend")
	local animator = friend.Humanoid:FindFirstChild("Animator")
	local animation = Instance.new("Animation")
	animation.AnimationId = "rbxassetid://91896360901634"
	local track = animator:LoadAnimation(animation):Play()
end)

–CLIENTSIDE SCRIPT–

uis.InputBegan:Connect(function(inpObj, gpe)
	if gpe then return end

	if game.Players.LocalPlayer.PlayerGui.ScreenGui.Enabled == true then
		if inpObj.KeyCode == Enum.KeyCode.X then
			event:FireServer()
		end

		if inpObj.KeyCode == Enum.KeyCode.Z then
			game.ReplicatedStorage:FindFirstChild("ArmAnim"):FireServer()
		end
	end


end)
1 Like

sanitized id basically means that you don’t own the animation…

but you can just reupload it (with creator set to yourself, or the group, whoever owns the game)

i personally use the animation spoofer plugin to reupload stuff

Also, why are you sending a signal from the client to the server to play the animation? I might be wrong, but wouldn’t just playing it in the local script save time and increase responsiveness?

hi
i know how to guess ur problem

do
‘’’

local track = animator:LoadAnimation(animation)

track:Play()

‘’’

sorry for bad formatting im on mobile