justprogamerlv

Untitled

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