local tool = script.Parent
local handle = tool:WaitForChild("Handle")
local player = script.Parent.Parent.Parent
print(player)
local char = player.Character
local humanoid = char:WaitForChild("Humanoid")
tool.Equipped:Connect(function()
local motor = Instance.new("Motor6D")
motor.Part0 = char:WaitForChild("Right Arm")
motor.Part1 = handle
motor.Parent = char:WaitForChild("Right Arm")
local anim = Instance.new("Animation")
anim.AnimationId = "rbxassetid://128099317573148"
local track = humanoid.Animator:LoadAnimation(anim)
track:Play()
end)
** You are now Level 9! **