Adel987654321

Legends Of Speed

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