I’ve been scrolling for a while in a lot of devforum posts about this issue but they all are resolved by the person in question uploading the animation to the group, I have the animations uploaded to the group but I can only see them in studio testing, also team create members can’t see it in their testing at all and nobody can see it in game. I don’t know if there’s been a change to how playing animations needs to be coded but code like this would usually work in a singleplayer game. I will reiterate I have these animations uploaded to the group the game is owned by. This script is what I have for an npc animation just incase its written wrong and that’s why no animations play
local animationid = "rbxassetid://12145278654"
local animation = Instance.new("Animation")
animation.AnimationId = animationid
local animationtrack = script.Parent.Humanoid:LoadAnimation(animation)
animationtrack:Play()
(I know load animation is deprecated leave me alone)