Advertisement
Vzurxy

9 Deadly Methods of Btools

Jan 10th, 2019
443
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. --[[
  2.  
  3. Execute _G.Mode = (Number here) , to select a mode.
  4.  
  5. 1 - Parents it to game
  6. 2 - Makes a folder in game and parents it to the folder
  7. 3 - Turns off CanCollide, turns on Anchored, and makes it invisible
  8. 4 - Parents to nil
  9. 5 - Sets CFrame Position to 999999999 and position to 999999999
  10. 6 - RobloxLocks it and deletes
  11. 7 - Names it random characters and deletes
  12. 8 - Creates a model in "workspace" and places a part in it and deletes model
  13. 9 - Parents to character and kills
  14.  
  15. ]]--
  16.  
  17. _G.Mode = 1
  18.  
  19. function randomString()
  20. local length = math.random(10,20)
  21. local array = {}
  22. for i = 1, length do
  23. array[i] = string.char(math.random(32, 126))
  24. end
  25. return table.concat(array)
  26. end
  27.  
  28. local LocalPlayer = game:GetService("Players").LocalPlayer
  29. local Tool = Instance.new("Tool", LocalPlayer.Backpack)
  30. local Identify = Instance.new("Part", Tool)
  31. local Mouse = LocalPlayer:GetMouse()
  32. local Target = Mouse.Target
  33. local Folder = Instance.new("Folder", game)
  34.  
  35. Tool.RequiresHandle = false
  36. Tool.RobloxLocked = true
  37. Tool.Name = randomString()
  38. Tool.Activated:Connect(function()
  39. local Target = Mouse.Target
  40. Tool.Name = randomString()
  41. if _G.Mode == 1 then
  42. Target.Parent = game
  43. elseif _G.Mode == 2 then
  44. Target.Parent = Folder
  45. elseif _G.Mode == 3 then
  46. Target.CanCollide = false
  47. Target.Anchored = true
  48. Target.Transparency = 1
  49. elseif _G.Mode == 4 then
  50. Target.Parent = nil
  51. elseif _G.Mode == 5 then
  52. Target.CFrame = CFrame.new(999999999, 999999999, 999999999)
  53. Target.Position = Vector3.new(999999999, 999999999, 999999999)
  54. elseif _G.Mode == 6 then
  55. Target.RobloxLocked = true
  56. Target.Parent = nil
  57. elseif _G.Mode == 7 then
  58. Target.Name = randomString()
  59. Target.Parent = nil
  60. elseif _G.Mode == 8 then
  61. local Model = Instance.new("Model", workspace)
  62. Target.Parent = Model
  63. Model:Destroy()
  64. elseif _G.Mode == 9 then
  65. Target.Parent = LocalPlayer.Character
  66. LocalPlayer.Character:BreakJoints()
  67. end
  68. end)
  69.  
  70. UnlockTool = Instance.new("Tool")
  71. UnlockTool.Parent = LocalPlayer.Backpack
  72. UnlockTool.RequiresHandle = false
  73. UnlockTool.Name = randomString()
  74. UnlockTool.Activated:connect(function()
  75. UnlockTool.Name = randomString()
  76. if Mouse.Target:IsA("BasePart") then
  77. Mouse.Target.Locked = false
  78. end
  79. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement