Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Game Link: https://www.roblox.com/games/1224212277/Mad-City?nl=true
- -- Shotgun:
- local Remote = game.Workspace.ObjectSelection.Shotgun.Shotgun.Shotgun['Event']
- local Arguments = {
- }
- Remote:FireServer(unpack(Arguments))
- -- MP5:
- local Remote = game.Workspace.ObjectSelection.MP5.MP5.MP5['Event']
- local Arguments = {
- }
- Remote:FireServer(unpack(Arguments))
- -- Baton:
- local Remote = game.Workspace.ObjectSelection.Baton.Baton.Baton['Event']
- local Arguments = {
- }
- Remote:FireServer(unpack(Arguments))
- -- Mad City Auto Arrest Script
- _G.run = true -- set to false to stop script
- while _G.run do
- game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Handcuffs)
- game.ReplicatedStorage.Event:FireServer("Equip", game.Players.LocalPlayer.Character, game.Players.LocalPlayer.Character.Handcuffs.Handle)
- for i,v in pairs(game.Players:GetChildren()) do
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
- wait(0.25)
- game.ReplicatedStorage.Event:FireServer("Arrest", v)
- wait()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 0,0)
- end
- wait(0.25)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, -1000,0)
- game.Players.LocalPlayer.Character:BreakJoints()
- wait(20)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement