Advertisement
ScriptingGuy

Legends Of Speed Script

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