How to make an R6 rig play animation

How can I make this R6 rig for a “noob” dance or play an animation when the game is started?

like he loops animation and never ends like a statue dancing

2 Likes

put an “animation” object with the id of your choice that you have in the character/rig
make a new server script (regular script) inside of the character

local track = script.Parent.Humanoid:LoadAnimation(script.Parent.Animation)
track.Looped = true
track:Play()

its obviously not the best since loadanimation isnt used anymore but it does work, if something doesnt work tell me because i just freewrote this

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.