Advertisement
ImC_C

ImC_C Fe btools

Aug 1st, 2019
3,686
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. (DONT COPY THIS MESSAGE) This isnt my script :)
  2.  
  3.  
  4.  
  5.  
  6. local btool = Instance.new("Tool",game.Players.LocalPlayer.Backpack)
  7. local SelectionBox = Instance.new("SelectionBox",game.Workspace)
  8. SelectionBox.Name = "oof"
  9. SelectionBox.LineThickness = 0.05
  10. SelectionBox.Adornee = nil
  11. SelectionBox.Color3 = Color3.fromRGB(0,0,255)
  12. SelectionBox.Visible = false
  13. btool.Name = "Delete Tool Subscribe to ImC_C"
  14. btool.RequiresHandle = false
  15. local IsEquipped = false
  16. local Mouse = game.Players.LocalPlayer:GetMouse()
  17.  
  18. btool.Equipped:connect(function()
  19. IsEquipped = true
  20. SelectionBox.Visible = true
  21. SelectionBox.Adornee = nil
  22. end)
  23.  
  24. btool.Unequipped:connect(function()
  25. IsEquipped = false
  26. SelectionBox.Visible = false
  27. SelectionBox.Adornee = nil
  28. end)
  29.  
  30.  
  31. btool.Activated:connect(function()
  32. if IsEquipped then
  33. game.Workspace.resources.RemoteEvent:FireServer("toggleShield", Mouse.Target)
  34. end
  35. end)
  36.  
  37. while true do
  38. SelectionBox.Adornee = Mouse.Target or nil
  39. wait(0.1)
  40. end
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49. ------:Arrest All:
  50. local A_1 = "requestTeam"
  51. local A_2 = "prisoners"
  52. local Event = game:GetService("Workspace").resources.RemoteFunction
  53. Event:InvokeServer(A_1, A_2)
  54. for _, v in pairs(game.Players:GetChildren()) do
  55. game.Workspace.resources.RemoteEvent:FireServer("cuff", v)
  56. end
  57. wait(2)
  58. game.Workspace.resources.RemoteFunction:InvokeServer("requestTeam", "police")
  59. for _, v in pairs(game.Players:GetChildren()) do
  60. game.Workspace.resources.RemoteEvent:FireServer("cuff", v)
  61. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement