SirMeme

I SNIFF POO

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