I’m trying to get a rig/npc to play a looped animation. It used to be en emote but its now just an animation. When I test the game, it doesnt play the animation and I get no related errors in output.
Ive tried changing the script to insert the asset into replicated storage, but it shows up as a Keyframe Sequence.
Here is my path and code:
local animation = script:WaitForChild("Animation")
local humanoid = script.Parent.Humanoid
local emote = humanoid:LoadAnimation(animation)
emote:Play()
emote.Looped = true
this is my script the only other thing is that I am firing it from ServerScriptService and not the rig
local npc = game.Workspace.NPC
local animation2 = npc:WaitForChild(“Anim2”)
local humanoid = npc:WaitForChild(“Humanoid”)
local Anim = humanoid:LoadAnimation(animation2)
Anim:Play()
hey! I found the fix, I accidentally anchored everything in my workspace so I unanchored the model, anchored HumanoidRootPart and when I tested it the animation played. Thank’s for your help though.