Advertisement
PeaPattern

lgbtq

Jul 10th, 2024
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.57 KB | None | 0 0
  1. local LocalPlayer = game:GetService("Players").LocalPlayer
  2. local Backpack = LocalPlayer.Backpack
  3. local Character = LocalPlayer.Character
  4.  
  5. for _, tool in Backpack:GetChildren() do
  6.     tool.Parent = Character
  7.     tool.Parent = workspace
  8.     tool:Destroy()
  9. end
  10.  
  11. for _, tool in Character:GetChildren() do
  12.     if not tool:IsA("Tool") then continue end
  13.     tool.Parent = Character
  14.     tool.Parent = workspace
  15.     tool:Destroy()
  16. end
  17.  
  18. Backpack.ChildAdded:Connect(function(tool)
  19.     wait()
  20.     tool.Parent = Character
  21.     tool.Parent = workspace
  22.     tool:Destroy()
  23. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement