Animation failing to load on published group game despite me being the creator of both

  1. What do you want to achieve?
    I want my animations to play correctly like they should.

  2. What is the issue?
    Despite me being the creator of the group, game & animations, it will refuse to load for anybody outside of studio (when publish my game).

Failed to load animation with sanitized ID rbxassetid://101304404471750: Animation failed to load, assetId: https://assetdelivery.roblox.com/v1/asset?id=101304404471750&serverplaceid=83084993100591

If you check the ID, you will see I’m the creator:


image

Going to the link provided by the error, I’m met with this:

This is the code I use to load the animations:

local char = plr.Character or plr.CharacterAdded:Wait()
local humanoid = char:WaitForChild("Humanoid")
local animator:Animator = humanoid:WaitForChild("Animator")

local animationFolder = script:WaitForChild("Animations")
local r15SlideAnimation = animationFolder:WaitForChild("R15SlideAnimation")
local r6SlideAnimation = animationFolder:WaitForChild("R6SlideAnimation")
local r15DoubleJumpAnimation = animationFolder:WaitForChild("R15DoubleJump")
local r6DoubleJumpAnimation = animationFolder:WaitForChild("R6DoubleJump")
local r15StraightWalljump = animationFolder:WaitForChild("R15StraightWalljump")
local r6StraightWalljump = animationFolder:WaitForChild("R6StraightWalljump")
local r15RightWalljump = animationFolder:WaitForChild("R15RightWalljump")
local r6RightWalljump = animationFolder:WaitForChild("R6RightWalljump")
local r15LeftWalljump = animationFolder:WaitForChild("R15LeftWalljump")
local r6LeftWalljump = animationFolder:WaitForChild("R6LeftWalljump")

local leftWalljump
local rightWalljump
local straightWalljump
local doubleJumpAnimation
local slideAnimation

if r15==true then
	leftWalljump=animator:LoadAnimation(r15LeftWalljump)
	rightWalljump=animator:LoadAnimation(r15RightWalljump)
	straightWalljump=animator:LoadAnimation(r15StraightWalljump)
	doubleJumpAnimation=animator:LoadAnimation(r15DoubleJumpAnimation)
	slideAnimation=animator:LoadAnimation(r15SlideAnimation)
end

if r6==true then
	leftWalljump=animator:LoadAnimation(r6LeftWalljump)
	rightWalljump=animator:LoadAnimation(r6RightWalljump)
	straightWalljump=animator:LoadAnimation(r6StraightWalljump)
	doubleJumpAnimation=animator:LoadAnimation(r6DoubleJumpAnimation)
	slideAnimation=animator:LoadAnimation(r6SlideAnimation)
end

I have genuinely exhausted every resource on this and nobody seems to have an answer. I don’t know what to do anymore. Please help, I’m going insane!

Even though you’re the creator, make sure that the animation’s ownership and permissions are set correctly and check studio’s network setting. If it isn’t working try relaunching studio.

I’m the owner of the animation, and it doesn’t look like you can configure anything about permissions.


What do you want me to do here?
image

Again, It’s not working on PUBLISHED SERVERS, it works on studio.

I’ve seen many people with this issue I think it’s something that can’t be solved and the only solution is set the group as the creator of the asset.

I have found the solution:

Turns out, even if you are the creator of the animations, it will not be enough. You have to upload (or reupload) your animations with the group’s name as the creator. It also exclusively has to be done within the place you’re wanting to use the animations in:


Select the GROUP, do NOT select it as “ME”

The ID generated here SHOULD work:

This is the most terribly designed Roblox system I have seen in a very long time. Whoever was in charge of designing this at Roblox should be fired and banished for working at anything related to Roblox ever again. And the fact you can’t change this after upload is rubbing salt to the wound, this is outrageous! Such a time waster!

1 Like