ChaosityYT

Mad City Money & XP Farm

Mar 17th, 2019
4,513
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. -- You need to be a Police to make this work!
  2. local Victim = "Fuitje" -- Must be a Criminal!
  3. if game.Players.LocalPlayer.Team == game.Teams.Police then
  4. if game.Players[Victim].Team == game.Teams.Criminals then
  5. if game.Players.LocalPlayer.Backpack:FindFirstChild("Handcuffs") then
  6. game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Handcuffs)
  7. game.ReplicatedStorage.Event:FireServer("Equip", game.Players.LocalPlayer.Character, game.Players.LocalPlayer.Character.Handcuffs.Handle)
  8. end
  9. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[Victim].Character.HumanoidRootPart.CFrame
  10. wait(0.25)
  11. for i=1,100 do
  12. game.ReplicatedStorage.Event:FireServer("Arrest", game.Players[Victim])
  13. end
  14. else
  15. game.StarterGui:SetCore("SendNotification", {Title="Script", Text="Your Victim needs to be a Criminal!"})
  16. end
  17. else
  18. game.StarterGui:SetCore("SendNotification", {Title="Script", Text="You need to be a police!"})
  19. end
Add Comment
Please, Sign In to add comment