Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.04 KB | None | 0 0
  1. -- Objects
  2.  
  3. local QuantixV1 = Instance.new("ScreenGui")
  4. local LoginFrame = Instance.new("Frame")
  5. local TitleLF = Instance.new("TextLabel")
  6. local LoginBUT = Instance.new("TextButton")
  7. local UsernameContainer = Instance.new("TextBox")
  8. local PasswordContainer = Instance.new("TextBox")
  9. local UsernameTitleLF = Instance.new("TextLabel")
  10. local PasswordTitleLF = Instance.new("TextLabel")
  11. local CreditsCRLF = Instance.new("TextLabel")
  12. local CreditsLF = Instance.new("TextLabel")
  13. local LoadingCheckFrame = Instance.new("Frame")
  14. local TitleLF_2 = Instance.new("TextLabel")
  15. local WhitelistBETA = Instance.new("TextLabel")
  16. local AuthenticatingLCF = Instance.new("TextLabel")
  17. local AuthenticatingDoneLCF = Instance.new("TextLabel")
  18. local LoadingLCF = Instance.new("TextLabel")
  19. local SYSTEM_MESSAGE = Instance.new("TextLabel")
  20. local LoadingDoneLCF = Instance.new("TextLabel")
  21. local WhitelistPAID = Instance.new("TextLabel")
  22. local WhitelistTRIAL = Instance.new("TextLabel")
  23. local WhitelistALPHA = Instance.new("TextLabel")
  24. local MainFrame = Instance.new("Frame")
  25. local TitleMF = Instance.new("TextLabel")
  26.  
  27. -- Properties
  28.  
  29. QuantixV1.Name = "Quantix V.1"
  30. QuantixV1.Parent = game.CoreGui
  31.  
  32. LoginFrame.Name = "LoginFrame"
  33. LoginFrame.Parent = QuantixV1
  34. LoginFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  35. LoginFrame.BackgroundTransparency = 0.20000000298023
  36. LoginFrame.BorderSizePixel = 0
  37. LoginFrame.Position = UDim2.new(0.406730056, 0, 0.297297299, 0)
  38. LoginFrame.Size = UDim2.new(0, 255, 0, 329)
  39. LoginFrame.Visible = true
  40.  
  41. TitleLF.Name = "TitleLF"
  42. TitleLF.Parent = LoginFrame
  43. TitleLF.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  44. TitleLF.BorderSizePixel = 0
  45. TitleLF.Size = UDim2.new(0, 255, 0, 50)
  46. TitleLF.Font = Enum.Font.Code
  47. TitleLF.FontSize = Enum.FontSize.Size24
  48. TitleLF.Text = "Please Login.."
  49. TitleLF.TextColor3 = Color3.new(1, 1, 1)
  50. TitleLF.TextSize = 20
  51.  
  52. LoginBUT.Name = "LoginBUT"
  53. LoginBUT.Parent = LoginFrame
  54. LoginBUT.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  55. LoginBUT.BorderSizePixel = 0
  56. LoginBUT.Position = UDim2.new(0.188235298, 0, 0.759878457, 0)
  57. LoginBUT.Size = UDim2.new(0, 158, 0, 45)
  58. LoginBUT.Font = Enum.Font.Code
  59. LoginBUT.FontSize = Enum.FontSize.Size24
  60. LoginBUT.Text = "Login"
  61. LoginBUT.TextColor3 = Color3.new(1, 1, 1)
  62. LoginBUT.TextSize = 20
  63.  
  64. LoginBUT.MouseButton1Down:connect(function()
  65.  
  66. if UsernameContainer.Text == "SuperWild" and PasswordContainer.Text == "QuantixDev" then
  67. LoadingCheckFrame.Visible = true
  68. LoginFrame.Visible = false
  69.  
  70. elseif UsernameContainer.Text == "ScriptBloxx" and PasswordContainer.Text == "TrialCode1" then
  71. LoadingCheckFrame.Visible = true
  72. LoginFrame.Visible = false
  73.  
  74. end
  75. end)
  76.  
  77. UsernameContainer.Name = "UsernameContainer"
  78. UsernameContainer.Parent = LoginFrame
  79. UsernameContainer.BackgroundColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  80. UsernameContainer.BorderSizePixel = 0
  81. UsernameContainer.Position = UDim2.new(0.105882354, 0, 0.325227976, 0)
  82. UsernameContainer.Size = UDim2.new(0, 200, 0, 33)
  83. UsernameContainer.Font = Enum.Font.SourceSans
  84. UsernameContainer.FontSize = Enum.FontSize.Size14
  85. UsernameContainer.Text = "ScriptBloxx"
  86. UsernameContainer.TextColor3 = Color3.new(0, 0, 0)
  87. UsernameContainer.TextSize = 14
  88.  
  89. PasswordContainer.Name = "PasswordContainer"
  90. PasswordContainer.Parent = LoginFrame
  91. PasswordContainer.BackgroundColor3 = Color3.new(0.388235, 0.388235, 0.388235)
  92. PasswordContainer.BorderSizePixel = 0
  93. PasswordContainer.Position = UDim2.new(0.105882354, 0, 0.550152004, 0)
  94. PasswordContainer.Size = UDim2.new(0, 200, 0, 33)
  95. PasswordContainer.Font = Enum.Font.SourceSans
  96. PasswordContainer.FontSize = Enum.FontSize.Size14
  97. PasswordContainer.Text = "TrialCode1"
  98. PasswordContainer.TextColor3 = Color3.new(0, 0, 0)
  99. PasswordContainer.TextSize = 14
  100.  
  101. UsernameTitleLF.Name = "UsernameTitleLF"
  102. UsernameTitleLF.Parent = LoginFrame
  103. UsernameTitleLF.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  104. UsernameTitleLF.BackgroundTransparency = 1
  105. UsernameTitleLF.BorderSizePixel = 0
  106. UsernameTitleLF.Position = UDim2.new(0.0313725509, 0, 0.240121573, 0)
  107. UsernameTitleLF.Size = UDim2.new(0, 87, 0, 28)
  108. UsernameTitleLF.Font = Enum.Font.Code
  109. UsernameTitleLF.FontSize = Enum.FontSize.Size18
  110. UsernameTitleLF.Text = "Username:"
  111. UsernameTitleLF.TextColor3 = Color3.new(1, 1, 1)
  112. UsernameTitleLF.TextSize = 15
  113. UsernameTitleLF.TextWrapped = true
  114.  
  115. PasswordTitleLF.Name = "PasswordTitleLF"
  116. PasswordTitleLF.Parent = LoginFrame
  117. PasswordTitleLF.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  118. PasswordTitleLF.BackgroundTransparency = 1
  119. PasswordTitleLF.BorderSizePixel = 0
  120. PasswordTitleLF.Position = UDim2.new(0.0313725509, 0, 0.474164128, 0)
  121. PasswordTitleLF.Size = UDim2.new(0, 87, 0, 22)
  122. PasswordTitleLF.Font = Enum.Font.Code
  123. PasswordTitleLF.FontSize = Enum.FontSize.Size18
  124. PasswordTitleLF.Text = "Password:"
  125. PasswordTitleLF.TextColor3 = Color3.new(1, 1, 1)
  126. PasswordTitleLF.TextSize = 15
  127. PasswordTitleLF.TextWrapped = true
  128.  
  129. CreditsCRLF.Name = "CreditsCRLF"
  130. CreditsCRLF.Parent = LoginFrame
  131. CreditsCRLF.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  132. CreditsCRLF.BackgroundTransparency = 1
  133. CreditsCRLF.BorderSizePixel = 0
  134. CreditsCRLF.Position = UDim2.new(0.388235301, 0, 0.917933106, 0)
  135. CreditsCRLF.Size = UDim2.new(0, 21, 0, 27)
  136. CreditsCRLF.Font = Enum.Font.Code
  137. CreditsCRLF.FontSize = Enum.FontSize.Size18
  138. CreditsCRLF.Text = "©"
  139. CreditsCRLF.TextColor3 = Color3.new(1, 1, 1)
  140. CreditsCRLF.TextScaled = true
  141. CreditsCRLF.TextSize = 17
  142. CreditsCRLF.TextWrapped = true
  143.  
  144. CreditsLF.Name = "CreditsLF"
  145. CreditsLF.Parent = LoginFrame
  146. CreditsLF.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  147. CreditsLF.BackgroundTransparency = 1
  148. CreditsLF.BorderSizePixel = 0
  149. CreditsLF.Position = UDim2.new(0.011764707, 0, 0.917933106, 0)
  150. CreditsLF.Size = UDim2.new(0, 96, 0, 27)
  151. CreditsLF.Font = Enum.Font.Code
  152. CreditsLF.FontSize = Enum.FontSize.Size18
  153. CreditsLF.Text = "Quantix Hub"
  154. CreditsLF.TextColor3 = Color3.new(1, 1, 1)
  155. CreditsLF.TextScaled = true
  156. CreditsLF.TextSize = 17
  157. CreditsLF.TextWrapped = true
  158.  
  159. LoadingCheckFrame.Name = "LoadingCheckFrame"
  160. LoadingCheckFrame.Parent = QuantixV1
  161. LoadingCheckFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  162. LoadingCheckFrame.BackgroundTransparency = 0.20000000298023
  163. LoadingCheckFrame.BorderSizePixel = 0
  164. LoadingCheckFrame.Position = UDim2.new(0.347476214, 0, 0.35995087, 0)
  165. LoadingCheckFrame.Size = UDim2.new(0, 417, 0, 159)
  166. LoadingCheckFrame.Visible = false
  167.  
  168. LoginBUT.MouseButton1Down:connect(function()
  169.  
  170.  
  171. if UsernameContainer.Text == "SuperWild" and PasswordContainer.Text == "QuantixDev" then
  172. wait(1)
  173. WhitelistPAID.Visible = true
  174. wait(1)
  175. AuthenticatingLCF.Visible = true
  176. wait(3)
  177. AuthenticatingDoneLCF.Visible = true
  178. wait(1)
  179. LoadingLCF.Visible = true
  180. wait(2)
  181. LoadingDoneLCF.Visible = true
  182. SYSTEM_MESSAGE.Visible = true
  183. wait(3)
  184. LoadingCheckFrame.Visible = false
  185. MainFrame.Visible = true
  186.  
  187. elseif UsernameContainer.Text == "ScriptBloxx" and PasswordContainer.Text == "TrialCode1" then
  188. wait(1)
  189. WhitelistBETA.Visible = true
  190. wait(1)
  191. AuthenticatingLCF.Visible = true
  192. wait(3)
  193. AuthenticatingDoneLCF.Visible = true
  194. wait(1)
  195. LoadingLCF.Visible = true
  196. wait(2)
  197. LoadingDoneLCF.Visible = true
  198. SYSTEM_MESSAGE.Visible = true
  199. wait(3)
  200. LoadingCheckFrame.Visible = false
  201. MainFrame.Visible = true
  202.  
  203.  
  204. end
  205. end)
  206.  
  207. TitleLF_2.Name = "TitleLF"
  208. TitleLF_2.Parent = LoadingCheckFrame
  209. TitleLF_2.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  210. TitleLF_2.BorderSizePixel = 0
  211. TitleLF_2.Size = UDim2.new(0, 417, 0, 47)
  212. TitleLF_2.Font = Enum.Font.Code
  213. TitleLF_2.FontSize = Enum.FontSize.Size24
  214. TitleLF_2.Text = "Loading & System Checks"
  215. TitleLF_2.TextColor3 = Color3.new(1, 1, 1)
  216. TitleLF_2.TextSize = 20
  217.  
  218. WhitelistBETA.Name = "WhitelistBETA"
  219. WhitelistBETA.Parent = LoadingCheckFrame
  220. WhitelistBETA.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  221. WhitelistBETA.BackgroundTransparency = 1
  222. WhitelistBETA.BorderSizePixel = 0
  223. WhitelistBETA.Position = UDim2.new(0.0455635488, 0, 0.339788139, 0)
  224. WhitelistBETA.Size = UDim2.new(0, 221, 0, 25)
  225. WhitelistBETA.Visible = false
  226. WhitelistBETA.Font = Enum.Font.Code
  227. WhitelistBETA.FontSize = Enum.FontSize.Size18
  228. WhitelistBETA.Text = "Whitelist Type: [BETA USER]"
  229. WhitelistBETA.TextColor3 = Color3.new(1, 1, 1)
  230. WhitelistBETA.TextSize = 16
  231. WhitelistBETA.TextWrapped = true
  232.  
  233. AuthenticatingLCF.Name = "AuthenticatingLCF"
  234. AuthenticatingLCF.Parent = LoadingCheckFrame
  235. AuthenticatingLCF.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  236. AuthenticatingLCF.BackgroundTransparency = 1
  237. AuthenticatingLCF.BorderSizePixel = 0
  238. AuthenticatingLCF.Position = UDim2.new(0, 0, 0.482497007, 0)
  239. AuthenticatingLCF.Size = UDim2.new(0, 178, 0, 25)
  240. AuthenticatingLCF.Visible = false
  241. AuthenticatingLCF.Font = Enum.Font.Code
  242. AuthenticatingLCF.FontSize = Enum.FontSize.Size18
  243. AuthenticatingLCF.Text = "Authenticating..."
  244. AuthenticatingLCF.TextColor3 = Color3.new(1, 1, 1)
  245. AuthenticatingLCF.TextSize = 16
  246. AuthenticatingLCF.TextWrapped = true
  247.  
  248. AuthenticatingDoneLCF.Name = "AuthenticatingDoneLCF"
  249. AuthenticatingDoneLCF.Parent = LoadingCheckFrame
  250. AuthenticatingDoneLCF.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  251. AuthenticatingDoneLCF.BackgroundTransparency = 1
  252. AuthenticatingDoneLCF.BorderSizePixel = 0
  253. AuthenticatingDoneLCF.Position = UDim2.new(0.347721815, 0, 0.482497007, 0)
  254. AuthenticatingDoneLCF.Size = UDim2.new(0, 76, 0, 25)
  255. AuthenticatingDoneLCF.Visible = false
  256. AuthenticatingDoneLCF.Font = Enum.Font.Code
  257. AuthenticatingDoneLCF.FontSize = Enum.FontSize.Size18
  258. AuthenticatingDoneLCF.Text = "Done!"
  259. AuthenticatingDoneLCF.TextColor3 = Color3.new(0.0862745, 0.952941, 0.184314)
  260. AuthenticatingDoneLCF.TextSize = 16
  261. AuthenticatingDoneLCF.TextWrapped = true
  262.  
  263. LoadingLCF.Name = "LoadingLCF"
  264. LoadingLCF.Parent = LoadingCheckFrame
  265. LoadingLCF.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  266. LoadingLCF.BackgroundTransparency = 1
  267. LoadingLCF.BorderSizePixel = 0
  268. LoadingLCF.Position = UDim2.new(0, 0, 0.636827767, 0)
  269. LoadingLCF.Size = UDim2.new(0, 126, 0, 25)
  270. LoadingLCF.Visible = false
  271. LoadingLCF.Font = Enum.Font.Code
  272. LoadingLCF.FontSize = Enum.FontSize.Size18
  273. LoadingLCF.Text = "Loading..."
  274. LoadingLCF.TextColor3 = Color3.new(1, 1, 1)
  275. LoadingLCF.TextSize = 16
  276. LoadingLCF.TextWrapped = true
  277.  
  278. SYSTEM_MESSAGE.Name = "SYSTEM_MESSAGE"
  279. SYSTEM_MESSAGE.Parent = LoadingCheckFrame
  280. SYSTEM_MESSAGE.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  281. SYSTEM_MESSAGE.BackgroundTransparency = 1
  282. SYSTEM_MESSAGE.BorderSizePixel = 0
  283. SYSTEM_MESSAGE.Position = UDim2.new(0.0167865716, 0, 0.781084955, 0)
  284. SYSTEM_MESSAGE.Size = UDim2.new(0, 331, 0, 27)
  285. SYSTEM_MESSAGE.Visible = false
  286. SYSTEM_MESSAGE.Font = Enum.Font.SourceSansBold
  287. SYSTEM_MESSAGE.FontSize = Enum.FontSize.Size18
  288. SYSTEM_MESSAGE.Text = "System Messgae: HUB up to date! Version 1.0"
  289. SYSTEM_MESSAGE.TextColor3 = Color3.new(0.776471, 0, 0)
  290. SYSTEM_MESSAGE.TextSize = 18
  291. SYSTEM_MESSAGE.TextWrapped = true
  292.  
  293. LoadingDoneLCF.Name = "LoadingDoneLCF"
  294. LoadingDoneLCF.Parent = LoadingCheckFrame
  295. LoadingDoneLCF.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  296. LoadingDoneLCF.BackgroundTransparency = 1
  297. LoadingDoneLCF.BorderSizePixel = 0
  298. LoadingDoneLCF.Position = UDim2.new(0.21822542, 0, 0.636827767, 0)
  299. LoadingDoneLCF.Size = UDim2.new(0, 76, 0, 25)
  300. LoadingDoneLCF.Visible = false
  301. LoadingDoneLCF.Font = Enum.Font.Code
  302. LoadingDoneLCF.FontSize = Enum.FontSize.Size18
  303. LoadingDoneLCF.Text = "Done!"
  304. LoadingDoneLCF.TextColor3 = Color3.new(0.0862745, 0.952941, 0.184314)
  305. LoadingDoneLCF.TextSize = 16
  306. LoadingDoneLCF.TextWrapped = true
  307.  
  308. WhitelistPAID.Name = "WhitelistPAID"
  309. WhitelistPAID.Parent = LoadingCheckFrame
  310. WhitelistPAID.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  311. WhitelistPAID.BackgroundTransparency = 1
  312. WhitelistPAID.BorderSizePixel = 0
  313. WhitelistPAID.Position = UDim2.new(0.0455635488, 0, 0.339788139, 0)
  314. WhitelistPAID.Size = UDim2.new(0, 221, 0, 25)
  315. WhitelistPAID.Visible = false
  316. WhitelistPAID.Font = Enum.Font.Code
  317. WhitelistPAID.FontSize = Enum.FontSize.Size18
  318. WhitelistPAID.Text = "Whitelist Type: [PAID USER]"
  319. WhitelistPAID.TextColor3 = Color3.new(1, 1, 1)
  320. WhitelistPAID.TextSize = 16
  321. WhitelistPAID.TextWrapped = true
  322.  
  323. WhitelistTRIAL.Name = "WhitelistTRIAL"
  324. WhitelistTRIAL.Parent = LoadingCheckFrame
  325. WhitelistTRIAL.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  326. WhitelistTRIAL.BackgroundTransparency = 1
  327. WhitelistTRIAL.BorderSizePixel = 0
  328. WhitelistTRIAL.Position = UDim2.new(0.0455635488, 0, 0.339788079, 0)
  329. WhitelistTRIAL.Size = UDim2.new(0, 230, 0, 25)
  330. WhitelistTRIAL.Visible = false
  331. WhitelistTRIAL.Font = Enum.Font.Code
  332. WhitelistTRIAL.FontSize = Enum.FontSize.Size18
  333. WhitelistTRIAL.Text = "Whitelist Type: [TRIAL USER]"
  334. WhitelistTRIAL.TextColor3 = Color3.new(1, 1, 1)
  335. WhitelistTRIAL.TextSize = 16
  336. WhitelistTRIAL.TextWrapped = true
  337.  
  338. WhitelistALPHA.Name = "WhitelistALPHA"
  339. WhitelistALPHA.Parent = LoadingCheckFrame
  340. WhitelistALPHA.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  341. WhitelistALPHA.BackgroundTransparency = 1
  342. WhitelistALPHA.BorderSizePixel = 0
  343. WhitelistALPHA.Position = UDim2.new(0.0455635488, 0, 0.339788079, 0)
  344. WhitelistALPHA.Size = UDim2.new(0, 230, 0, 25)
  345. WhitelistALPHA.Visible = false
  346. WhitelistALPHA.Font = Enum.Font.Code
  347. WhitelistALPHA.FontSize = Enum.FontSize.Size18
  348. WhitelistALPHA.Text = "Whitelist Type: [ALPHA USER]"
  349. WhitelistALPHA.TextColor3 = Color3.new(1, 1, 1)
  350. WhitelistALPHA.TextSize = 16
  351. WhitelistALPHA.TextWrapped = true
  352.  
  353. MainFrame.Name = "MainFrame"
  354. MainFrame.Parent = QuantixV1
  355. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  356. MainFrame.BackgroundTransparency = 0.20000000298023
  357. MainFrame.BorderSizePixel = 0
  358. MainFrame.Position = UDim2.new(0.26920262, 0, 0.329238325, 0)
  359. MainFrame.Size = UDim2.new(0, 631, 0, 278)
  360. MainFrame.Visible = false
  361.  
  362. TitleMF.Name = "TitleMF"
  363. TitleMF.Parent = MainFrame
  364. TitleMF.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  365. TitleMF.BorderSizePixel = 0
  366. TitleMF.Size = UDim2.new(0, 631, 0, 47)
  367. TitleMF.Font = Enum.Font.Code
  368. TitleMF.FontSize = Enum.FontSize.Size24
  369. TitleMF.Text = "Quantix HUB V.1.0 | Home"
  370. TitleMF.TextColor3 = Color3.new(1, 1, 1)
  371. TitleMF.TextSize = 20
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement