Advertisement
Erktiky

BTools script

Nov 8th, 2022
5,452
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.94 KB | None | 0 1
  1. --[[    
  2.  
  3. █▀█ █▀▀ ▄▀█ █▀▄   █▄▄ █▀▀ █▀▀ █▀█ █▀█ █▀▀   █░█ █▀ █ █▄░█ █▀▀
  4. █▀▄ ██▄ █▀█ █▄▀   █▄█ ██▄ █▀░ █▄█ █▀▄ ██▄   █▄█ ▄█ █ █░▀█ █▄█
  5.  
  6.  
  7. Before you will be using this script to exploit in the game, read this.
  8.  
  9. I am NOT responsible for any bans or kicks that occured while your cheating session and YOU gotta be responsible for that.
  10. Any bans are NOT my fault and you can't accuse me of banning you because YOU are using these cheats and YOU are chosing this way through your gameplay.
  11.  
  12. HOW TO USE:
  13.  
  14. 1. Run your script executor.
  15. 2. Paste the ENTIRE script into the executor.
  16. 3. Inject and run.
  17. 4. Press Z to remove objects. (You can change the key below.)
  18. 5. Enjoy!
  19.  
  20.  
  21. --]]
  22. --[[
  23.  
  24. █▀▀ █▀█ █▀▀ █▀▄ █ ▀█▀ █▀
  25. █▄▄ █▀▄ ██▄ █▄▀ █ ░█░ ▄█
  26.  
  27.  
  28. ███╗░░░███╗░█████╗░██████╗░███████╗  ██████╗░██╗░░░██╗
  29. ████╗░████║██╔══██╗██╔══██╗██╔════╝  ██╔══██╗╚██╗░██╔╝
  30. ██╔████╔██║███████║██║░░██║█████╗░░  ██████╦╝░╚████╔╝░
  31. ██║╚██╔╝██║██╔══██║██║░░██║██╔══╝░░  ██╔══██╗░░╚██╔╝░░
  32. ██║░╚═╝░██║██║░░██║██████╔╝███████╗  ██████╦╝░░░██║░░░
  33. ╚═╝░░░░░╚═╝╚═╝░░╚═╝╚═════╝░╚══════╝  ╚═════╝░░░░╚═╝░░░
  34.  
  35. ███████╗██████╗░██╗░░██╗██╗░░░██╗██╗
  36. ██╔════╝██╔══██╗██║░██╔╝╚██╗░██╔╝██║
  37. █████╗░░██████╔╝█████═╝░░╚████╔╝░██║
  38. ██╔══╝░░██╔══██╗██╔═██╗░░░╚██╔╝░░╚═╝
  39. ███████╗██║░░██║██║░╚██╗╗░░██║░░░██╗
  40. ╚══════╝╚═╝░░╚═╝╚═╝░░╚═╝░░░╚═╝░░░╚═╝
  41.  
  42. --]]
  43.  
  44. local player = game.Players.LocalPlayer
  45. local deleteButton = Enum.KeyCode.Z -- DELETE BUTTON
  46. local UIM = game.UserInputService
  47. local mouse = player:GetMouse()
  48.  
  49. mouse.Move:Connect(function()
  50.     if game.Workspace:FindFirstChild("DestroySelectionBox") then
  51.         game.Workspace:FindFirstChild("DestroySelectionBox"):Destroy()
  52.     end
  53.     if mouse.Target then
  54.         if mouse.Target:IsA("Part") or mouse.Target:IsA("MeshPart") then
  55.             local box = Instance.new("SelectionBox")
  56.             box.Color3 = Color3.new(255,255,255)
  57.             box.LineThickness = 0.1
  58.             box.SurfaceTransparency = 0.99
  59.             box.SurfaceColor3 = Color3.new(255,255,255)
  60.             box.Transparency = 0
  61.             box.Adornee = mouse.Target
  62.             box.Parent = game.Workspace
  63.             box.Name = "DestroySelectionBox"
  64.         end
  65.     end
  66. end)
  67.  
  68. UIM.InputBegan:Connect(function(input, gameProcessed)
  69.     if input.UserInputType == Enum.UserInputType.Keyboard then
  70.         if input.KeyCode == deleteButton then
  71.             delete()
  72.         end
  73.     end
  74. end)
  75.    
  76. function delete()
  77.     if mouse.Target then
  78.         if mouse.Target:IsA("Part") or mouse.Target:IsA("MeshPart") then
  79.             mouse.Target:Destroy()
  80.         end
  81.     end
  82. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement