ChaosityYT

Mad City XP Farm

Mar 17th, 2019
4,254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. _G.AA = true
  2. game:service'RunService'.RenderStepped:Connect(function()
  3. if _G.AA then
  4. game.ReplicatedStorage.RemoteFunction:InvokeServer("ChangeTeam", "Criminals")
  5. if not game.Players.LocalPlayer.Team.Name == "Police" then return end
  6. local hc = game.Players.LocalPlayer.Backpack:FindFirstChild("Handcuffs")
  7. for i,v in next, game.Players:GetPlayers() do
  8. if v.Team.Name ~= "Police" then
  9. game.Players.LocalPlayer.Character.Humanoid:EquipTool(hc)
  10. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  11. game.ReplicatedStorage.Event:FireServer("Arrest", v)
  12. game.ReplicatedStorage.Event:FireServer("Eject", v)
  13. wait()
  14. end
  15. end
  16. end
  17. end)
Add Comment
Please, Sign In to add comment