Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- (DONT COPY THIS MESSAGE) This isnt my script :)
- local btool = Instance.new("Tool",game.Players.LocalPlayer.Backpack)
- local SelectionBox = Instance.new("SelectionBox",game.Workspace)
- SelectionBox.Name = "oof"
- SelectionBox.LineThickness = 0.05
- SelectionBox.Adornee = nil
- SelectionBox.Color3 = Color3.fromRGB(0,0,255)
- SelectionBox.Visible = false
- btool.Name = "Delete Tool Subscribe to ImC_C"
- btool.RequiresHandle = false
- local IsEquipped = false
- local Mouse = game.Players.LocalPlayer:GetMouse()
- btool.Equipped:connect(function()
- IsEquipped = true
- SelectionBox.Visible = true
- SelectionBox.Adornee = nil
- end)
- btool.Unequipped:connect(function()
- IsEquipped = false
- SelectionBox.Visible = false
- SelectionBox.Adornee = nil
- end)
- btool.Activated:connect(function()
- if IsEquipped then
- game.Workspace.resources.RemoteEvent:FireServer("toggleShield", Mouse.Target)
- end
- end)
- while true do
- SelectionBox.Adornee = Mouse.Target or nil
- wait(0.1)
- end
- ------:Arrest All:
- local A_1 = "requestTeam"
- local A_2 = "prisoners"
- local Event = game:GetService("Workspace").resources.RemoteFunction
- Event:InvokeServer(A_1, A_2)
- for _, v in pairs(game.Players:GetChildren()) do
- game.Workspace.resources.RemoteEvent:FireServer("cuff", v)
- end
- wait(2)
- game.Workspace.resources.RemoteFunction:InvokeServer("requestTeam", "police")
- for _, v in pairs(game.Players:GetChildren()) do
- game.Workspace.resources.RemoteEvent:FireServer("cuff", v)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement