SomeRBXperson_

Legend of speed AutoFarm

Nov 13th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.42 KB | None | 0 0
  1. local uwu = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local cre = Instance.new("TextLabel")
  4. local step = Instance.new("TextButton")
  5. local gems = Instance.new("TextButton")
  6. local out = Instance.new("TextButton")
  7.  
  8. uwu.Name = "uwu"
  9. uwu.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  10. uwu.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11. uwu.ResetOnSpawn = false
  12.  
  13. Main.Name = "Main"
  14. Main.Parent = uwu
  15. Main.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  16. Main.Position = UDim2.new(0.604411781, 0, 0.214574918, 0)
  17. Main.Size = UDim2.new(0, 193, 0, 148)
  18. Main.Selectable = true
  19. Main.Active = true
  20. Main.Draggable = true
  21.  
  22. cre.Name = "cre"
  23. cre.Parent = Main
  24. cre.BackgroundColor3 = Color3.new(0, 0, 0)
  25. cre.BackgroundTransparency = 1
  26. cre.Position = UDim2.new(-0.00310030137, 0, 0.870257616, 0)
  27. cre.Size = UDim2.new(0, 193, 0, 19)
  28. cre.Font = Enum.Font.SourceSans
  29. cre.Text = "by MaiLeane on YouTube"
  30. cre.TextColor3 = Color3.new(1, 1, 1)
  31. cre.TextSize = 18
  32.  
  33.  
  34. step.Name = "step"
  35. step.Parent = Main
  36. step.BackgroundColor3 = Color3.new(1, 1, 1)
  37. step.Position = UDim2.new(0.1938546, 0, 0.19810304, 0)
  38. step.Size = UDim2.new(0, 117, 0, 25)
  39. step.Font = Enum.Font.SourceSans
  40. step.Text = "Steps Farm"
  41. step.TextColor3 = Color3.new(0, 0, 0)
  42. step.TextSize = 18
  43. step.MouseButton1Click:connect(function()
  44. for i=1, 7500 do
  45. local A_1 = "collectOrb"
  46. local A_2 = "Red Orb"
  47. local A_3 = "City"
  48. local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  49. Event:FireServer(A_1, A_2, A_3)
  50. end
  51. end)
  52.  
  53. gems.Name = "gems"
  54. gems.Parent = Main
  55. gems.BackgroundColor3 = Color3.new(1, 1, 1)
  56. gems.Position = UDim2.new(0.188673258, 0, 0.515670598, 0)
  57. gems.Size = UDim2.new(0, 117, 0, 25)
  58. gems.Font = Enum.Font.SourceSans
  59. gems.Text = "Gems Farm"
  60. gems.TextColor3 = Color3.new(0, 0, 0)
  61. gems.TextSize = 18
  62. gems.MouseButton1Click:connect(function()
  63. for i=1, 1000 do
  64. local A_1 = "collectOrb"
  65. local A_2 = "Gem"
  66. local A_3 = "City"
  67. local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  68. Event:FireServer(A_1, A_2, A_3)
  69. end
  70. end)
  71.  
  72. out.Name = "out"
  73. out.Parent = Main
  74. out.BackgroundColor3 = Color3.new(1, 1, 1)
  75. out.BackgroundTransparency = 1
  76. out.Position = UDim2.new(0.917098463, 0, 0, 0)
  77. out.Size = UDim2.new(0, 16, 0, 18)
  78. out.Font = Enum.Font.SourceSans
  79. out.Text = "X"
  80. out.TextColor3 = Color3.new(1, 0, 0)
  81. out.TextSize = 20
  82. out.MouseButton1Click:connect(function()
  83. Main.Visible = false
  84. end)
Add Comment
Please, Sign In to add comment