Advertisement
TigerManGamingYT

Mad City Autoarrest

Apr 8th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.77 KB | None | 0 0
  1.  
  2. -- Not mine.
  3.  
  4. _G.run = true -- set to false to stop script
  5.  
  6. while _G.run do
  7. game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Handcuffs)
  8. game.ReplicatedStorage.Event:FireServer("Equip", game.Players.LocalPlayer.Character, game.Players.LocalPlayer.Character.Handcuffs.Handle)
  9. for i,v in pairs(game.Players:GetChildren()) do
  10. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  11. wait(0.25)
  12. game.ReplicatedStorage.Event:FireServer("Arrest", v)
  13. wait()
  14. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 0,0)
  15. end
  16. wait(0.25)
  17. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, -1000,0)
  18. game.Players.LocalPlayer.Character:BreakJoints()
  19. wait(20)
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement