#Eating Animation

8 messages · Page 1 of 1 (latest)

rose nest
#

I've been having trouble with making my eating animation play when you equip the cupcake into your inventory. Can someone help? This is the eating animation script.

sharp zephyrBOT
#

studio** You are now Level 4! **studio

trail arch
#
local Tool = script.Parent
local Animation = script.Animation

local Players = game:GetService("Players")
local Character = Players.LocalPlayer.Character
local Humanoid = Character:WaitForChild("Character")
local Animator = Humanoid:FindFirstChild("Animator")

Tool.Activated:Connect(function()
  local Track = Animator:LoadAnimation(Animation)
  Track:Play()
  task.wait(1)
  Track:Stop()
end)
#

I don't get it what was your problem

rose nest
#

I put your script in and it didn't work..

#

I've tried 5 different scripts just for this to work and atp I think it's because of the animation not working for some reason even though I put in the correct ID of the animation I made

#

Or possibly the setup I don't know :/