Advertisement
teamkel01

Legends of speed

Mar 20th, 2023 (edited)
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 KB | None | 0 0
  1. --credits to teamkel01
  2.  
  3. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  4. local Window = OrionLib:MakeWindow({Name = "⚡Legends Of Speed⚡", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  5. local Tab = Window:MakeTab({
  6. Name = "Farm",
  7. Icon = "rbxassetid://4483345998",
  8. PremiumOnly = false
  9. })
  10. Tab:AddToggle({
  11. Name = "Auto Collect orb",
  12. Default = false,
  13. Callback = function(Value)
  14. getgenv().loop1 = Value
  15. while getgenv().loop1 == true do
  16. wait(0.001)
  17. local args = {
  18. [1] = "collectOrb",
  19. [2] = "Red Orb",
  20. [3] = "City"
  21. }
  22.  
  23. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  24. wait()
  25. local args = {
  26. [1] = "collectOrb",
  27. [2] = "Red Orb",
  28. [3] = "Snow City"
  29. }
  30.  
  31. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  32. wait()
  33. local args = {
  34. [1] = "collectOrb",
  35. [2] = "Red Orb",
  36. [3] = "Magma City"
  37. }
  38.  
  39. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  40. end
  41. end
  42. })
  43. Tab:AddToggle({
  44. Name = "Collect gem",
  45. Default = false,
  46. Callback = function(Value)
  47. getgenv().loop2 = Value
  48. while getgenv().loop2 == true do
  49. wait(0.001)
  50. local args = {
  51. [1] = "collectOrb",
  52. [2] = "Gem",
  53. [3] = "City"
  54. }
  55.  
  56. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  57. wait()
  58. local args = {
  59. [1] = "collectOrb",
  60. [2] = "Gem",
  61. [3] = "Snow City"
  62. }
  63.  
  64. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  65. wait()
  66. local args = {
  67. [1] = "collectOrb",
  68. [2] = "Gem",
  69. [3] = "Magma City"
  70. }
  71.  
  72. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  73. end
  74. end
  75. })
  76. Tab:AddToggle({
  77. Name = "Auto rebirth",
  78. Default = false,
  79. Callback = function(Value)
  80. getgenv().loop3 = Value
  81. while getgenv().loop3 == true do
  82. wait(0.1)
  83. local args = {
  84. [1] = "rebirthRequest"
  85. }
  86.  
  87. game:GetService("ReplicatedStorage").rEvents.rebirthEvent:FireServer(unpack(args))
  88. end
  89. end
  90. })
  91. Tab:AddToggle({
  92. Name = "Fast orb -only works in city-",
  93. Default = false,
  94. Callback = function(Value)
  95. getgenv().loop4 = Value
  96. while getgenv().loop4 == true do
  97. wait(0.000001)
  98. local args = {
  99. [1] = "collectOrb",
  100. [2] = "Red Orb",
  101. [3] = "City"
  102. }
  103.  
  104. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  105. end
  106. end
  107. })
  108. Tab:AddToggle({
  109. Name = "Fast gem -only works in city",
  110. Default = false,
  111. Callback = function(Value)
  112. getgenv().loop5 = Value
  113. while getgenv().loop5 == true do
  114. wait(0.000001)
  115. local args = {
  116. [1] = "collectOrb",
  117. [2] = "Gem",
  118. [3] = "City"
  119. }
  120.  
  121. game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  122. end
  123. end
  124. })
  125.  
  126. local Tab = Window:MakeTab({
  127. Name = "Teleports",
  128. Icon = "rbxassetid://4483345998",
  129. PremiumOnly = false
  130. })
  131. Tab:AddButton({
  132. Name = "Teleport to city",
  133. Callback = function()
  134. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-754, 4, 549)
  135. end
  136. })
  137. Tab:AddButton({
  138. Name = "Teleport to snow city",
  139. Callback = function()
  140. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-866, 4, 2165)
  141. end
  142. })
  143. Tab:AddButton({
  144. Name = "Teleport to magma city",
  145. Callback = function()
  146. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1616, 4, 4330)
  147. end
  148. })
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement