Advertisement
Nova355killer

selct box btools jailbreak

Mar 19th, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. local plr = game:GetService("Players").LocalPlayer
  2. local BtoolActive = false
  3. local m = plr:GetMouse()
  4. if BtoolActive then
  5. local sb = Instance.new("SelectionBox", workspace.CurrentCamera)
  6. local ev = m.Button1Down:Connect(function()
  7. if m.Target then
  8. m.Target:Destroy()
  9. end
  10. end)
  11. while BtoolActive do
  12. wait()
  13. if m.Target then
  14. sb.Adornee = m.Target
  15. end
  16. end
  17. ev:Disconnect()
  18. else
  19. local sb = workspace.CurrentCamera:FindFirstChildOfClass("SelectionBox")
  20. if sb then sb:Destroy() end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement