Yingyang005

Demon blade V2

Dec 3rd, 2024 (edited)
754
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 32.66 KB | None | 0 0
  1. --[[
  2. Demonic Hub Loader
  3. This script is now open-source as of 11/21/2024.
  4. Join our Discord: https://dsc.gg/demonichubv2
  5. --]]
  6.  
  7.  
  8. -- Fluent -> Progress translator hook
  9. -- (yeah ik, lazy ahh hook but if it ain't broke don't fix it)
  10. local f2p
  11. local function LoadFluentHook()
  12. local fluentWatermark = "--[[\r\n Fluent Interface Suite\r\n This script is not intended to be modified.\r\n To view the source code, see the 'src' folder on GitHub!\r\n\r\n Author: dawid\r\n License: MIT\r\n GitHub: https://github.com/dawid-scripts/Fluent\r\n--]]"
  13.  
  14. local oldLoadstring = loadstring
  15. loadstring = function(...)
  16. local scriptStr = ...
  17. if string.find(scriptStr, fluentWatermark, 1, true) then
  18. return f2p
  19. end
  20. return oldLoadstring(...)
  21. end
  22. end
  23.  
  24. local GuiOfChoice
  25. local ClipboardFunc = setclipboard or toclipboard or set_clipboard or Clipboard and Clipboard.set or CopyString
  26.  
  27.  
  28. local function LoadHub()
  29. -- Yeah this thing (ER:LC) - has to be in the loader for... reasons.
  30. if game.PlaceId == 2534724415 then
  31. if getgenv().Bypassed == nil then
  32. getgenv().Bypassed = true
  33. local part = Instance.new("Part", game.Workspace)
  34. part.Anchored = true
  35. part.CFrame = CFrame.new(Vector3.new(-462, 12, -444))
  36. part.Size = Vector3.new(100, 1, 100)
  37.  
  38. local ScriptContext = game:GetService("ScriptContext")
  39.  
  40. for i,v in pairs(getconnections(ScriptContext.Error)) do
  41. v:Disable()
  42. end
  43.  
  44. local network = game.ReplicatedStorage.Modules.Network
  45.  
  46. old = hookmetamethod(game, "__index",function(key, value)
  47. if getcallingscript() == network then
  48. return delay(math.huge())
  49. end
  50.  
  51. return old(key, value)
  52. end)
  53. end
  54. end
  55.  
  56.  
  57. -- Create loading screen
  58. local TweenService = game:GetService("TweenService")
  59.  
  60. local LoaderGui = Instance.new("ScreenGui")
  61. LoaderGui.Parent = game.CoreGui
  62. LoaderGui.Name = "Loader"
  63. local LoaderBg = Instance.new("Frame")
  64. LoaderBg.Size = UDim2.fromOffset(400, 200)
  65. LoaderBg.Position = UDim2.fromScale(0.5, 0.5)
  66. LoaderBg.AnchorPoint = Vector2.one * 0.5 -- todo: benchmark
  67. LoaderBg.BackgroundTransparency = 0.25
  68. LoaderBg.ClipsDescendants = true
  69. Instance.new("UICorner", LoaderBg)
  70. LoaderBg.Parent = LoaderGui
  71. local SexyGradient = Instance.new("UIGradient")
  72. SexyGradient.Color = ColorSequence.new({
  73. ColorSequenceKeypoint.new(0, Color3.new(1, 0, 0.5)),
  74. ColorSequenceKeypoint.new(1, Color3.new(1, 0.5, 0))
  75. })
  76. SexyGradient.Rotation = 90
  77. SexyGradient.Parent = LoaderBg
  78. local HubLogo = Instance.new("ImageLabel")
  79. HubLogo.Size = UDim2.fromOffset(100, 100)
  80. HubLogo.Image = "rbxassetid://16755289922"
  81. HubLogo.Position = UDim2.fromScale(0.5, 0.5)
  82. HubLogo.AnchorPoint = Vector2.one * 0.5 -- todo: benchmark
  83. HubLogo.BackgroundTransparency = 1
  84. HubLogo.Parent = LoaderBg
  85. local HubText = Instance.new("TextLabel")
  86. HubText.Size = UDim2.fromScale(1, 1)
  87. HubText.Text = "<b>Demonic</b> Hub"
  88. HubText.RichText = true
  89. HubText.TextSize = 40
  90. HubText.Font = Enum.Font.Montserrat
  91. HubText.TextColor3 = Color3.new(1, 1, 1)
  92. HubText.Position = UDim2.fromScale(0.5, 0.5)
  93. HubText.AnchorPoint = Vector2.one * 0.5 -- todo: benchmark
  94. HubText.BackgroundTransparency = 1
  95. HubText.TextTransparency = 1
  96. HubText.Parent = LoaderBg
  97. local TopLabel = Instance.new("TextLabel")
  98. TopLabel.Size = UDim2.new(1, 0, 0, 50)
  99. TopLabel.Text = "Loading..."
  100. TopLabel.TextSize = 14
  101. TopLabel.FontFace = Font.new("rbxasset://fonts/families/Montserrat.json", Enum.FontWeight.Bold)
  102. TopLabel.TextColor3 = Color3.new(1, 1, 1)
  103. TopLabel.BackgroundTransparency = 1
  104. TopLabel.Parent = LoaderBg
  105. local BotLabel = Instance.new("TextLabel")
  106. BotLabel.Size = UDim2.new(1, 0, 0, 50)
  107. BotLabel.Position = UDim2.fromScale(0, 1)
  108. BotLabel.AnchorPoint = Vector2.yAxis
  109. BotLabel.Text = ({
  110. "Greetings, mortal!",
  111. "Warming up...",
  112. "Join our Discord! dsc.gg/demonichubv2",
  113. "Hell-o there!",
  114. "Unleashing the demons..."
  115. })[math.random(1, 5)]
  116. BotLabel.TextSize = 14
  117. BotLabel.FontFace = Font.new("rbxasset://fonts/families/Montserrat.json", Enum.FontWeight.Bold)
  118. BotLabel.TextColor3 = Color3.new(1, 1, 1)
  119. BotLabel.BackgroundTransparency = 1
  120. BotLabel.Parent = LoaderBg
  121. local ProgressBarClip = Instance.new("Frame")
  122. ProgressBarClip.BackgroundTransparency = 1
  123. ProgressBarClip.Size = UDim2.new(1, 0, 0, 8)
  124. ProgressBarClip.ClipsDescendants = true
  125. ProgressBarClip.Parent = LoaderBg
  126. local ProgressBar = Instance.new("Frame")
  127. ProgressBar.BackgroundColor3 = Color3.new(1, 0, 0.5)
  128. --ProgressBar.Size = UDim2.fromScale(0, 2)
  129. Instance.new("UICorner", ProgressBar)
  130. ProgressBar.Parent = ProgressBarClip
  131.  
  132. TweenService:Create(HubLogo, TweenInfo.new(4, Enum.EasingStyle.Back, Enum.EasingDirection.In, -1, true), {ImageTransparency = 10}):Play()
  133. TweenService:Create(HubText, TweenInfo.new(4, Enum.EasingStyle.Back, Enum.EasingDirection.In, -1, true), {TextTransparency = -10}):Play()
  134.  
  135.  
  136. -- Load the assets
  137. --[[
  138. At minimum 3 scripts without key sys:
  139. Demonic UI Library
  140. Fluent -> Demonic UI Translator (if applicable)
  141. This Game's Script
  142.  
  143. At minimum 5 scripts with key sys:
  144. Notify Module
  145. Panda-Pelican Key System
  146. Demonic UI Library
  147. Fluent -> Demonic UI Translator (if applicable)
  148. This Game's Script
  149. --]]
  150.  
  151. local Games = { -- Old games with legacy UI are here
  152. [3367801828] = "https://raw.githubusercontent.com/Alan0947383/Starving-Artist/main/Protected_5961203781966799.lua.txt",
  153. [4924516231] = "https://raw.githubusercontent.com/Alan0947383/Si/main/%C3%91eje",
  154. [4850069859] = "https://raw.githubusercontent.com/Alan0947383/Coemssjsns/main/Protected_2681690995407557.lua.txt",
  155. [2463681758] = "https://raw.githubusercontent.com/Alan0947383/Coemssjsns/main/Protected_1657187750888170.lua.txt",
  156. [4290156271] = "https://raw.githubusercontent.com/Alan0947383/Coemssjsns/main/Protected_4925462867409545.lua.txt",
  157. [3967853925] = "https://raw.githubusercontent.com/Alan0947383/Coemssjsns/main/Protected_8283385440560045.lua.txt",
  158. [4777817887] = "https://raw.githubusercontent.com/Alan0947383/Si/main/Protected_3057554732589237.lua.txt",
  159. [4891819020] = "https://raw.githubusercontent.com/Alan0947383/Coemssjsns/main/Protected_3406929768708524.lua.txt",
  160. [1176784616] = "https://raw.githubusercontent.com/Alan0947383/Coemssjsns/main/Protected_9180159468363336.lua.txt",
  161. [5004586661] = "https://raw.githubusercontent.com/Alan0947383/Coemssjsns/main/Protected_8275630821642050.lua.txt",
  162. [3825332406] = "https://raw.githubusercontent.com/Alan0947383/Important2/main/Protected_8681698493352034.lua.txt",
  163. [1268927906] = "https://raw.githubusercontent.com/Alan0947383/Coemssjsns/main/Protected_4660097557401688.lua.txt",
  164. [5084346631] = "https://raw.githubusercontent.com/Alan0947383/Sceipt/main/Protected_6104127350297687.lua.txt",
  165. [4966177615] = "https://raw.githubusercontent.com/Alan0947383/Coems/main/Protected_8381859233335395.lua.txt",
  166. [3476371299] = "https://raw.githubusercontent.com/Alan0947383/Starving-Artist/main/Protected_7100361731424888.lua.txt",
  167. [4740395866] = "https://raw.githubusercontent.com/Alan0947383/Sceipt/main/Protected_8372297767879308.lua.txt",
  168. [5133949457] = "https://raw.githubusercontent.com/Alan0947383/NOBRO/main/Protected_1171215695658233.lua.txt",
  169. [2795379888] = "https://raw.githubusercontent.com/Alan0947383/Daddy-dad/main/Protected_8938208422607303.lua.txt",
  170. [5092677388] = "https://raw.githubusercontent.com/Alan0947383/Important2/main/Tx3Obf_1655.lua.txt",
  171. [1119466531] = "https://raw.githubusercontent.com/Alan0947383/Script/main/Protected_1136044717756863.lua.txt",
  172. [3437355615] = "https://raw.githubusercontent.com/Alan0947383/NOBRO/main/Protected_4650768380869194.lua.txt",
  173. [4997576846] = "https://raw.githubusercontent.com/Alan0947383/Si/main/Protected_8656464779741282.lua.txt",
  174. [279565647] = "https://raw.githubusercontent.com/Alan0947383/Important2/main/Protected_4965359631779267.lua.txt",
  175. [1720936166] = "https://raw.githubusercontent.com/Alan0947383/Important2/main/Protected_8603934828393872.lua.txt",
  176. [4795326392] = "https://raw.githubusercontent.com/Alan0947383/Important2/main/Protected_8002148043809685.lua.txt",
  177. [5369041526] = "https://raw.githubusercontent.com/Alan0947383/Webiwabo/main/Protected_2316481146645602.lua.txt",
  178. [5315788173] = "https://raw.githubusercontent.com/Alan0947383/Sceipt/main/Protected_9420288731611243.lua.txt",
  179. [5263201286] = "https://raw.githubusercontent.com/Alan0947383/Webiwabo/main/Protected_5534351083085459.lua.txt",
  180. [5454107027] = "https://raw.githubusercontent.com/Alan0947383/E/main/Protected_3692448943322290.lua.txt",
  181. [5184742769] = "https://raw.githubusercontent.com/Alan0947383/Coemssjsns/main/Protected_5085697523046855.lua.txt",
  182. [5300677688] = "https://raw.githubusercontent.com/Alan0947383/Daddy/main/Protected_9635750815542599.lua.txt",
  183. [5510084750] = "https://raw.githubusercontent.com/Alan0947383/Coems/main/Protected_7870413447301490.lua.txt",
  184. [5379493222] = "https://raw.githubusercontent.com/Alan0947383/Web/main/Protected_4754294343286402.lua.txt",
  185. [5650953811] = "https://raw.githubusercontent.com/Alan0947383/Nrezgam/main/Protected_9762347694916566.lua.txt",
  186. [5504560478] = "https://raw.githubusercontent.com/Alan0947383/Nrezgam/main/Protected_4785523856894885.lua.txt",
  187. [5944511907] = "https://raw.githubusercontent.com/Alan0947383/Nrezgam/main/Protected_3432066847523166.lua.txt",
  188. [5591160428] = "https://raw.githubusercontent.com/Alan0947383/Sceipt/main/Protected_9531557592417844.lua.txt",
  189. [5252919404] = "https://raw.githubusercontent.com/Alan0947383/Coems/main/Protected_1522750820094663.lua.txt",
  190. [2331157949] = "https://raw.githubusercontent.com/Alan0947383/DadSponso/main/Protected_3569063412811514.lua.txt",
  191. [66654135] = "https://raw.githubusercontent.com/Alan0947383/Daddy-dad/main/Protected_2229840851576053.lua.txt",
  192. [1526814825] = "https://raw.githubusercontent.com/Alan0947383/Quantumix-Networks/main/Protected_4205650682104571.lua%20(1).txt",
  193. [4438020625] = "https://raw.githubusercontent.com/Alan0947383/Starving-Artist/main/Protected_9958818432885059.lua.txt",
  194. [4984260245] = "https://raw.githubusercontent.com/Alan0947383/Games/main/Protected_6382869324058001.lua.txt",
  195. [5188624491] = "https://raw.githubusercontent.com/Alan0947383/Games/main/Protected_8846464779210284.lua.txt",
  196. [5440820902] = "https://raw.githubusercontent.com/Alan0947383/Daddy-dad/main/Protected_4283656671627086.lua.txt",
  197. [3164075108] = "https://raw.githubusercontent.com/Alan0947383/Games/main/Protected_5825508269241309.lua.txt",
  198. [2426874309] = "https://raw.githubusercontent.com/Alan0947383/Si/main/Protected_7825987766784382.lua.txt",
  199. [903807016] = "https://raw.githubusercontent.com/Alan0947383/Quantumix-Networks/main/Protected_3263222660280185.lua.txt",
  200. [1415710834] = "https://raw.githubusercontent.com/Alan0947383/Quantumix-Networks/main/Protected_2313122183703587.lua.txt",
  201. [5405139138] = "https://raw.githubusercontent.com/Alan0947383/Quantumix-Networks/main/Protected_7294437628503856.lua.txt",
  202. [5732570193] = "https://raw.githubusercontent.com/Alan0947383/Starving-Artist/main/Protected_6388934473431519.lua.txt",
  203. [4012406005] = "https://raw.githubusercontent.com/Alan0947383/Quantumix-Networks/main/Protected_2558554299247274.lua.txt",
  204. [2382284116] = "https://raw.githubusercontent.com/Alan0947383/Games/main/Protected_5934247617138625.lua.txt",
  205. [1776914212] = "https://raw.githubusercontent.com/Alan0947383/Quantumix-Networks/main/Protected_5738090012004114.lua.txt",
  206. [5690744826] = "https://raw.githubusercontent.com/Alan0947383/Quantumix-Networks/main/Protected_8645852491926860.lua.txt",
  207. [1160789089] = "https://raw.githubusercontent.com/Alan0947383/Coems/main/Protected_6432195520995751.lua.txt",
  208. [1888174103] = "https://raw.githubusercontent.com/Alan0947383/Games/main/Protected_4137266859943316.lua.txt",
  209. [2114144926] = "https://raw.githubusercontent.com/Alan0947383/Coems/main/Protected_8502550453694657.lua.txt",
  210. [4592143244] = "https://raw.githubusercontent.com/Alan0947383/Quantumix-Networks/main/Protected_1385121065062812.lua.txt",
  211. [4444526080] = "https://raw.githubusercontent.com/Alan0947383/Quantumix-Networks/main/Protected_3517075793996011.lua.txt",
  212. [5655637737] = "https://raw.githubusercontent.com/Alan0947383/Batman/main/Protected_8297489647252768.lua.txt",
  213. [5527053167] = "https://raw.githubusercontent.com/Alan0947383/Coems/main/Protected_3786209983794885.lua.txt",
  214. [5650396773] = "https://raw.githubusercontent.com/Alan0947383/Sceipt/main/Protected_2422444589943913.lua.txt",
  215. [5638624623] = "https://raw.githubusercontent.com/Alan0947383/Batman/main/Protected_5245377241908856.lua.txt",
  216. [1016936714] = "https://raw.githubusercontent.com/Alan0947383/Games/main/Protected_6572093315327546.lua.txt",
  217. [5321619756] = "https://raw.githubusercontent.com/Alan0947383/NOBRO/main/Protected_2679138632601495.lua.txt",
  218. [5690246134] = "https://raw.githubusercontent.com/Alan0947383/Coems/main/Protected_8453009989022232.lua.txt",
  219. [3256689155] = "https://raw.githubusercontent.com/Alan0947383/DadSponso/main/Luable-Obfuscator_Verion-Encryption_Id-1227523790196445218.lua.txt",
  220. [5677613211] = "https://raw.githubusercontent.com/Alan0947383/Coems/main/Protected_7459690187342590.lua.txt",
  221. [5751238941] = "https://raw.githubusercontent.com/Alan0947383/Coems/main/Protected_3743785966678709.lua.txt",
  222. [8501383242] = "https://raw.githubusercontent.com/Alan0947383/Important/main/77_X4RPQ.lua.txt",
  223. [2633076999] = "https://raw.githubusercontent.com/Alan0947383/Games/main/77_C5IPZUSJW53.lua.txt",
  224. [5766474023] = "https://raw.githubusercontent.com/Alan0947383/Si/main/77_OMY9SQ6ULW.lua.txt",
  225. [9704927237] = "https://raw.githubusercontent.com/Prosexy/F/main/77_QX2JE4LILMPU7A.lua.txt",
  226. [1782832995] = "https://raw.githubusercontent.com/Prosexy/F/main/77_A112GOE2N14.lua.txt",
  227. [3457700596] = "https://raw.githubusercontent.com/Prosexy/F/main/77_63JDZPIZ1S2C.lua.txt",
  228. [5675104029] = "https://raw.githubusercontent.com/Prosexy/F/main/77_O9Q4G4JOAON8.lua.txt",
  229. [4568630521] = "https://raw.githubusercontent.com/Prosexy/F/main/77_95DF9P7.lua.txt",
  230. [3525075510] = "https://raw.githubusercontent.com/Prosexy/F/main/77_OPP0QTACHIDFU1.lua.txt",
  231. [5200655965] = "https://raw.githubusercontent.com/Prosexy/F/main/77_J5JCX7.lua%20(1).txt",
  232. [5567917599] = "https://raw.githubusercontent.com/Prosexy/F/main/77_RZ93YAWV.lua.txt",
  233. [5954484868] = "https://raw.githubusercontent.com/Prosexy/F/main/77_FGRT8Q8ENMO.lua.txt",
  234. [3508322461] = "https://raw.githubusercontent.com/Prosexy/F/main/77_LYZ44E7.lua.txt",
  235. [5747480325] = "https://raw.githubusercontent.com/Prosexy/F/main/77_7C6GERQ.lua.txt",
  236. [4724071612] = "https://raw.githubusercontent.com/Prosexy/F/main/77_9YNNS4N6M.lua.txt",
  237. [1451439645] = "https://raw.githubusercontent.com/Prosexy/F/main/77_W7NNB.lua.txt",
  238. [4855369361] = "https://raw.githubusercontent.com/Alan0947383/Coemssjsns/main/77_RY4DKP412.lua.txt",
  239. [3965173814] = "https://raw.githubusercontent.com/Alan0947383/E/main/Protected_7636735536006261.lua.txt",
  240. [4886369361] = "https://raw.githubusercontent.com/Alan0947383/E/main/Protected_9716953918674203.lua.txt",
  241. [4509896324] = "https://raw.githubusercontent.com/Alan0947383/E/main/Protected_4099402793064445.lua.txt",
  242. [5329077236] = "https://raw.githubusercontent.com/Alan0947383/DadSponso/main/Protected_8006538686694284.lua.txt",
  243. [5107841430] = "https://raw.githubusercontent.com/Alan0947383/E/main/Protected_3199830321051868.lua.txt",
  244. [5530985540] = "https://raw.githubusercontent.com/Alan0947383/E/main/Protected_6994043622068759.lua.txt",
  245. [2429242760] = "https://raw.githubusercontent.com/Alan0947383/NOBRO/main/Protected_4134003975235398.lua.txt",
  246. [1531130248] = "https://raw.githubusercontent.com/Alan0947383/Important2/main/Protected_2523634588778779.lua.txt",
  247. [5380927916] = "https://raw.githubusercontent.com/Alan0947383/Nrezgam/main/Protected_7143155165319345.lua%20(1).txt",
  248. [4201418016] = "https://raw.githubusercontent.com/Alan0947383/Nrezgam/main/Protected_6370626173347436.lua.txt",
  249. [73885730] = "https://raw.githubusercontent.com/Alan0947383/Starving-Artist/main/Protected_5495171337695488.lua.txt",
  250. [4979437722] = "https://raw.githubusercontent.com/Alan0947383/Script/main/Protected_1711573047964761.lua.txt",
  251. [3541611379] = "https://raw.githubusercontent.com/Alan0947383/NOBRO/main/Protected_1420061771536853.lua.txt",
  252. [16139895491] = "https://raw.githubusercontent.com/Alan0947383/Nrezgam/main/Protected_4038515180561797.lua.txt",
  253. [4459068662] = "https://raw.githubusercontent.com/Alan0947383/Nrezgam/main/Protected_6213117296942844.lua.txt",
  254. [4538598064] = "https://raw.githubusercontent.com/Alan0947383/Nrezgam/main/Protected_7345632992152827.lua.txt",
  255. [5422507366] = "https://raw.githubusercontent.com/Alan0947383/Nrezgam/main/Protected_9289311256253440.lua.txt",
  256. [1037979853] = "https://raw.githubusercontent.com/Alan0947383/Web/main/Protected_4649824632538637.lua.txt",
  257. [3633410608] = "https://raw.githubusercontent.com/Alan0947383/Daddy/main/Protected_4394947032958284.lua.txt",
  258. [5361032378] = "https://raw.githubusercontent.com/Alan0947383/DadSponso/main/Protected_3896323033799344.lua.txt",
  259. [4337094233] = "https://raw.githubusercontent.com/Alan0947383/Starving-Artist/main/Protected_6606053521941670.lua.txt",
  260. [5565260329] = "https://raw.githubusercontent.com/Alan0947383/Webiwabo/main/Protected_4545471853558622.lua.txt",
  261. [5269127662] = "https://raw.githubusercontent.com/Alan0947383/Coems/main/Protected_6756406981039467.lua.txt",
  262. [5184146090] = "https://raw.githubusercontent.com/Alan0947383/Daddy/main/Protected_1804738344493693.lua.txt",
  263. [2820580801] = "https://raw.githubusercontent.com/Alan0947383/Important2/main/Protected_8014136027451654.lua.txt",
  264. [2820580801] = "https://raw.githubusercontent.com/Alan0947383/Important2/main/Protected_2886843259179568.lua.txt",
  265. [4938220315] = "https://raw.githubusercontent.com/Alan0947383/Webiwabo/main/Protected_9637992958163555.lua.txt",
  266. [5365729763] = "https://raw.githubusercontent.com/Alan0947383/Important/main/Protected_3100605997134071.lua.txt",
  267. [301549746] = "https://raw.githubusercontent.com/Alan0947383/Important2/main/Protected_3598114981737733.lua.txt",
  268. [2331157949] = "https://raw.githubusercontent.com/Alan0947383/DadSponso/main/Protected_3569063412811514.lua.txt",
  269. [3713854848] = "https://raw.githubusercontent.com/Alan0947383/Coems/main/Protected_1259706287546367.lua.txt",
  270. [5799867123] = "https://raw.githubusercontent.com/Prosexy/F/main/77_YVT4A.lua.txt",
  271. [1147304238] = "https://raw.githubusercontent.com/Alan0947383/Important2/main/Protected_5661913663966891.lua.txt",
  272. [1650291138] = "https://raw.githubusercontent.com/Alan0947383/Coemssjsns/main/77_KOF4HMBT4IQZF.lua.txt",
  273. [5656903219] = "https://raw.githubusercontent.com/Prosexy/F/main/77_YOGN417.lua.txt",
  274. [3808081382] = "https://raw.githubusercontent.com/Prosexy/F/main/77_SJPLHGXJCXJI9.lua.txt",
  275. [5990372955] = "https://raw.githubusercontent.com/Prosexy/F/main/77_0ZHZIG1EG3.lua.txt",
  276. [210851291] = "https://raw.githubusercontent.com/Alan0947383/Script/main/77_TCGF7JHZBJDY.lua.txt",
  277. [848145103] = "https://raw.githubusercontent.com/Alan0947383/Batman/main/77_UCFVL.lua.txt",
  278. [5170731021] = "https://raw.githubusercontent.com/Alan0947383/Games/main/77_Z7E0WAZY.lua.txt",
  279. [5991139138] = "https://raw.githubusercontent.com/Prosexy/F/main/77_NI8EIK9XS.lua.txt",
  280. [5972059550] = "https://raw.githubusercontent.com/Alan0947383/Coemssjsns/main/77_A0NZM4EL7.lua.txt",
  281. [2961111240] = "https://raw.githubusercontent.com/Alan0947383/Webiwabo/main/77_EH0T7DKAZ1QLD.lua.txt",
  282. [3213362013] = "https://raw.githubusercontent.com/Alan0947383/E/main/77_18KTCEVQTUQES.lua.txt",
  283. [5479908441] = "https://raw.githubusercontent.com/Alan0947383/Daddy-dad/main/77_B5F9NEC77RDV.txt",
  284. [5976020326] = "https://raw.githubusercontent.com/Prosexy/F/main/77_F6GOEY.txt",
  285. [6040823996] = "https://raw.githubusercontent.com/Prosexy/F/main/77_HIAG8Y2EJKB5.txt",
  286. [6061766680] = "https://raw.githubusercontent.com/Prosexy/F/main/77_NX95BH3T.txt",
  287. [3936365689] = "https://raw.githubusercontent.com/Prosexy/F/main/77_KK52FWUOLX.txt",
  288. [2655311011] = "https://raw.githubusercontent.com/Prosexy/F/main/77_5QQ503.txt",
  289. [3990106548] = "https://raw.githubusercontent.com/Prosexy/F/main/77_ZUQR56B9JE.txt",
  290. [5901557156] = "https://raw.githubusercontent.com/Prosexy/F/main/77_ROFMMLOC.txt",
  291. [5521255650] = "https://raw.githubusercontent.com/Prosexy/F/main/77_LSO22QS.txt",
  292. [5754877170] = "https://raw.githubusercontent.com/Prosexy/F/main/77_JBHNJ.txt",
  293. [6174407103] = "https://raw.githubusercontent.com/Prosexy/F/main/77_W6F9E21ZRH.txt",
  294. -- Games that exclusively use Progress start below
  295. [3756501373] = "https://raw.githubusercontent.com/Prosexy/F/main/77_34G0Y.txt",
  296. [5985126622] = "https://raw.githubusercontent.com/Prosexy/F/main/77_8BUVLPADR8CX6.txt",
  297. [6216468795] = "https://raw.githubusercontent.com/Prosexy/F/main/77_KRMECA1MO0.txt",
  298. [4572323622] = "https://raw.githubusercontent.com/Prosexy/F/main/77_17OH0Q35.txt",
  299. [6149138290] = "https://raw.githubusercontent.com/Prosexy/F/main/77_QNE3CGU70.txt",
  300. [5924989485] = "https://raw.githubusercontent.com/Prosexy/F/main/77_YTMJ2S.txt",
  301. [5931899687] = "https://raw.githubusercontent.com/Prosexy/F/main/77_D0IHG0IHNS7JV.txt",
  302. [3110388936] = "https://raw.githubusercontent.com/Prosexy/Bunny/main/Protected_9219599163677822.txt",
  303. [5868588140] = "https://raw.githubusercontent.com/Prosexy/Bunny/main/77_3VBHJAL7UL.txt",
  304. [1831550657] = "https://raw.githubusercontent.com/Prosexy/Bunny/main/output-PYMC.txt"
  305. }
  306.  
  307. local ProgressGames = {
  308. 3756501373, 5985126622, 6216468795, 4572323622, 6149138290,
  309. 5924989485, 5931899687, 3110388936, 5868588140, 1831550657
  310. }
  311.  
  312. local DangerousGames = {
  313. [3164075108] = "- Auto Collect Dragon Balls\n- (Possibly) Auto Farm", -- Dragon Soul
  314. -- [3936365689] = "- Auto Collect Dragon Balls", -- Clover Retribution (fixed)
  315. [5170731021] = "Unknown, people have reported bans in this game.", -- Demon Blade
  316. [5321619756] = "Using Auto Farm + Kill Aura together causes a detection", -- Bladers: Rebirth
  317. [3367801828] = "- Copy Art\n- Instant Arts\n(Kicks 5 times then ban)", -- Starving Artists
  318. [903807016] = "- Teleports", -- Emergency Response: Liberty County
  319. [1016936714] = "- Autofarming Teleport" -- Your Bizarre Adventure (YBA)
  320. }
  321.  
  322. local GameUrl = Games[game.GameId] or Games[game.PlaceId]
  323.  
  324. local moduleQueue = {
  325. Progress = {"https://raw.githubusercontent.com/cheapsk9/progress/main/beta.lua", "Demonic UI Library"}
  326. }
  327. local modules = {}
  328.  
  329. if GameUrl then
  330. moduleQueue.GameScript = {GameUrl, "This Game's Script"}
  331. else
  332. moduleQueue.Notify = {"https://raw.githubusercontent.com/x9PSwiftz/Panda/main/Notification.lua", "Notification Module"}
  333. moduleQueue.NotificationHolder = {"https://raw.githubusercontent.com/BocusLuke/UI/main/STX/Module.Lua", "Loady Notification Holder"}
  334. moduleQueue.Notification = {"https://raw.githubusercontent.com/BocusLuke/UI/main/STX/Client.Lua", "Loady Notification"}
  335. moduleQueue.Loady = {"https://bitbucket.org/cat__/uis/raw/Loady/Module", "Loady"}
  336. end
  337. if not table.find(ProgressGames, game.GameId) then
  338. moduleQueue.f2p = {"https://raw.githubusercontent.com/cheapsk9/progress/main/f2p.lua", "Fluent -> Demonic UI Translator"}
  339. end
  340.  
  341. local function LoadProgress()
  342.  
  343. Progress = modules.Progress()
  344.  
  345. if ClipboardFunc then
  346. Progress:ShowToast({
  347. Duration = 10, Title = "Copy To Clipboard",
  348. Text = "Are you sure you want to copy the server invite to your clipboard?",
  349. Buttons = {
  350. {
  351. Title = "Yes",
  352. Callback = function() ClipboardFunc("https://dsc.gg/demonichubv2") end
  353. },
  354. {
  355. Title = "No"
  356. }
  357. }
  358. })
  359. end
  360.  
  361. Progress.Screen.Parent = GuiOfChoice
  362. Progress.Login.Object.Visible = true
  363. Progress.Window:Open()
  364.  
  365. local danger = DangerousGames[game.GameId]
  366. if danger then
  367. Progress.Window:ShowDialog({
  368. Title = "DANGER!!",
  369. Text = "Some features of this script are now detected by the game's anti-cheat. Since we no longer maintain this script, we can't disable them.\nThe detected features are shown below, but are not limited to:\n\n" .. danger .. "\n\nWe HIGHLY recommend you close Demonic Hub and Roblox now, or you may risk being banned. Or, you can venture forth into the unknown, but don't say we didn't warn you.\nBY CLICKING \"Enter Danger Zone\" YOU ARE USING DEMONIC HUB SOLELY AT YOUR OWN RISK.",
  370. Buttons = {
  371. {
  372. Title = "Close Demonic Hub",
  373. Callback = function() Progress.Window:Close() end
  374. },
  375. {
  376. Title = "Enter Danger Zone",
  377. Secondary = true
  378. }
  379. }
  380. })
  381. end
  382.  
  383. local function LoadScript()
  384. f2p = modules.f2p
  385. if f2p then
  386. LoadFluentHook()
  387. sexyfluent = f2p()
  388. end
  389.  
  390. Progress.Login.Object.Visible = false
  391. Progress.Hub.Object.Visible = true
  392.  
  393. canaccess = "yessir"
  394.  
  395. if GameUrl then
  396. -- Load game script
  397. local success, err = pcall(modules.GameScript)
  398. if not success then
  399. local dialogTbl = {
  400. Title = "Error Loading Script!",
  401. Text = "Sorry, but an error is preventing the script for your game from loading properly. This is usually due to an update to the game breaking the script. There is a chance some of the script may still work, but other parts may be broken. Feel free to open a bug report in our Discord server at dsc.gg/demonichubv2\nSorry for the inconvenience! The error is shown below.",
  402. CopyBoxText = err,
  403. Buttons = {
  404. [2] = {
  405. Title = "Close Demonic Hub",
  406. Callback = function() Progress.Window:Close() end,
  407. Secondary = true
  408. },
  409. [3] = {
  410. Title = "Continue Anyway"
  411. }
  412. }
  413. }
  414. if ClipboardFunc then
  415. dialogTbl.Buttons[1] = {
  416. Title = "Copy to Clipboard",
  417. Callback = function() ClipboardFunc(err) end,
  418. }
  419. end
  420. Progress.Window:ShowDialog(dialogTbl)
  421. end
  422. else
  423. -- Load loady
  424. local Notify = modules.Notify()
  425. modules.NotificationHolder() -- Load notification holder
  426. local Notification = modules.Notification()
  427.  
  428. Notify.New("Your game may not be supported!", 15)
  429.  
  430. Notification:Notify({
  431. Title = "Loading Gui...",
  432. Description = "Hi! You should check our supported games, it may not be what you're looking for!"
  433. },
  434. {
  435. OutlineColor = Color3.fromRGB(41, 1, 1),
  436. Time = 5.5,
  437. Type = "option"
  438. },
  439. {
  440. Image = "http://www.roblox.com/asset/?id=6023426923",
  441. ImageColor = Color3.fromRGB(255, 84, 84),
  442. Callback = function(State)
  443. print(tostring(State))
  444. end
  445. })
  446. --task.wait(1.5) -- Some executors HATE it when we yield inside a loadstring, ughh
  447. local Library = modules.Loady()
  448. local Window = Library:Window("Demonic HUB | V2", function(Script, Func)
  449. loadstring(game:HttpGet(Script, true))()
  450. end, {
  451. Translate = false
  452. })
  453.  
  454. Window:Game({
  455. Place = 9704927237,
  456. Status = "Working",
  457. Script = "https://raw.githubusercontent.com/Prosexy/F/main/77_QX2JE4LILMPU7A.lua.txt"
  458. })
  459.  
  460. Window:Game({
  461. Place = 8501383242,
  462. Status = "Working",
  463. Script = "https://raw.githubusercontent.com/Alan0947383/Important/main/77_X4RPQ.lua.txt"
  464. })
  465.  
  466. Window:Game({
  467. Place = 12588367314,
  468. Status = "Working",
  469. Script = "https://raw.githubusercontent.com/Alan0947383/E/main/Protected_7627352893542126.lua.txt"
  470. })
  471.  
  472. Window:Initiate()
  473. end
  474. end
  475.  
  476. task.delay(0.5, LoadScript)
  477. end
  478.  
  479.  
  480. -- Load everything
  481. local loadGoal = 0
  482. local loadCurr = 0
  483. local function loadUrl(name, module)
  484. modules[name] = loadstring(game:HttpGet(module[1], true))
  485. loadCurr = loadCurr + 1
  486. TopLabel.Text = module[2] .. " (" .. loadCurr .. "/" .. loadGoal .. ")"
  487. ProgressBar.Size = UDim2.fromScale(loadCurr/loadGoal, 2)
  488. if loadCurr == loadGoal then
  489. local LoaderCloseTween = TweenService:Create(LoaderBg, TweenInfo.new(1), {Size = UDim2.fromOffset(0, 200)})
  490. LoaderCloseTween.Completed:Connect(function()
  491. LoaderGui:Destroy()
  492. end)
  493. LoaderCloseTween:Play()
  494. LoadProgress()
  495. end
  496. end
  497. for _ in next, moduleQueue do
  498. loadGoal = loadGoal + 1
  499. end
  500. for k, v in next, moduleQueue do
  501. coroutine.resume(coroutine.create(loadUrl), k, v)
  502. end
  503.  
  504. end
  505.  
  506. -- Check for CoreGui access
  507. if pcall(function()
  508. local Test = Instance.new("ScreenGui")
  509. Test.Name = "Test"
  510. Test.Parent = game:GetService("CoreGui")
  511. Test:Destroy()
  512. end)
  513. then
  514. GuiOfChoice = game:GetService("CoreGui")
  515. LoadHub()
  516. else
  517. local bindable = Instance.new("BindableFunction")
  518. bindable.OnInvoke = function(choice)
  519. if choice == "Yes" then
  520. LoadHub()
  521. end
  522. bindable:Destroy()
  523. bindable = nil
  524. end
  525. GuiOfChoice = game:GetService("Players").LocalPlayer:FindFirstChildOfClass("PlayerGui")
  526. if GuiOfChoice then
  527. game:GetService("StarterGui"):SetCore("SendNotification", {
  528. Title = "Run hub anyway?",
  529. Text = "No access to CoreGui. This may cause problems in games with sensitive anti-cheats.",
  530. Icon = "rbxassetid://16755289922",
  531. Duration = 10,
  532. Callback = bindable,
  533. Button1 = "Yes",
  534. Button2 = "No",
  535. })
  536. else
  537. game:GetService("StarterGui"):SetCore("SendNotification", {
  538. Title = "This is awkward...",
  539. Text = "Looks like the developer of the game decided to troll us by removing PlayerGui. Therefore, we can't run the hub.",
  540. Icon = "rbxassetid://16755289922",
  541. Duration = 10,
  542. })
  543. end
  544. end
Advertisement
Add Comment
Please, Sign In to add comment