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)