nhathuypopo

TP DF

Jan 17th, 2019
14,521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. check = function(x)
  2.  
  3. for _,v in next, x:GetChildren() do
  4. if v:IsA("Tool") then
  5. if not v.Parent:FindFirstChild("Humanoid") then
  6. v.TextureId = "";
  7. v.Parent = game.Players.LocalPlayer.Backpack
  8. end
  9. end
  10. check(v)
  11. end
  12. end
  13. check(workspace)
Add Comment
Please, Sign In to add comment