Here is my script : local tool = script.Parent
local holding = false
local punch = Instance.new("Animation")
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("Humanoid")
local animator = humanoid:FindFirstChildOfClass("Animator") or humanoid:WaitForChild("Animator")
punch.AnimationId = "rbxassetid://95364017272840"
local punchPlay = animator:LoadAnimation(punch)
tool.Equipped:Connect(function()
print("Tool equipped")
end)
tool.Unequipped:Connect(function()
print("Tool unequipped")
end)
tool.Activated:Connect(function()
print("Tool activated")
punchPlay:Play()
end
end)
** You are now Level 4! **