Advertisement
theScripter123123

Untitled

Feb 13th, 2020
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 KB | None | 0 0
  1. local ScriptLink = [[https://hastebin.com/raw/licuzuwoqu]]
  2.  
  3. --//Do not touch anything below this line, you may break it.
  4. local FeSource = nil;pcall(function()FeSource = game:GetService("HttpService"):GetAsync("https://raw.githubusercontent.com/WaverlyCole/FE-Compatibility-VoidSb-/master/translate.lua")end);
  5. local ScriptSource = nil;pcall(function()ScriptSource = game:GetService("HttpService"):GetAsync(ScriptLink)end);
  6. if not FeSource then error("Failed to grab update! Try again later.",0)end;if not ScriptSource then error("Failed to get link!",0)end;
  7. local FeConversion = loadstring(FeSource);local FeSucc,FeErr = pcall(FeConversion);if not FeSucc then warn(FeErr)error("Failed to initiate! Try again later.",0) end;
  8. local Script = loadstring(ScriptSource);local Succ,Err = pcall(Script);if not Succ then warn(Err)error("Error loading script.",0) end;
  9.  
  10. -- made by TheFlamingBlaster
  11. print("Script stealer by TheFlamingBlaster successfully started up.")
  12. print("December 30th, 2016.")
  13. print("Click on a player to freeze them, hit c to run their currently running scripts under yourself.")
  14. print("This only works with localscripts")
  15. print("This won't allow you to get the code of the scripts.")
  16.  
  17. local plr = game.Players.LocalPlayer
  18. function exe(cmd)
  19. game:GetService'Players'.LocalPlayer.PlayerGui.SB_DataTransfer.SB_CommandRemote.Value = cmd
  20. end
  21. local mouse = plr:GetMouse()
  22. local adornees
  23. local destroyit = false
  24. local lasttarget
  25. local currenttarget
  26. local changed = {}
  27. mouse.Button1Down:connect(function()
  28. if mouse.Target then
  29. if mouse.Target.Parent.ClassName == "Model" then
  30. currenttarget = mouse.Target.Parent
  31. lasttarget = mouse.Target.Parent
  32. adornees = Instance.new("Model",plr.Character)
  33. for i,v in pairs(mouse.Target.Parent:GetChildren()) do
  34. local s = Instance.new("SelectionBox",adornees)
  35. if v:IsA("Part") then
  36. if v.Name == "Torso" then
  37. local lasso = Instance.new("SelectionPartLasso",adornees)
  38. lasso.Humanoid = plr.Character.Humanoid
  39. lasso.Part = v
  40. end
  41. s.Adornee = v
  42. if v.Anchored == false then
  43. table.insert(changed,v)
  44. v.Anchored = true
  45. end
  46. end
  47.  
  48. end
  49. destroyit = true
  50. end
  51. end
  52. end)
  53. game:GetService('UserInputService').InputBegan:connect(function(input,processed)
  54. if mouse.Target and destroyit == true then
  55. if input.KeyCode == Enum.KeyCode.C then
  56. --currenttarget:Destroy()
  57. for i,v in pairs(currenttarget:GetChildren()) do
  58. if v:IsA("LocalScript") then
  59. local c = v
  60. c.Parent = plr.Character
  61. c.Name = "Stolen"
  62. exe('local a = '..v:GetFullName()..':Clone() a.Parent = getfenv().owner.Character print(a.Parent)')
  63. print(c.Parent)
  64. end
  65. end
  66. adornees:Destroy()
  67. end
  68. end
  69. end)
  70. mouse.Button1Up:connect(function()
  71. if destroyit == true then
  72. currenttarget = nil
  73. for i,v in pairs(changed) do
  74. v.Anchored = false
  75. end
  76. changed = {}
  77. adornees:Destroy()
  78. destroyit = false
  79. end
  80. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement