Thank you for using our website
Your script:
--https://rbscripts.com
getgenv().wgwegw = true
while getgenv().wgwegw do task.wait()
for _, tool in ipairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
if tool:IsA("Tool") then
tool.Parent = game:GetService("Players").LocalPlayer.Character
end
end
for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
if v:IsA("Tool") then
v.Parent = game.Workspace
end
end
end