Clean player all tool

Hey!

Have some ways can clean player all tools?

I am trying to clean Backpack tools but I don’t know how to write the script :frowning:

Player.Backpack:ClearChildren()

But when a player taking some tool the tool cant has been clean

Backpack tools aren’t tools that the player is equipping

For equipped tools you would do

for i,v in pairs(Player.Character:GetChildren()) do if v:IsA("Tool") then v:Destroy() end end

combine that with
player.Backpack:ClearChildren()

and all tools are cleared

1 Like