Custom animation just for ONE player

  1. What do you want to achieve?
    ~ I want to give a custom animation to just ONE player, but so everyone can see it.

  2. What is the issue?
    ~ I’m not a scripter… I want to know if this is possible before I spend hours making an animation for no reason.

  3. What solutions have you tried so far?
    ~ Google isn’t really answering the question, all I can find is if I only want the one player to see it.

One player in the game needs to enter the main hall and walk to the leaders chair, very slow and purposeful. I want to animate this because none of the walk packs work, but I don’t know if I can assign the anim to just one specific player, so that everyone in the server can see it.

Hey!
You can put animation with this script


local Animation = script.Parent.Animation -- here animation instance

local PutAnimation = function(player: Player)
      local character = player.Character
      local Humanoid = character:FindFirstChild("Humanoid")
      local Animation = Humanoid:LoadAnimation(Animation)
      Animation.Looped = true -- if u want animation is looped
      Animation:Play()
end)