Advertisement
Guest User

Untitled

a guest
Aug 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. --Made by Helpful Guy--
  2.  
  3. local Player = game:GetService("Players").LocalPlayer
  4.  
  5.  
  6. Player.Chatted:Connect(function(Message)
  7. if Message:sub(1,5):lower() == "steal" then
  8. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  9. if not string.match(string.lower(Message:sub(7)), string.lower(v.Name)) then
  10. for i,v in pairs(v:WaitForChild("Backpack"):GetChildren()) do
  11. if Player:WaitForChild("Backpack"):FindFirstChild(v.Name) then
  12. local NewTool = v:Clone()
  13. NewTool.Parent = Player:WaitForChild("Backpack")
  14. end
  15. end
  16. break
  17. end
  18. end
  19. end
  20. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement