Advertisement
BaconhairGamer

Chaos Shop / Gods Of Glory

Oct 26th, 2022
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({Name = "Chaos Shop / Gods Of Glory", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest", IntroText = "Chaos Shop"})
  4.  
  5. _G.Rebirth = true
  6.  
  7.  
  8. local function Rebirth()
  9. while _G.Rebirth == true do
  10. game.ReplicatedStorage.Remotes.Rebirth:FireServer({})
  11. wait(.000000000000000000000000000000000000000000000001)
  12. end
  13. end
  14.  
  15.  
  16. local MiscTab = Window:MakeTab({
  17. Name = "Misc",
  18. Icon = "rbxassetid://4483345998",
  19. PremiumOnly = false
  20. })
  21.  
  22. local Section = MiscTab:AddSection({
  23. Name = "Mana"
  24. })
  25.  
  26. MiscTab:AddTextbox({
  27. Name = "Give Mana",
  28. Default = "",
  29. TextDisappear = false,
  30. Callback = function(Value)
  31. game.ReplicatedStorage.Remotes.GiveMana:FireServer({["Value"] = Value})
  32. end
  33. })
  34.  
  35. local Section = MiscTab:AddSection({
  36. Name = "Rebirth"
  37. })
  38.  
  39.  
  40. MiscTab:AddToggle({
  41. Name = "Auto Rebirth",
  42. Default = false,
  43. Callback = function(Value)
  44. _G.Rebirth = Value
  45.  
  46. Rebirth()
  47. end
  48. })
  49.  
  50.  
  51.  
  52.  
  53. local LocalTab = Window:MakeTab({
  54. Name = "LocalPlayer",
  55. Icon = "rbxassetid://4483345998",
  56. PremiumOnly = false
  57. })
  58.  
  59.  
  60. local Section = LocalTab:AddSection({
  61. Name = "Stats"
  62. })
  63.  
  64.  
  65.  
  66.  
  67. LocalTab:AddSlider({
  68. Name = "WalkSpeed",
  69. Min = 16,
  70. Max = 500,
  71. Default = 16,
  72. Color = Color3.fromRGB(255,255,255),
  73. Increment = 1,
  74. ValueName = "Speed",
  75. Callback = function(Value)
  76. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  77. end
  78. })
  79.  
  80. LocalTab:AddSlider({
  81. Name = "JumpPower",
  82. Min = 50,
  83. Max = 500,
  84. Default = 50,
  85. Color = Color3.fromRGB(255,255,255),
  86. Increment = 1,
  87. ValueName = "Power",
  88. Callback = function(Value)
  89. game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  90. end
  91. })
  92.  
  93. LocalTab:AddButton({
  94. Name = "Reset Stats",
  95. Callback = function()
  96. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  97. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  98. end
  99. })
  100.  
  101. local Section = LocalTab:AddSection({
  102. Name = "Other"
  103. })
  104.  
  105.  
  106. LocalTab:AddSlider({
  107. Name = "Health",
  108. Min = 0,
  109. Max = 100,
  110. Default = 100,
  111. Color = Color3.fromRGB(255,255,255),
  112. Increment = 1,
  113. ValueName = "Health",
  114. Callback = function(Value)
  115. game.Players.LocalPlayer.Character.Humanoid.Health = Value
  116. end
  117. })
  118.  
  119.  
  120. LocalTab:AddButton({
  121. Name = "Heal",
  122. Callback = function()
  123. game.Players.LocalPlayer.Character.Humanoid.Health = 100
  124. end
  125. })
  126.  
  127.  
  128. --Discord Tab
  129. local DiscordTab = Window:MakeTab({
  130. Name = "Discord",
  131. Icon = "rbxassetid://4483345998",
  132. PremiumOnly = false
  133. })
  134.  
  135.  
  136. --Discord Section
  137. local DiscordSection = DiscordTab:AddSection({
  138. Name = "Discord"
  139. })
  140.  
  141.  
  142. --Label
  143. DiscordTab:AddLabel("Discord Server: https://discord.gg/eR55uPdt5M")
  144.  
  145.  
  146. --Label
  147. DiscordTab:AddLabel("Owner: GiaKlamata#1605")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement