Advertisement
Guest User

Untitled

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