Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
- local Window = OrionLib:MakeWindow({Name = "Chaos Shop / Legends Of Speed", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest", IntroText = "Chaos"})
- _G.Steps = true
- _G.Gems = true
- _G.Rebirth = true
- --Functions
- local function Steps()
- while _G.Steps == true do
- game.ReplicatedStorage.rEvents.orbEvent:FireServer("collectOrb","Red Orb","City")
- wait(.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001)
- end
- end
- local function XP()
- while _G.XP == true do
- game.ReplicatedStorage.rEvents.orbEvent:FireServer("collectOrb","Yellow Orb","City")
- wait(.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001)
- end
- end
- local function Gems()
- while _G.Gems == true do
- game.ReplicatedStorage.rEvents.orbEvent:FireServer("collectOrb","Gem","City")
- wait(.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001)
- end
- end
- local function Rebirth()
- while _G.Rebirth == true do
- game.ReplicatedStorage.rEvents.rebirthEvent:FireServer("rebirthRequest")
- wait(.00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001)
- end
- end
- local FarmTab = Window:MakeTab({
- Name = "AutoFarm",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local StepsSection = FarmTab:AddSection({
- Name = "Steps"
- })
- FarmTab:AddToggle({
- Name = "Farm Steps",
- Default = false,
- Callback = function(Value)
- _G.Steps = Value
- Steps()
- end
- })
- local GemsSection = FarmTab:AddSection({
- Name = "Gems"
- })
- FarmTab:AddToggle({
- Name = "Farm Gems",
- Default = false,
- Callback = function(Value)
- _G.Gems = Value
- Gems()
- end
- })
- local RebirthSection = FarmTab:AddSection({
- Name = "Rebirths"
- })
- FarmTab:AddToggle({
- Name = "Auto Rebirth",
- Default = false,
- Callback = function(Value)
- _G.Rebirth = Value
- Rebirth()
- end
- })
- local XPSection = FarmTab:AddSection({
- Name = "XP"
- })
- FarmTab:AddToggle({
- Name = "Farm XP",
- Default = false,
- Callback = function(Value)
- _G.XP = Value
- XP()
- end
- })
- local PetsTab = Window:MakeTab({
- Name = "Pets",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local OpenSection = PetsTab:AddSection({
- Name = "Crystals"
- })
- PetsTab:AddDropdown({
- Name = "Crystal Type",
- Default = "1",
- Options = {"Blue Crystal", "Red Crystal", "Purple Crystal", "Lightning Crystal", "Snow Crystal", "Lava Crystal", "Yellow Crystal", "Electro Legends Crystal", "Inferno Crystal"},
- Callback = function(Value)
- game.ReplicatedStorage.rEvents.openCrystalRemote:InvokeServer("openCrystal",""..Value.."")
- end
- })
- local EvolveSection = PetsTab:AddSection({
- Name = "Evolve Pets"
- })
- PetsTab:AddTextbox({
- Name = "Evolve Pet",
- Default = "",
- TextDisappear = false,
- Callback = function(Value)
- game.ReplicatedStorage.rEvents.petEvolveEvent:FireServer("evolvePet",""..Value.."")
- end
- })
- local LocalTab = Window:MakeTab({
- Name = "LocalPlayer",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local LocalSection = LocalTab:AddSection({
- Name = "Stats"
- })
- LocalTab:AddTextbox({
- Name = "WalkSpeed",
- Default = "",
- TextDisappear = false,
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
- end
- })
- LocalTab:AddTextbox({
- Name = "JumpPower",
- Default = "",
- TextDisappear = false,
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
- end
- })
- LocalTab:AddButton({
- Name = "Reset",
- Callback = function()
- game.Players.LocalPlayer.Character.Humanoid.Health = 0
- end
- })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement