Advertisement
BaconhairGamer

Legends Of Speed / Chaos Shop

Oct 20th, 2022
3,376
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.34 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3.  
  4. local Window = OrionLib:MakeWindow({Name = "Chaos Shop / Legends Of Speed", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest", IntroText = "Chaos"})
  5.  
  6.  
  7.  
  8. _G.Steps = true
  9. _G.Gems = true
  10. _G.Rebirth = true
  11.  
  12.  
  13. --Functions
  14. local function Steps()
  15. while _G.Steps == true do
  16. game.ReplicatedStorage.rEvents.orbEvent:FireServer("collectOrb","Red Orb","City")
  17. wait(.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001)
  18. end
  19. end
  20.  
  21.  
  22. local function XP()
  23. while _G.XP == true do
  24. game.ReplicatedStorage.rEvents.orbEvent:FireServer("collectOrb","Yellow Orb","City")
  25. wait(.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001)
  26. end
  27. end
  28.  
  29.  
  30.  
  31. local function Gems()
  32. while _G.Gems == true do
  33. game.ReplicatedStorage.rEvents.orbEvent:FireServer("collectOrb","Gem","City")
  34. wait(.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001)
  35. end
  36. end
  37.  
  38.  
  39. local function Rebirth()
  40. while _G.Rebirth == true do
  41. game.ReplicatedStorage.rEvents.rebirthEvent:FireServer("rebirthRequest")
  42. wait(.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001)
  43. end
  44. end
  45.  
  46.  
  47.  
  48. local FarmTab = Window:MakeTab({
  49. Name = "AutoFarm",
  50. Icon = "rbxassetid://4483345998",
  51. PremiumOnly = false
  52. })
  53.  
  54.  
  55.  
  56. local StepsSection = FarmTab:AddSection({
  57. Name = "Steps"
  58. })
  59.  
  60.  
  61.  
  62. FarmTab:AddToggle({
  63. Name = "Farm Steps",
  64. Default = false,
  65. Callback = function(Value)
  66. _G.Steps = Value
  67. Steps()
  68. end
  69. })
  70.  
  71.  
  72.  
  73. local GemsSection = FarmTab:AddSection({
  74. Name = "Gems"
  75. })
  76.  
  77.  
  78.  
  79. FarmTab:AddToggle({
  80. Name = "Farm Gems",
  81. Default = false,
  82. Callback = function(Value)
  83. _G.Gems = Value
  84. Gems()
  85. end
  86. })
  87.  
  88.  
  89.  
  90. local RebirthSection = FarmTab:AddSection({
  91. Name = "Rebirths"
  92. })
  93.  
  94.  
  95. FarmTab:AddToggle({
  96. Name = "Auto Rebirth",
  97. Default = false,
  98. Callback = function(Value)
  99. _G.Rebirth = Value
  100. Rebirth()
  101. end
  102. })
  103.  
  104.  
  105. local XPSection = FarmTab:AddSection({
  106. Name = "XP"
  107. })
  108.  
  109.  
  110. FarmTab:AddToggle({
  111. Name = "Farm XP",
  112. Default = false,
  113. Callback = function(Value)
  114. _G.XP = Value
  115. XP()
  116. end
  117. })
  118.  
  119.  
  120.  
  121. local PetsTab = Window:MakeTab({
  122. Name = "Pets",
  123. Icon = "rbxassetid://4483345998",
  124. PremiumOnly = false
  125. })
  126.  
  127.  
  128. local OpenSection = PetsTab:AddSection({
  129. Name = "Crystals"
  130. })
  131.  
  132.  
  133.  
  134. PetsTab:AddDropdown({
  135. Name = "Crystal Type",
  136. Default = "1",
  137. Options = {"Blue Crystal", "Red Crystal", "Purple Crystal", "Lightning Crystal", "Snow Crystal", "Lava Crystal", "Yellow Crystal", "Electro Legends Crystal", "Inferno Crystal"},
  138. Callback = function(Value)
  139. game.ReplicatedStorage.rEvents.openCrystalRemote:InvokeServer("openCrystal",""..Value.."")
  140. end
  141. })
  142.  
  143. local EvolveSection = PetsTab:AddSection({
  144. Name = "Evolve Pets"
  145. })
  146.  
  147.  
  148.  
  149.  
  150. PetsTab:AddTextbox({
  151. Name = "Evolve Pet",
  152. Default = "",
  153. TextDisappear = false,
  154. Callback = function(Value)
  155. game.ReplicatedStorage.rEvents.petEvolveEvent:FireServer("evolvePet",""..Value.."")
  156. end
  157. })
  158.  
  159.  
  160.  
  161.  
  162. local LocalTab = Window:MakeTab({
  163. Name = "LocalPlayer",
  164. Icon = "rbxassetid://4483345998",
  165. PremiumOnly = false
  166. })
  167.  
  168.  
  169.  
  170. local LocalSection = LocalTab:AddSection({
  171. Name = "Stats"
  172. })
  173.  
  174.  
  175.  
  176. LocalTab:AddTextbox({
  177. Name = "WalkSpeed",
  178. Default = "",
  179. TextDisappear = false,
  180. Callback = function(Value)
  181. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  182. end
  183. })
  184.  
  185.  
  186. LocalTab:AddTextbox({
  187. Name = "JumpPower",
  188. Default = "",
  189. TextDisappear = false,
  190. Callback = function(Value)
  191. game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  192. end
  193. })
  194.  
  195.  
  196.  
  197.  
  198. LocalTab:AddButton({
  199. Name = "Reset",
  200. Callback = function()
  201. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  202. end
  203. })
  204.  
  205.  
  206.  
  207. --Discord Tab
  208. local DiscordTab = Window:MakeTab({
  209. Name = "Discord",
  210. Icon = "rbxassetid://4483345998",
  211. PremiumOnly = false
  212. })
  213.  
  214.  
  215. --Discord Section
  216. local DiscordSection = DiscordTab:AddSection({
  217. Name = "Discord"
  218. })
  219.  
  220.  
  221. --Label
  222. DiscordTab:AddLabel("Discord Server: https://discord.gg/eR55uPdt5M")
  223.  
  224.  
  225. --Label
  226. DiscordTab:AddLabel("Owner: GiaKlamata#1605")
  227.  
  228.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement