Advertisement
SandiaHD

Auto Arrest [MAD CITY SCRIPT]

May 20th, 2019
1,792
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.80 KB | None | 0 0
  1. -- loadstring: loadstring(game:HttpGet("https://pastebin.com/raw/gZ9ppNVP", true))()
  2.  
  3. _G.OnOff = true -- false to stop
  4.  
  5. while true do
  6.     if _G.OnOff then
  7.         for _, v in next, game.Players:GetPlayers() do
  8.             if v.Team.Name == "Criminals" then
  9.                 game.Players.LocalPlayer.Character.Humanoid:UnequipTools()
  10.                     game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Handcuffs)
  11.                     game.ReplicatedStorage.Event:FireServer("Equip", game.Players.LocalPlayer.Character,
  12.                     game.Players.LocalPlayer.Character.Handcuffs.Handle)
  13.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  14.                     game.ReplicatedStorage.Event:FireServer("Arrest", v)
  15.             end
  16.         end
  17.     end
  18. wait()
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement