So, I was trying to animate this guy thinking about if he should jump into a hole. I set the animation to looped in the script but it clearly isn’t looping:
here’s the script:
local animation = script.Parent:WaitForChild("SitThink")
local hum = script.Parent:WaitForChild("Humanoid")
local sitthink = hum:LoadAnimation(animation)
sitthink:Play()
sitthink.Looped = true
Please try do do some research before posting your problem. The DevForum prompts you to do this as you post. It seems there’s history with AnimationTrack.Looped not replicating when set on the server to clients and vice-versa. Try changing the run context to “Client”, or simply flagging the animation as looped in your animation editor.
FYI, Humanoid:LoadAnimation is deprecated. You’re asked to use Animator:LoadAnimation instead. An Animator instance is auto-generated as a child of all players’ Humanoid instances
I did not state that as a solution. Only as a correction. Please attempt either changing the run context or setting the animation as looped in your animation editor