--BROUGHT TO YOU BY RobloxScripter.com!--
--auto pickup
_G.on = true --false to turn off and true to turn on
while _G.on do
wait(3) -- you can change the delay here
char = game:GetService('Players').LocalPlayer.Character
game:GetService('Players').LocalPlayer.CharacterAdded:connect(function(body)
char = body end)
for i,v in pairs(workspace:GetDescendants()) do
if v:IsA('Tool') then
char.Humanoid:EquipTool(v) end end
end