thi2004

Auto Arrest Jailbreak

Jul 30th, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.81
  3.  
  4. -- Objects
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10. local TextLabel_2 = Instance.new("TextLabel")
  11.  
  12. -- Properties
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.BackgroundColor3 = Color3.new(0, 1, 0.635294)
  18. Frame.Position = UDim2.new(0.811621368, 0, 0.30039525, 0)
  19. Frame.Size = UDim2.new(0, 201, 0, 165)
  20. Frame.Style = Enum.FrameStyle.DropShadow
  21.  
  22. TextLabel.Parent = Frame
  23. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  24. TextLabel.Position = UDim2.new(-0.00502512464, 0, -0.00564972311, 0)
  25. TextLabel.Size = UDim2.new(0, 186, 0, 49)
  26. TextLabel.Font = Enum.Font.SciFi
  27. TextLabel.Text = "Auro Arrest GUI"
  28. TextLabel.TextColor3 = Color3.new(1, 0, 0)
  29. TextLabel.TextScaled = true
  30. TextLabel.TextSize = 14
  31. TextLabel.TextWrapped = true
  32.  
  33. TextButton.Parent = Frame
  34. TextButton.BackgroundColor3 = Color3.new(1, 0, 0)
  35. TextButton.BorderColor3 = Color3.new(0, 0, 0)
  36. TextButton.Position = UDim2.new(0.00502512557, 0, 0.397053033, 0)
  37. TextButton.Size = UDim2.new(0, 184, 0, 50)
  38. TextButton.Font = Enum.Font.Fantasy
  39. TextButton.Text = "Tp Player"
  40. TextButton.TextColor3 = Color3.new(0, 0, 0)
  41. TextButton.TextSize = 20
  42. TextButton.TextWrapped = true
  43.  
  44. TextButton.MouseButton1Down:connect(function()
  45. local loc = game:GetService('Players').LocalPlayer.Character.HumanoidRootPart
  46. local list = game:GetService('Teams').Criminal:GetPlayers()
  47. wait(0.5)
  48. for i,v in pairs(list) do
  49. repeat wait()
  50. loc.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1) until v.Team.Name ~= 'Criminal'
  51. end
  52. end)
  53.  
  54. TextLabel_2.Parent = Frame
  55. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  56. TextLabel_2.BackgroundTransparency = 1
  57. TextLabel_2.Position = UDim2.new(-0.0100502511, 0, 0.815072179, 0)
  58. TextLabel_2.Size = UDim2.new(0, 185, 0, 17)
  59. TextLabel_2.Font = Enum.Font.Garamond
  60. TextLabel_2.Text = "Gui By Kiệt Phạm"
  61. TextLabel_2.TextColor3 = Color3.new(1, 0, 0)
  62. TextLabel_2.TextSize = 22
Add Comment
Please, Sign In to add comment