Player Hand Isn't Moving While Animation

The Player’s Hand Isn’t moving when the tool is equipped?

I tried to stop the idle animation, but it does not work.

Script:

local ReplicatedStorage = game:GetService("ReplicatedStorage")
local BuddahFruitEatEvent = ReplicatedStorage.RemoteEvents.BuddahFruitEat

local GetEatingAnimation = Instance.new("Animation", script)
GetEatingAnimation.AnimationId = "rbxassetid://13259784894"

local PlayEatingAnimation

BuddahFruitEatEvent.OnServerEvent:Connect(function(Player)
	Player.Character.Animate.toolnone.ToolNoneAnim.AnimationId = "rbxassetid://0"
	PlayEatingAnimation = Player.Character.Humanoid:LoadAnimation(GetEatingAnimation)
	PlayEatingAnimation:Play()
	wait(3)
	Player.Character.BuddahFruit:Destroy()	
	print("Eaten")
	Player.Character.Animate.toolnone.ToolNoneAnim.AnimationId = "rbxassetid://182393478"
end)

Is the custom animation you made an “Action”?

No, I didn’t change anything in the animation settings.

Change the AnimationPriority to Action, that should fix it.

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