Play an animation while sitting

Im trying to get an animation to play while sitting, but the player character is locked in the seat. The seat has a custom sitting animation. The video attached is whats happening.

local anim = plyr.Character.Humanoid:LoadAnimation(script.Animation)
		anim:Play()
        

Ive thought about making the character jump to leave the seat then playing the animation but the animation starts at a sitting pose.

Try changing the “Set Animation Priority” to Action or up

1 Like
local anim = plyr.Character.Humanoid:LoadAnimation(script.Animation)
anim.Priority = Enum.AnimationPriority.Action4
anim:Play()
1 Like

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