-
What do you want to achieve?
I want my animations to play correctly like they should. -
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:
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!