Advertisement
BaconhairGamer

Chaos Shop

Oct 4th, 2022 (edited)
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.71 KB | None | 0 0
  1. --Boot
  2. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  3.  
  4. --LocalPlayer
  5. local Player = game.Players.LocalPlayer
  6.  
  7. --Key Window
  8. local KeyWindow = OrionLib:MakeWindow({Name = "Key System", HidePremium = false, SaveConfig = true, IntroText = "Key System" })
  9.  
  10. --Key
  11. _G.Key = "Chaos854704212"
  12. _G.KeyInput = "string"
  13.  
  14.  
  15.  
  16. --Execute Function
  17. function Fling()
  18. --Boot
  19. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  20.  
  21. --Window
  22. local Window = OrionLib:MakeWindow({Name = "Chaos Shop", HidePremium = false, SaveConfig = true, IntroText = "Chaos Shop"})
  23.  
  24. --Script Tab
  25. local ScriptTab = Window:MakeTab({
  26. Name = "Scripts",
  27. Icon = "rbxassetid://4483345998",
  28. PremiumOnly = false
  29. })
  30.  
  31.  
  32. --Section
  33. local ScriptSection = ScriptTab:AddSection({
  34. Name = "Scripts"
  35. })
  36.  
  37.  
  38. --Button
  39. ScriptTab:AddButton({
  40. Name = "Fling",
  41. Callback = function()
  42. loadstring(game:HttpGet("https://raw.githubusercontent.com/BaconhairGamer/Invisible-Fling-Script-Roblox/main/Fling.lua", true))()
  43. OrionLib:MakeNotification({
  44. Name = "Successfully Loaded!",
  45. Content = "The Script Was Executed Successfully!",
  46. Image = "rbxassetid://4483345998",
  47. Time = 5
  48. })
  49. end
  50. })
  51.  
  52.  
  53. --Infinite Yield Button
  54. ScriptTab:AddButton({
  55. Name = "Infinite Yield",
  56. Callback = function()
  57. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  58. OrionLib:MakeNotification({
  59. Name = "Successfully Loaded!",
  60. Content = "The Script Was Executed Successfully!",
  61. Image = "rbxassetid://4483345998",
  62. Time = 5
  63. })
  64. end
  65. })
  66.  
  67.  
  68.  
  69. --Local Tab
  70. local LocalTab = Window:MakeTab({
  71. Name = "Local Player",
  72. Icon = "rbxassetid://4483345998",
  73. PremiumOnly = false
  74. })
  75.  
  76.  
  77. --Local Section
  78. local LocalSection = LocalTab:AddSection({
  79. Name = "LocalPlayer"
  80. })
  81.  
  82. --WalkSpeed
  83. LocalTab:AddSlider({
  84. Name = "WalkSpeed",
  85. Min = 16,
  86. Max = 500,
  87. Default = 16,
  88. Color = Color3.fromRGB(255,255,255),
  89. Increment = 1,
  90. ValueName = "WalkSpeed",
  91. Callback = function(Value)
  92. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = Value
  93. end
  94. })
  95.  
  96.  
  97. --JumpPower
  98. LocalTab:AddSlider({
  99. Name = "JumpPower",
  100. Min = 50,
  101. Max = 500,
  102. Default = 50,
  103. Color = Color3.fromRGB(255,255,255),
  104. Increment = 1,
  105. ValueName = "JumpPower",
  106. Callback = function(Value)
  107. game.Players.LocalPlayer.Character.Humanoid.JumpPower = Value
  108. end
  109. })
  110.  
  111. --Reset Button
  112. LocalTab:AddButton({
  113. Name = "Reset",
  114. Callback = function()
  115. game.Players.LocalPlayer.Character.Humanoid.Health = 0
  116. OrionLib:MakeNotification({
  117. Name = "Successfully Done!",
  118. Content = "The Script Was Successfully Executed",
  119. Image = "rbxassetid://4483345998",
  120. Time = 5
  121. })
  122. end
  123. })
  124.  
  125.  
  126. --Discord Tab
  127. local DiscordTab = Window:MakeTab({
  128. Name = "Discord",
  129. Icon = "rbxassetid://4483345998",
  130. PremiumOnly = false
  131. })
  132.  
  133.  
  134. --Discord Section
  135. local DiscordSection = DiscordTab:AddSection({
  136. Name = "Discord"
  137. })
  138.  
  139.  
  140. --Label
  141. DiscordTab:AddLabel("Discord Server: https://discord.gg/eR55uPdt5M")
  142.  
  143.  
  144. --Label
  145. DiscordTab:AddLabel("Owner: GiaKlamata#1605")
  146. end
  147.  
  148.  
  149. --Correct Function
  150. function CorrectKeyNotify()
  151. OrionLib:MakeNotification({
  152. Name = "Correct Key!",
  153. Content = "Successfully Entered as "..Player.Name.."!",
  154. Image = "rbxassetid://4483345998",
  155. Time = 5
  156. })
  157. end
  158.  
  159.  
  160. --Incorrect Function
  161. function IncorrectKeyNotify()
  162. OrionLib:MakeNotification({
  163. Name = "Incorrect Key!",
  164. Content = "Wrong key",
  165. Image = "rbxassetid://4483345998",
  166. Time = 5
  167. })
  168. end
  169.  
  170.  
  171. --Notify
  172. OrionLib:MakeNotification({
  173. Name = "Logged In!",
  174. Content = "Successfully Logged In as a Guest",
  175. Image = "rbxassetid://4483345998",
  176. Time = 5
  177. })
  178.  
  179.  
  180. --Key Tab
  181. local KeyTab = KeyWindow:MakeTab({
  182. Name = "Key",
  183. Icon = "rbxassetid://4483345998",
  184. PremiumOnly = false
  185. })
  186.  
  187.  
  188. --Key TextBox
  189. KeyTab:AddTextbox({
  190. Name = "Enter Key",
  191. Default = "",
  192. TextDisappear = false,
  193. Callback = function(Value)
  194. _G.KeyInput = Value
  195. end
  196. })
  197.  
  198.  
  199. --Check Key Button
  200. KeyTab:AddButton({
  201. Name = "Check Key",
  202. Callback = function()
  203. if _G.KeyInput == _G.Key then
  204. CorrectKeyNotify()
  205. Fling()
  206. else
  207. IncorrectKeyNotify()
  208. end
  209. end
  210. })
  211.  
  212.  
  213.  
  214. --Discord Tab
  215. local DiscordTab = KeyWindow:MakeTab({
  216. Name = "Discord",
  217. Icon = "rbxassetid://4483345998",
  218. PremiumOnly = false
  219. })
  220.  
  221.  
  222. --Discord Section
  223. local DiscordSection = DiscordTab:AddSection({
  224. Name = "Discord"
  225. })
  226.  
  227.  
  228. --Label
  229. DiscordTab:AddLabel("Discord Server: https://discord.gg/eR55uPdt5M")
  230.  
  231.  
  232. --Label
  233. DiscordTab:AddLabel("Owner: GiaKlamata#1605")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement