1_F0

btools

May 25th, 2020
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. --[[
  2. Unrestricted BTools
  3. By: OpenGamerTips
  4.  
  5. Keybinds:
  6. Press P for BTools
  7. Press L to unlock the Workspace
  8. Press K to enable the backpack/other core elements.
  9. ]]--
  10.  
  11. local player = game.Players.LocalPlayer
  12. local mouse = player:GetMouse()
  13.  
  14. mouse.KeyDown:connect(function(key)
  15. key = string.lower(key)
  16.  
  17. if key == "p" then
  18. for item = 1, 4 do
  19. HopperBin = Instance.new("HopperBin", game.Players.LocalPlayer.Backpack)
  20. HopperBin.BinType = item
  21. end
  22. elseif key == "l" then
  23. function UnlockWorkspace(a)
  24. for n,part in pairs(a:GetChildren()) do
  25. if(part:IsA("BasePart")) then
  26. part.Locked = false
  27. end
  28. UnlockWorkspace(part)
  29. end
  30. end
  31. UnlockWorkspace(workspace)
  32. elseif key == "k" then
  33. local StarterGui = game:GetService("StarterGui")
  34. StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, true)
  35. end
  36. end)
Add Comment
Please, Sign In to add comment