After Animation Finishes Tool doesn't return back to normal for others

How it should return:
Screenshot 2023-02-03 at 6.27.09 PM
How it currently returns:

It does return currently on the server but for other clients it messes up

1 Like

Found a solution.

I moved my script to client side. I thought you had to play animation on server for everyone to see, but it gets replicated to the server from the client.

Animation:Stop() wasn’t working for me but got this to work:for i,v in pairs(player.Character.Humanoid:GetPlayingAnimationTracks()) do if v.Name == "G" then v:Stop() end

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