roblox tools
local tool = script.Parent
tool.Equipped:Connect(function()
print("Tool has been equipped")
end)
tool.Unequipped:Connect(function()
print("Tool has been unequipped")
end)
tool.Activated:Connect(function()
print("Tool has been clicked")
end)
tool.Deactivated:Connect(function()
print("Mouse has been released")
end)