file:///C:/Users/theac/Pictures/Screenshot%202023-10-09%20175625.png
It is showing sanitized id so here is my script its the hold anim that isnt working.
local Player = game.Players.LocalPlayer
local Tool = script.Parent
local Script = script
local Animation = Tool:WaitForChild(“Anim”)
local HoldAnim = Tool:WaitForChild(“HoldAnim”)
local Character = Player.Character or Player.CharacterAdded:Wait()
local Track = Character:FindFirstChildOfClass(“Humanoid”):LoadAnimation(Animation)
local Track2 = Character:FindFirstChildOfClass(“Humanoid”):LoadAnimation(HoldAnim) – Hold anim
Tool.Equipped:Connect(function()
Track2:Play() – Hold anim
end)
Tool.Activated:Connect(function()
Track:Play()
end)
Tool.Unequipped:Connect(function()
Track2:Stop()-- Same with this
end)