"Animation failed to load" error

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? For the animations to work.

  2. What is the issue? The animations only seem to work in Studio and not in the actual game.

  3. What solutions have you thought of so far? None.

I own the animation.
The group that I own, also owns the place.
I’m using rbxassetid://

well do you press a button and the animation plays or do you press a key for the animation to play?

yes you need to press a key for it to play and stop, this has worked for me once before but now it doesn’t want to anymore.

Try using this script it always works for me all you need to do is put it in starterpack here is the link-https://www.roblox.com/library/5135529951/key-code-animation-script

i would rather not install any plugins because of possible viruses

it isn’t a plugin it is actually a free model not a plug in. Or do you just want me to give you the script

i guess so, so yeah sure that would do

ok just give on second :grinning:

ok so make a local script in starter pack and type this in
local UIS = game:GetService(“UserInputService”)
local plr = game.Players.LocalPlayer
local crawl = Enum.KeyCode.E

UIS.InputBegan:Connect(function(key, gp)
if key.KeyCode == crawl then
if UIS:GetFocusedTextBox() == nil then
local anim = plr.Character.Humanoid:LoadAnimation(script.Anims.Crawl)
anim:Play()
wait(20)
anim:Stop()
end
end
end)
than make a folder in side the script called Anims
then add an animation and insert your animation id into it the key code should be E!

oh and call the animation
“crawl”

won’t the animation only be able to be seen by the player and not other players since it’s a local script?

it works and you can see you animation so as other players

If it’s a group-owned place, the group itself must be the owner of the animation, even if you own the group, it doesn’t count as you owning the animation.

Re-upload the animations to your group and change the ID’s and it should work in-game.

1 Like

To my knowledge animations replicate from client to server, so it will be seen by others.

I’m also having the same problem with tools I’m having animated with a keybind

Sorry what do you mean by tools?

Yes i know what a tool is but did you add the script inside the tool? that was what i was asking becase the script doesn’t need to be in a tool

I’m pretty sure you need to upload the animation to the groups game animations.

it should look like this
Anim script