naser2345

script stealer

Aug 31st, 2017
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1.  
  2. -- Fainaly leaked
  3. print("Script stealer by TheFlamingBlaster successfully started up.")
  4. print("December 30th, 2016.")
  5. print("Click on a player to freeze them, hit c to run their currently running scripts under yourself.")
  6. print("This only works with localscripts")
  7. print("This won't allow you to get the code of the scripts.")
  8.  
  9. local plr = game.Players.LocalPlayer
  10. function exe(cmd)
  11. game:GetService'Players'.LocalPlayer.PlayerGui.SB_DataTransfer.SB_CommandRemote.Value = cmd
  12. end
  13. local mouse = plr:GetMouse()
  14. local adornees
  15. local destroyit = false
  16. local lasttarget
  17. local currenttarget
  18. local changed = {}
  19. mouse.Button1Down:connect(function()
  20. if mouse.Target then
  21. if mouse.Target.Parent.ClassName == "Model" then
  22. currenttarget = mouse.Target.Parent
  23. lasttarget = mouse.Target.Parent
  24. adornees = Instance.new("Model",plr.Character)
  25. for i,v in pairs(mouse.Target.Parent:GetChildren()) do
  26. local s = Instance.new("SelectionBox",adornees)
  27. if v:IsA("Part") then
  28. if v.Name == "Torso" then
  29. local lasso = Instance.new("SelectionPartLasso",adornees)
  30. lasso.Humanoid = plr.Character.Humanoid
  31. lasso.Part = v
  32. end
  33. s.Adornee = v
  34. if v.Anchored == false then
  35. table.insert(changed,v)
  36. v.Anchored = true
  37. end
  38. end
  39.  
  40. end
  41. destroyit = true
  42. end
  43. end
  44. end)
  45. game:GetService('UserInputService').InputBegan:connect(function(input,processed)
  46. if mouse.Target and destroyit == true then
  47. if input.KeyCode == Enum.KeyCode.C then
  48. --currenttarget:Destroy()
  49. for i,v in pairs(currenttarget:GetChildren()) do
  50. if v:IsA("LocalScript") then
  51. local c = v
  52. c.Parent = plr.Character
  53. c.Name = "Stolen"
  54. exe('local a = '..v:GetFullName()..':Clone() a.Parent = getfenv().owner.Character print(a.Parent)')
  55. print(c.Parent)
  56. end
  57. end
  58. adornees:Destroy()
  59. end
  60. end
  61. end)
  62. mouse.Button1Up:connect(function()
  63. if destroyit == true then
  64. currenttarget = nil
  65. for i,v in pairs(changed) do
  66. v.Anchored = false
  67. end
  68. changed = {}
  69. adornees:Destroy()
  70. destroyit = false
  71. end
  72. end)
Add Comment
Please, Sign In to add comment