Basically what the title says. I want to loop a model’s animation in workspace but I have no idea how to do so. Do I have to make a script for it to happen?
4 Likes
1 Like
Im not sure if you’ve already solved this or not (since this is from 5 days ago)
But there are a few issues with your script
You shouldn’t be using a while true loop for the animation.
Play it once, and set Looped to be true.
Second off, “Load:Animation” isnt a thing (as far as i know)
This should be your updated script
local controller = script.parent.AnimationController
local anim = controller.Animator:LoadAnimation(script.Animation)
anim.Looped = true
anim:Play()
(also, another reason is because you put a wait(5) at the top, in the video you only ran it for like 2 seconds, so it never actually started the loop)
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.