Advertisement
BaconhairGamer

Roblox but every second you get +1 Jump Power / Chaos Shop

Oct 20th, 2022
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.11 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 / Jump Power +1", HidePremium = false, SaveConfig = true, ConfigFolder = "Chaos", IntroText = "Chaos Shop"})
  5.  
  6. plr = game.Players.LocalPlayer
  7.  
  8.  
  9.  
  10. OrionLib:MakeNotification({
  11. Name = "Logged In!",
  12. Content = "Successfully Logged In As "..plr.Name,
  13. Image = "rbxassetid://4483345998",
  14. Time = 5
  15. })
  16.  
  17.  
  18.  
  19. local LocalTab = Window:MakeTab({
  20. Name = "LocalPlayer",
  21. Icon = "rbxassetid://4483345998",
  22. PremiumOnly = false
  23. })
  24.  
  25.  
  26. local Section = LocalTab:AddSection({
  27. Name = "Stats"
  28. })
  29.  
  30. LocalTab:AddSlider({
  31. Name = "WalkSpeed",
  32. Min = 16,
  33. Max = 500,
  34. Default = 16,
  35. Color = Color3.fromRGB(255,255,255),
  36. Increment = 1,
  37. ValueName = "Speed",
  38. Callback = function(Value)
  39. plr.Character.Humanoid.WalkSpeed = Value
  40. end
  41. })
  42.  
  43.  
  44. LocalTab:AddSlider({
  45. Name = "JumpPower",
  46. Min = 50,
  47. Max = 1000000,
  48. Default = 50,
  49. Color = Color3.fromRGB(255,255,255),
  50. Increment = 1,
  51. ValueName = "Jump",
  52. Callback = function(Value)
  53. plr.Character.Humanoid.JumpPower = Value
  54. end
  55. })
  56.  
  57.  
  58. LocalTab:AddButton({
  59. Name = "Reset Stats",
  60. Callback = function()
  61. plr.Character.Humanoid.WalkSpeed = 16
  62. plr.Character.Humanoid.JumpPower = 50
  63. end
  64. })
  65.  
  66.  
  67. local Section = LocalTab:AddSection({
  68. Name = "General"
  69. })
  70.  
  71.  
  72. LocalTab:AddButton({
  73. Name = "Reset",
  74. Callback = function()
  75. plr.Character.Humanoid.Health = 0
  76. end
  77. })
  78.  
  79.  
  80. LocalTab:AddButton({
  81. Name = "Auto Win",
  82. Callback = function()
  83. game.Workspace.ReBabouine.HumanoidRootPart:MoveTo(game.Workspace.Union.Position.Value)
  84. end
  85. })
  86.  
  87.  
  88.  
  89. local ItemsTab = Window:MakeTab({
  90. Name = "Items",
  91. Icon = "rbxassetid://4483345998",
  92. PremiumOnly = false
  93. })
  94.  
  95.  
  96. local Section = ItemsTab:AddSection({
  97. Name = "Give Items"
  98. })
  99.  
  100. ItemsTab:AddButton({
  101. Name = "Hamburger",
  102. Callback = function()
  103. game.ReplicatedStorage.ToolEvents.HamburgerEvent:FireServer()
  104. OrionLib:MakeNotification({
  105. Name = "Item",
  106. Content = "Successfully Gave Hamburger!",
  107. Image = "rbxassetid://4483345998",
  108. Time = 5
  109. })
  110. end
  111. })
  112.  
  113.  
  114. ItemsTab:AddButton({
  115. Name = "Bloxy Cola",
  116. Callback = function()
  117. game.ReplicatedStorage.ToolEvents.BloxyColaEvent:FireServer()
  118. OrionLib:MakeNotification({
  119. Name = "Item",
  120. Content = "Successfully Gave Bloxy Cola!",
  121. Image = "rbxassetid://4483345998",
  122. Time = 5
  123. })
  124. end
  125. })
  126.  
  127.  
  128.  
  129. ItemsTab:AddButton({
  130. Name = "Speed Coil",
  131. Callback = function()
  132. game.ReplicatedStorage.ToolEvents.SpeedCoilEvent:FireServer()
  133. OrionLib:MakeNotification({
  134. Name = "Item",
  135. Content = "Successfully Gave Speed Coil!",
  136. Image = "rbxassetid://4483345998",
  137. Time = 5
  138. })
  139. end
  140. })
  141.  
  142.  
  143.  
  144. ItemsTab:AddButton({
  145. Name = "Spray",
  146. Callback = function()
  147. game.ReplicatedStorage.ToolEvents.SprayEvent:FireServer()
  148. OrionLib:MakeNotification({
  149. Name = "Item",
  150. Content = "Successfully Gave Spray!",
  151. Image = "rbxassetid://4483345998",
  152. Time = 5
  153. })
  154. end
  155. })
  156.  
  157.  
  158.  
  159. ItemsTab:AddButton({
  160. Name = "Saxophone",
  161. Callback = function()
  162. game.ReplicatedStorage.ToolEvents.SaxophoneEvent:FireServer()
  163. OrionLib:MakeNotification({
  164. Name = "Item",
  165. Content = "Successfully Gave Saxophone!",
  166. Image = "rbxassetid://4483345998",
  167. Time = 5
  168. })
  169. end
  170. })
  171.  
  172.  
  173.  
  174. ItemsTab:AddButton({
  175. Name = "Radio",
  176. Callback = function()
  177. game.ReplicatedStorage.ToolEvents.RadioEvent:FireServer()
  178. OrionLib:MakeNotification({
  179. Name = "Item",
  180. Content = "Successfully Gave Radio!",
  181. Image = "rbxassetid://4483345998",
  182. Time = 5
  183. })
  184. end
  185. })
  186.  
  187.  
  188. --Discord Tab
  189. local DiscordTab = Window:MakeTab({
  190. Name = "Discord",
  191. Icon = "rbxassetid://4483345998",
  192. PremiumOnly = false
  193. })
  194.  
  195.  
  196. --Discord Section
  197. local DiscordSection = DiscordTab:AddSection({
  198. Name = "Discord"
  199. })
  200.  
  201.  
  202. --Label
  203. DiscordTab:AddLabel("Discord Server: https://discord.gg/eR55uPdt5M")
  204.  
  205.  
  206. --Label
  207. DiscordTab:AddLabel("Owner: GiaKlamata#1605")
  208.  
  209.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement