Sword Factory Script | DUPE

Created by OneGreatZombie

Features:

  •  DUPE
for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
   if v:IsA("Tool") then
       v.Parent = game.Players.LocalPlayer.Character
   end
end
wait(0.1)
for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
   if v:IsA("Tool") then
       v.Parent = game.Workspace
   end
end
game:Shutdown()