Need help on local animation

is there a method to run animation on only you and not other player LOCALLY

so in your perspective: you would only see yourself playing the animation and the animation won’t be playing on other players and in other players perspective: they will see you as normal

I’ve tried to use LocalPlayer but it just runs on all player in your perspective

Simply play the animation in a LocalScript.

-- Client:

player.Character.Humanoid.Animator:LoadAnimation(animationtrack):Play()

If this doesn’t solve your issue, can you please be more specific in the future?

well I was already using local script

so in short the animation track also replicates to the server side and plays on server side aswell

I don’t think that this is possible without making your own animation script to manually grab keyframes and transforming the motors yourself.

Luckily for you; someone already did that.

1 Like

I did make the Keyframe animation thing, but you could also have the animation Instance be only local, and the animation will be played locally.
You can do this by Cloning an existing animation instance!

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