ScriptingFluff

[ROBLOX]BTools

Feb 19th, 2020
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. for i=2,4 do
  2. local btool = Instance.new("HopperBin")
  3. btool.BinType=i
  4. btool.Parent=game:service'Players'.LocalPlayer.Backpack
  5. end
  6.  
  7. mouse = game:service'Players'.LocalPlayer:GetMouse()
  8. tool = Instance.new("Tool")
  9. tool.RequiresHandle = false
  10. tool.Name = "Unlock tool"
  11. tool.Activated:connect(function()
  12. if mouse.Target:IsA("BasePart") then
  13. mouse.Target.Locked=false
  14. print("Unlocked "..mouse.Target:GetFullName())
  15. end
  16. end)
  17. tool.Parent = game:service'Players'.LocalPlayer.Backpack
Add Comment
Please, Sign In to add comment