In my game, I am trying to add idle animations to people in chairs.
I have tried different ways of loading the animation but it doesn’t work.
Here is the current script.
local animator = hum:FindFirstChildOfClass("Animator")
local animation = Instance.new("Animation")
animation.AnimationId = "rbxassetid://12707957951"
local animationTrack = animator:LoadAnimation(animation)
animationTrack:Play()```
This is in a server script.