Advertisement
Upscalefanatic3

MAD CITY WEAPONS SCRIPT & Auto Arrest *READ CAREFULLY*

Jan 28th, 2019
8,469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. -- Game Link: https://www.roblox.com/games/1224212277/Mad-City?nl=true
  2.  
  3.  
  4.  
  5. -- Shotgun:
  6.  
  7. local Remote = game.Workspace.ObjectSelection.Shotgun.Shotgun.Shotgun['Event']
  8.  
  9. local Arguments = {
  10.  
  11. }
  12.  
  13. Remote:FireServer(unpack(Arguments))
  14.  
  15.  
  16.  
  17.  
  18.  
  19. -- MP5:
  20.  
  21. local Remote = game.Workspace.ObjectSelection.MP5.MP5.MP5['Event']
  22.  
  23.  
  24. local Arguments = {
  25.  
  26. }
  27.  
  28. Remote:FireServer(unpack(Arguments))
  29.  
  30.  
  31.  
  32.  
  33.  
  34. -- Baton:
  35.  
  36.  
  37.  
  38.  
  39. local Remote = game.Workspace.ObjectSelection.Baton.Baton.Baton['Event']
  40.  
  41.  
  42. local Arguments = {
  43.  
  44. }
  45.  
  46. Remote:FireServer(unpack(Arguments))
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53. -- Mad City Auto Arrest Script
  54.  
  55. _G.run = true -- set to false to stop script
  56.  
  57. while _G.run do
  58. game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Handcuffs)
  59. game.ReplicatedStorage.Event:FireServer("Equip", game.Players.LocalPlayer.Character, game.Players.LocalPlayer.Character.Handcuffs.Handle)
  60. for i,v in pairs(game.Players:GetChildren()) do
  61. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  62. wait(0.25)
  63. game.ReplicatedStorage.Event:FireServer("Arrest", v)
  64. wait()
  65. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 0,0)
  66. end
  67. wait(0.25)
  68. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, -1000,0)
  69. game.Players.LocalPlayer.Character:BreakJoints()
  70. wait(20)
  71. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement