Advertisement
Hoho1269CH

Mad City Auto Arrest

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