I am working on a group game; I am not the owner however. I am trying to play an animation, but it won’t play. Here is the animation which the owner of the group and game made: Typing animation - Roblox, and here is the group: Da trolling people - Roblox. As you can see the group owns the game. The owner can run the animations, but I can’t. As a side note when I use the same animation but with my ownership, it works. The script playing it is below.
local humanoid = plrCharClone:WaitForChild("Humanoid")
local animator = humanoid:WaitForChild("Animator")
local anim = humanoid:WaitForChild("type")
local animTrack = animator:LoadAnimation(anim)
animTrack.Priority = Enum.AnimationPriority.Action4
animTrack.Looped = true
animTrack:Play()
“type” is the animation.