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 / Gods Of Glory", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest", IntroText = "Chaos Shop"})
- _G.Rebirth = true
- local function Rebirth()
- while _G.Rebirth == true do
- game.ReplicatedStorage.Remotes.Rebirth:FireServer({})
- wait(.000000000000000000000000000000000000000000000001)
- end
- end
- local MiscTab = Window:MakeTab({
- Name = "Misc",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local Section = MiscTab:AddSection({
- Name = "Mana"
- })
- MiscTab:AddTextbox({
- Name = "Give Mana",
- Default = "",
- TextDisappear = false,
- Callback = function(Value)
- game.ReplicatedStorage.Remotes.GiveMana:FireServer({["Value"] = Value})
- end
- })
- local Section = MiscTab:AddSection({
- Name = "Rebirth"
- })
- MiscTab:AddToggle({
- Name = "Auto Rebirth",
- Default = false,
- Callback = function(Value)
- _G.Rebirth = Value
- Rebirth()
- end
- })
- local LocalTab = Window:MakeTab({
- Name = "LocalPlayer",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- local Section = LocalTab:AddSection({
- Name = "Stats"
- })
- LocalTab:AddSlider({
- Name = "WalkSpeed",
- Min = 16,
- Max = 500,
- Default = 16,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "Speed",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
- end
- })
- LocalTab:AddSlider({
- Name = "JumpPower",
- Min = 50,
- Max = 500,
- Default = 50,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "Power",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
- end
- })
- LocalTab:AddButton({
- Name = "Reset Stats",
- Callback = function()
- game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
- game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
- end
- })
- local Section = LocalTab:AddSection({
- Name = "Other"
- })
- LocalTab:AddSlider({
- Name = "Health",
- Min = 0,
- Max = 100,
- Default = 100,
- Color = Color3.fromRGB(255,255,255),
- Increment = 1,
- ValueName = "Health",
- Callback = function(Value)
- game.Players.LocalPlayer.Character.Humanoid.Health = Value
- end
- })
- LocalTab:AddButton({
- Name = "Heal",
- Callback = function()
- game.Players.LocalPlayer.Character.Humanoid.Health = 100
- end
- })
- --Discord Tab
- local DiscordTab = Window:MakeTab({
- Name = "Discord",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- --Discord Section
- local DiscordSection = DiscordTab:AddSection({
- Name = "Discord"
- })
- --Label
- DiscordTab:AddLabel("Discord Server: https://discord.gg/eR55uPdt5M")
- --Label
- DiscordTab:AddLabel("Owner: GiaKlamata#1605")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement