Advertisement
MatLumber2

Untitled

Jan 28th, 2019
3,235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. Gui
  2. loadstring(game:HttpGet("https://pastebin.com/raw/kaKBQM8m"))()
  3.  
  4. AutoArrest
  5. Credits: SploitComing
  6.  
  7. _G.run = true -- set to false to stop script
  8.  
  9. while _G.run do
  10. game.Players.LocalPlayer.Character.Humanoid:EquipTool(game.Players.LocalPlayer.Backpack.Handcuffs)
  11. game.ReplicatedStorage.Event:FireServer("Equip", game.Players.LocalPlayer.Character, game.Players.LocalPlayer.Character.Handcuffs.Handle)
  12. for i,v in pairs(game.Players:GetChildren()) do
  13. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame
  14. wait(0.25)
  15. game.ReplicatedStorage.Event:FireServer("Arrest", v)
  16. wait()
  17. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, 0,0)
  18. end
  19. wait(0.25)
  20. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0, -1000,0)
  21. game.Players.LocalPlayer.Character:BreakJoints()
  22. wait(20)
  23. end
  24.  
  25. Walkspeed script
  26.  
  27. _G.Speed=true
  28. local Speed=100
  29.  
  30. local Plr=game:GetService('Players').LocalPlayer
  31. local Hum=Plr.Character:FindFirstChildWhichIsA('Humanoid')
  32. Hum.WalkSpeed=Speed
  33.  
  34. Hum.Changed:Connect(function(C)
  35. if C=='WalkSpeed' and _G.Speed then
  36. Hum.WalkSpeed=Speed
  37. end
  38. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement