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)