Advertisement
Marty2000

Legends Of Speed | AutoFarm

May 7th, 2024 (edited)
621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.90 KB | Gaming | 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.81, 0)
  27. cre.Size = UDim2.new(0, 193, 0, 19)
  28. cre.Font = Enum.Font.SourceSans
  29. cre.Text = "By Memedog#8352\n(Edited by: adsciy_pidoras)"
  30. cre.TextColor3 = Color3.new(1, 1, 1)
  31. cre.TextSize = 18
  32.  
  33. local stepped = false
  34.  
  35. step.Name = "step"
  36. step.Parent = Main
  37. step.BackgroundColor3 = Color3.new(1, 1, 1)
  38. step.Position = UDim2.new(0.1938546, 0, 0.19810304, 0)
  39. step.Size = UDim2.new(0, 117, 0, 25)
  40. step.Font = Enum.Font.SourceSans
  41. step.Text = "Steps Farm [OFF]"
  42. step.TextColor3 = Color3.new(0, 0, 0)
  43. step.TextSize = 18
  44. step.MouseButton1Click:connect(function()
  45.     stepped = not stepped
  46.     while wait() do
  47.         if stepped == true then
  48.             step.Text = "Steps Farm [ON]"
  49.             for i = 1, 500 do
  50.                 game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer("collectOrb", "Orange Orb", "City")
  51.                 game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer("collectOrb", "Red Orb", "City")
  52.                 game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer("collectOrb", "Blue Orb", "City")
  53.             end
  54.             wait(1.5)
  55.         else
  56.             step.Text = "Steps Farm [OFF]"
  57.             break
  58.         end
  59.     end
  60. end)
  61.  
  62. gems.Name = "gems"
  63. gems.Parent = Main
  64. gems.BackgroundColor3 = Color3.new(1, 1, 1)
  65. gems.Position = UDim2.new(0.188673258, 0, 0.515670598, 0)
  66. gems.Size = UDim2.new(0, 117, 0, 25)
  67. gems.Font = Enum.Font.SourceSans
  68. gems.Text = "Gems Farm"
  69. gems.TextColor3 = Color3.new(0, 0, 0)
  70. gems.TextSize = 18
  71. gems.MouseButton1Click:connect(function()
  72.     for i=1, 1000 do
  73.      local A_1 = "collectOrb"
  74. local A_2 = "Gem"
  75. local A_3 = "City"
  76. local Event = game:GetService("ReplicatedStorage").rEvents.orbEvent
  77. Event:FireServer(A_1, A_2, A_3)
  78. end
  79. end)
  80.  
  81. out.Name = "out"
  82. out.Parent = Main
  83. out.BackgroundColor3 = Color3.new(1, 1, 1)
  84. out.BackgroundTransparency = 1
  85. out.Position = UDim2.new(0.917098463, 0, 0, 0)
  86. out.Size = UDim2.new(0, 16, 0, 18)
  87. out.Font = Enum.Font.SourceSans
  88. out.Text = "X"
  89. out.TextColor3 = Color3.new(1, 0, 0)
  90. out.TextSize = 20
  91. out.MouseButton1Click:connect(function()
  92.     Main.Visible = false
  93. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement