Advertisement
MatLumber2

Untitled

Jan 29th, 2019
3,621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.23 KB | None | 0 0
  1. loadstring(game:HttpGet(('http://arilis.win/B1316DFA-DC3A-405D-BF19-99588992BC70.lua'),true))()
  2.  
  3. Credits: ArilisDev
  4.  
  5. Auto XP FARM
  6. Credits: LeviTheOtaku
  7.  
  8.  
  9. local autofarm = false
  10.  
  11. local XPAutoFarmGui = Instance.new("ScreenGui")
  12. local MainFrame = Instance.new("Frame")
  13. local Button = Instance.new("TextButton")
  14. local Deco = Instance.new("TextLabel")
  15.  
  16. XPAutoFarmGui.Name = "XPAutoFarmGui"
  17. XPAutoFarmGui.Parent = game.CoreGui
  18.  
  19. MainFrame.Name = "MainFrame"
  20. MainFrame.Parent = XPAutoFarmGui
  21. MainFrame.Active = true
  22. MainFrame.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  23. MainFrame.BorderSizePixel = 0
  24. MainFrame.Draggable = true
  25. MainFrame.Position = UDim2.new(0.25, 0, 0.25, 0)
  26. MainFrame.Size = UDim2.new(0.150000006, 0, 0.100000001, 0)
  27.  
  28. Button.Name = "Button"
  29. Button.Parent = MainFrame
  30. Button.BackgroundColor3 = Color3.new(0, 0, 0)
  31. Button.BorderSizePixel = 0
  32. Button.Position = UDim2.new(0.25, 0, 0.400000006, 0)
  33. Button.Size = UDim2.new(0.5, 0, 0.400000006, 0)
  34. Button.Font = Enum.Font.SourceSans
  35. Button.FontSize = Enum.FontSize.Size14
  36. Button.Text = "OFF"
  37. Button.TextColor3 = Color3.new(1, 0, 0)
  38. Button.TextScaled = true
  39. Button.TextSize = 14
  40. Button.TextWrapped = true
  41.  
  42. Deco.Name = "Deco"
  43. Deco.Parent = MainFrame
  44. Deco.BackgroundColor3 = Color3.new(1, 1, 1)
  45. Deco.BackgroundTransparency = 0.89999997615814
  46. Deco.BorderSizePixel = 0
  47. Deco.Size = UDim2.new(1, 0, 0.300000012, 0)
  48. Deco.Font = Enum.Font.SourceSansBold
  49. Deco.FontSize = Enum.FontSize.Size14
  50. Deco.Text = "XP Autofarm"
  51. Deco.TextColor3 = Color3.new(1, 1, 1)
  52. Deco.TextScaled = true
  53. Deco.TextSize = 14
  54. Deco.TextWrapped = true
  55.  
  56. Button.MouseButton1Down:connect(function()
  57. if autofarm == false then
  58. autofarm = true
  59. Button.TextColor3 = Color3.new(0, 1, 0)
  60. Button.Text = "ON"
  61. else
  62. autofarm = false
  63. Button.TextColor3 = Color3.new(1, 0, 0)
  64. Button.Text = "OFF"
  65. end
  66. end)
  67.  
  68. spawn(function()
  69. while true do
  70. wait()
  71. if autofarm == true then
  72. game.ReplicatedStorage.RemoteFunction:InvokeServer("SetTeam", "Hero")
  73. game.ReplicatedStorage.RemoteFunction:InvokeServer("SetTeam", "Police")
  74. game.ReplicatedStorage.RemoteFunction:InvokeServer("SetTeam", "Prisoners")
  75. wait(1.2)
  76. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(-750, 55, -3340))
  77. wait(1)
  78. end
  79. end
  80. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement