when you click image/text button you unequip all tools from backpack... not destroy, clear or remove
Make the TextButton, add a LocalScript
to it, and write the following text into the script:
local textbutton = script.Parent --The TextButton local player = game.Players.LocalPlayer --The player textButton.MouseButton1Down:connect(function() --AKA 'When button clicked' player.Backpack:ClearAllChildren() --Clears the player's backpack end)