Advertisement
Guest User

SB

a guest
Sep 21st, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.63 KB | None | 0 0
  1. Tp items once: ( Execute this first even if you will use loop, or else u get kicked. )
  2. check = function(x)
  3.  
  4.  for _,v in next, x:GetChildren() do
  5.      if v:IsA("Tool") then
  6.          if not v.Parent:FindFirstChild("Humanoid") then
  7.              v.TextureId = "";
  8.              v.Parent = game.Players.LocalPlayer.Backpack
  9.          end
  10.      end
  11.      check(v)
  12.  end
  13. end
  14. check(workspace)
  15.  
  16. Tp Items(Loop):
  17.  
  18. while wait(3) do
  19. for _,v in pairs(workspace:GetChildren()) do
  20.     if v:IsA("Tool") then
  21.         v.Handle.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  22.         print("Teleported Item!")
  23.     end
  24. end
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement