pitrioptixiop

Roblox | Void script builder script stealer

Jun 11th, 2018
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. mouse = plr:GetMouse()
  3. mouse.Button1Down:connect(function()
  4. target = mouse.Target
  5. if target.Name == "Head" then
  6. inject = game.Players:GetPlayerFromCharacter(target.Parent)
  7. print("Injected into "..inject.Name)
  8. gui = inject.PlayerGui
  9. scripts = {}
  10. gc = gui:GetChildren()
  11. for i=1, #gc do
  12. wait(0.01)
  13. if gc[i].ClassName == "LocalScript" then
  14. table.Insert(scripts,gc[i])
  15. end
  16. print("These scripts were found:")
  17. for i=1, #scripts do
  18. wait(0.01)
  19. print(scripts[i])
  20. end
  21. print("Chat a script name to run it.")
  22. plr.Chatted:connect(function(msg)
  23. gui[msg]:Clone().Parent = player.PlayerGui
  24. end)
  25. end
  26. end
  27. end)
Add Comment
Please, Sign In to add comment