Advertisement
TigerManGamingYT

Tiger X Installer

Apr 8th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 18.11 KB | None | 0 0
  1. -- Tiger X Installer Version ALPHA 1
  2. -- YOU NEED TO RUN THIS BEFORE USING TIGER X!
  3. -- While the source code for Tiger X is publically accessible, Please ask Anaxion on V3RM before posting a modified version.
  4. -- This version of Tiger X installer uses HTTPGET and READFILE/WRTIEFILE. A paid executor such as Synapse X, Sirhurt or Protosmasher should work fine. Free executors may work, but are not supported.
  5.  
  6. -- Objects:
  7.  
  8. local TigerXSetup = Instance.new("ScreenGui")
  9. local MainFrame = Instance.new("Frame")
  10. local Design = Instance.new("Frame")
  11. local MainGUITitleLabel = Instance.new("TextLabel")
  12. local ExitInstaller = Instance.new("TextButton")
  13. local TOS = Instance.new("Frame")
  14. local InstallAgreement = Instance.new("Frame")
  15. local InstallAgreement1 = Instance.new("TextLabel")
  16. local InstallAgreement2 = Instance.new("TextLabel")
  17. local InstallAgreement3 = Instance.new("TextLabel")
  18. local InstallAgreement4 = Instance.new("TextLabel")
  19. local InstallAgreement5 = Instance.new("TextLabel")
  20. local InstallAgreement6 = Instance.new("TextLabel")
  21. local TOSBackButton = Instance.new("TextButton")
  22. local TOSContinueButton = Instance.new("TextButton")
  23. local FirstFrame = Instance.new("Frame")
  24. local StartConfigure = Instance.new("TextButton")
  25. local startframetxt1 = Instance.new("TextLabel")
  26. local startframetxt2 = Instance.new("TextLabel")
  27. local InstallingFrame = Instance.new("Frame")
  28. local InstallingText = Instance.new("TextLabel")
  29. local FinishedFrame = Instance.new("Frame")
  30. local FinaliseButton = Instance.new("TextButton")
  31. local Checkbox = Instance.new("ImageButton")
  32. local StartTxLabel = Instance.new("TextLabel")
  33. local CheckboxPressed = Instance.new("ImageButton")
  34. local CredentialsFrame = Instance.new("Frame")
  35. local UserBox = Instance.new("TextBox")
  36. local PassBox = Instance.new("TextBox")
  37. local PassConfirmBox = Instance.new("TextBox")
  38. local ConfirmCredentials = Instance.new("TextButton")
  39. local PassNoMatch = Instance.new("TextLabel")
  40. local CreateCredsLabel = Instance.new("TextLabel")
  41.  
  42.  
  43. -- Object Properties:
  44.  
  45. TigerXSetup.Name = "TigerXSetup"
  46. TigerXSetup.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  47.  
  48. MainFrame.Name = "MainFrame"
  49. MainFrame.Parent = TigerXSetup
  50. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  51. MainFrame.BorderSizePixel = 0
  52. MainFrame.Position = UDim2.new(0.379687488, 0, 0.334922522, 0)
  53. MainFrame.Size = UDim2.new(0, 462, 0, 277)
  54.  
  55. Design.Name = "Design"
  56. Design.Parent = MainFrame
  57. Design.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  58. Design.BorderSizePixel = 0
  59. Design.Position = UDim2.new(0, 0, -0.000817584631, 0)
  60. Design.Size = UDim2.new(0, 462, 0, 25)
  61.  
  62. MainGUITitleLabel.Name = "MainGUITitleLabel"
  63. MainGUITitleLabel.Parent = Design
  64. MainGUITitleLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  65. MainGUITitleLabel.BackgroundTransparency = 1
  66. MainGUITitleLabel.BorderSizePixel = 0
  67. MainGUITitleLabel.Position = UDim2.new(0.283549786, 0, 0, 0)
  68. MainGUITitleLabel.Size = UDim2.new(0, 200, 0, 25)
  69. MainGUITitleLabel.Font = Enum.Font.SourceSans
  70. MainGUITitleLabel.Text = "Installing Tiger X"
  71. MainGUITitleLabel.TextColor3 = Color3.new(1, 1, 1)
  72. MainGUITitleLabel.TextSize = 20
  73.  
  74. ExitInstaller.Name = "ExitInstaller"
  75. ExitInstaller.Parent = Design
  76. ExitInstaller.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  77. ExitInstaller.BorderSizePixel = 0
  78. ExitInstaller.Position = UDim2.new(0.939393938, 0, 0.0107507315, 0)
  79. ExitInstaller.Size = UDim2.new(0, 28, 0, 24)
  80. ExitInstaller.Font = Enum.Font.SourceSans
  81. ExitInstaller.Text = "X"
  82. ExitInstaller.TextColor3 = Color3.new(0, 0, 0)
  83. ExitInstaller.TextSize = 14
  84.  
  85. TOS.Name = "TOS"
  86. TOS.Parent = MainFrame
  87. TOS.BackgroundColor3 = Color3.new(1, 1, 1)
  88. TOS.BackgroundTransparency = 1
  89. TOS.BorderSizePixel = 0
  90. TOS.Position = UDim2.new(-0.00126482814, 0, 0.0866426006, 0)
  91. TOS.Size = UDim2.new(0, 462, 0, 253)
  92. TOS.Visible = false
  93.  
  94. InstallAgreement.Name = "InstallAgreement"
  95. InstallAgreement.Parent = TOS
  96. InstallAgreement.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  97. InstallAgreement.BorderColor3 = Color3.new(0, 0, 0)
  98. InstallAgreement.BorderSizePixel = 0
  99. InstallAgreement.Position = UDim2.new(0.119047619, 0, 0.0895963535, 0)
  100. InstallAgreement.Size = UDim2.new(0, 352, 0, 169)
  101.  
  102. InstallAgreement1.Name = "InstallAgreement1"
  103. InstallAgreement1.Parent = InstallAgreement
  104. InstallAgreement1.BackgroundColor3 = Color3.new(1, 1, 1)
  105. InstallAgreement1.BackgroundTransparency = 1
  106. InstallAgreement1.BorderSizePixel = 0
  107. InstallAgreement1.Size = UDim2.new(0, 352, 0, 18)
  108. InstallAgreement1.Font = Enum.Font.SourceSans
  109. InstallAgreement1.Text = "  By configuring Tiger X for this PC, You agree to allow settings to be"
  110. InstallAgreement1.TextColor3 = Color3.new(0, 0, 0)
  111. InstallAgreement1.TextSize = 14
  112.  
  113. InstallAgreement2.Name = "InstallAgreement2"
  114. InstallAgreement2.Parent = InstallAgreement
  115. InstallAgreement2.BackgroundColor3 = Color3.new(1, 1, 1)
  116. InstallAgreement2.BackgroundTransparency = 1
  117. InstallAgreement2.BorderSizePixel = 0
  118. InstallAgreement2.Position = UDim2.new(0, 0, 0.106508873, 0)
  119. InstallAgreement2.Size = UDim2.new(0, 352, 0, 18)
  120. InstallAgreement2.Font = Enum.Font.SourceSans
  121. InstallAgreement2.Text = "  stored on a .txt file in your exploit's 'workspace' folder."
  122. InstallAgreement2.TextColor3 = Color3.new(0, 0, 0)
  123. InstallAgreement2.TextSize = 14
  124.  
  125. InstallAgreement3.Name = "InstallAgreement3"
  126. InstallAgreement3.Parent = InstallAgreement
  127. InstallAgreement3.BackgroundColor3 = Color3.new(1, 1, 1)
  128. InstallAgreement3.BackgroundTransparency = 1
  129. InstallAgreement3.BorderSizePixel = 0
  130. InstallAgreement3.Position = UDim2.new(0, 0, 0.248520702, 0)
  131. InstallAgreement3.Size = UDim2.new(0, 352, 0, 18)
  132. InstallAgreement3.Font = Enum.Font.SourceSans
  133. InstallAgreement3.Text = "  Editing and reuploading this exploit without prior permission will"
  134. InstallAgreement3.TextColor3 = Color3.new(0, 0, 0)
  135. InstallAgreement3.TextSize = 14
  136.  
  137. InstallAgreement4.Name = "InstallAgreement4"
  138. InstallAgreement4.Parent = InstallAgreement
  139. InstallAgreement4.BackgroundColor3 = Color3.new(1, 1, 1)
  140. InstallAgreement4.BackgroundTransparency = 1
  141. InstallAgreement4.BorderSizePixel = 0
  142. InstallAgreement4.Position = UDim2.new(0, 0, 0.355029583, 0)
  143. InstallAgreement4.Size = UDim2.new(0, 352, 0, 18)
  144. InstallAgreement4.Font = Enum.Font.SourceSans
  145. InstallAgreement4.Text = "void your Whitelist."
  146. InstallAgreement4.TextColor3 = Color3.new(0, 0, 0)
  147. InstallAgreement4.TextSize = 14
  148.  
  149. InstallAgreement5.Name = "InstallAgreement5"
  150. InstallAgreement5.Parent = InstallAgreement
  151. InstallAgreement5.BackgroundColor3 = Color3.new(1, 1, 1)
  152. InstallAgreement5.BackgroundTransparency = 1
  153. InstallAgreement5.BorderSizePixel = 0
  154. InstallAgreement5.Position = UDim2.new(0, 0, 0.508875728, 0)
  155. InstallAgreement5.Size = UDim2.new(0, 352, 0, 18)
  156. InstallAgreement5.Font = Enum.Font.SourceSans
  157. InstallAgreement5.Text = "If using in another GUI, or in an executor you are developing, please"
  158. InstallAgreement5.TextColor3 = Color3.new(0, 0, 0)
  159. InstallAgreement5.TextSize = 14
  160.  
  161. InstallAgreement6.Name = "InstallAgreement6"
  162. InstallAgreement6.Parent = InstallAgreement
  163. InstallAgreement6.BackgroundColor3 = Color3.new(1, 1, 1)
  164. InstallAgreement6.BackgroundTransparency = 1
  165. InstallAgreement6.BorderSizePixel = 0
  166. InstallAgreement6.Position = UDim2.new(0, 0, 0.615384579, 0)
  167. InstallAgreement6.Size = UDim2.new(0, 352, 0, 18)
  168. InstallAgreement6.Font = Enum.Font.SourceSans
  169. InstallAgreement6.Text = "give appropriate credit."
  170. InstallAgreement6.TextColor3 = Color3.new(0, 0, 0)
  171. InstallAgreement6.TextSize = 14
  172.  
  173. TOSBackButton.Name = "TOSBackButton"
  174. TOSBackButton.Parent = TOS
  175. TOSBackButton.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  176. TOSBackButton.BorderSizePixel = 0
  177. TOSBackButton.Position = UDim2.new(0.119047619, 0, 0.808136284, 0)
  178. TOSBackButton.Size = UDim2.new(0, 127, 0, 39)
  179. TOSBackButton.Font = Enum.Font.SourceSans
  180. TOSBackButton.Text = "Back"
  181. TOSBackButton.TextColor3 = Color3.new(0, 0, 0)
  182. TOSBackButton.TextSize = 14
  183.  
  184. TOSContinueButton.Name = "TOSContinueButton"
  185. TOSContinueButton.Parent = TOS
  186. TOSContinueButton.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  187. TOSContinueButton.BorderSizePixel = 0
  188. TOSContinueButton.Position = UDim2.new(0.413419902, 0, 0.808136284, 0)
  189. TOSContinueButton.Size = UDim2.new(0, 127, 0, 39)
  190. TOSContinueButton.Font = Enum.Font.SourceSans
  191. TOSContinueButton.Text = "Agree and Continue"
  192. TOSContinueButton.TextColor3 = Color3.new(0, 0, 0)
  193. TOSContinueButton.TextSize = 14
  194.  
  195. FirstFrame.Name = "FirstFrame"
  196. FirstFrame.Parent = MainFrame
  197. FirstFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  198. FirstFrame.BackgroundTransparency = 1
  199. FirstFrame.BorderSizePixel = 0
  200. FirstFrame.Position = UDim2.new(0, 0, 0.0866426006, 0)
  201. FirstFrame.Size = UDim2.new(0, 462, 0, 253)
  202.  
  203. StartConfigure.Name = "StartConfigure"
  204. StartConfigure.Parent = FirstFrame
  205. StartConfigure.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  206. StartConfigure.BorderSizePixel = 0
  207. StartConfigure.Position = UDim2.new(0.36796537, 0, 0.770750999, 0)
  208. StartConfigure.Size = UDim2.new(0, 122, 0, 24)
  209. StartConfigure.Font = Enum.Font.SourceSans
  210. StartConfigure.Text = "Start"
  211. StartConfigure.TextColor3 = Color3.new(0, 0, 0)
  212. StartConfigure.TextSize = 14
  213.  
  214. startframetxt1.Name = "startframetxt1"
  215. startframetxt1.Parent = FirstFrame
  216. startframetxt1.BackgroundColor3 = Color3.new(1, 1, 1)
  217. startframetxt1.BackgroundTransparency = 1
  218. startframetxt1.BorderSizePixel = 0
  219. startframetxt1.Position = UDim2.new(0.283549786, 0, 0.181818187, 0)
  220. startframetxt1.Size = UDim2.new(0, 200, 0, 22)
  221. startframetxt1.Font = Enum.Font.SourceSans
  222. startframetxt1.Text = "This wizard will guide you through the configuration of Tiger X. You cannot use Tiger X "
  223. startframetxt1.TextColor3 = Color3.new(0, 0, 0)
  224. startframetxt1.TextSize = 14
  225.  
  226. startframetxt2.Name = "startframetxt2"
  227. startframetxt2.Parent = FirstFrame
  228. startframetxt2.BackgroundColor3 = Color3.new(1, 1, 1)
  229. startframetxt2.BackgroundTransparency = 1
  230. startframetxt2.BorderSizePixel = 0
  231. startframetxt2.Position = UDim2.new(0.283549786, 0, 0.241106719, 0)
  232. startframetxt2.Size = UDim2.new(0, 200, 0, 22)
  233. startframetxt2.Font = Enum.Font.SourceSans
  234. startframetxt2.Text = "without first completing the setup."
  235. startframetxt2.TextColor3 = Color3.new(0, 0, 0)
  236. startframetxt2.TextSize = 14
  237.  
  238. InstallingFrame.Name = "InstallingFrame"
  239. InstallingFrame.Parent = MainFrame
  240. InstallingFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  241. InstallingFrame.Position = UDim2.new(0, 0, 0.0866426006, 0)
  242. InstallingFrame.Size = UDim2.new(0, 462, 0, 253)
  243. InstallingFrame.Visible = false
  244.  
  245. InstallingText.Name = "InstallingText"
  246. InstallingText.Parent = InstallingFrame
  247. InstallingText.BackgroundColor3 = Color3.new(1, 1, 1)
  248. InstallingText.BackgroundTransparency = 1
  249. InstallingText.BorderSizePixel = 0
  250. InstallingText.Position = UDim2.new(0.283549786, 0, 0.351778656, 0)
  251. InstallingText.Size = UDim2.new(0, 200, 0, 50)
  252. InstallingText.Font = Enum.Font.SourceSans
  253. InstallingText.Text = "Initialising"
  254. InstallingText.TextColor3 = Color3.new(0, 0, 0)
  255. InstallingText.TextSize = 25
  256.  
  257. FinishedFrame.Name = "FinishedFrame"
  258. FinishedFrame.Parent = MainFrame
  259. FinishedFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  260. FinishedFrame.BackgroundTransparency = 1
  261. FinishedFrame.BorderSizePixel = 0
  262. FinishedFrame.Position = UDim2.new(0, 0, 0.0866426006, 0)
  263. FinishedFrame.Size = UDim2.new(0, 462, 0, 253)
  264. FinishedFrame.Visible = false
  265.  
  266. FinaliseButton.Name = "FinaliseButton"
  267. FinaliseButton.Parent = FinishedFrame
  268. FinaliseButton.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  269. FinaliseButton.BorderSizePixel = 0
  270. FinaliseButton.Position = UDim2.new(0.36796537, 0, 0.770750999, 0)
  271. FinaliseButton.Size = UDim2.new(0, 122, 0, 24)
  272. FinaliseButton.Font = Enum.Font.SourceSans
  273. FinaliseButton.Text = "Finish and exit"
  274. FinaliseButton.TextColor3 = Color3.new(0, 0, 0)
  275. FinaliseButton.TextSize = 14
  276.  
  277. Checkbox.Name = "Checkbox"
  278. Checkbox.Parent = FinishedFrame
  279. Checkbox.BackgroundColor3 = Color3.new(1, 1, 1)
  280. Checkbox.Position = UDim2.new(0.38961038, 0, 0.395256937, 0)
  281. Checkbox.Size = UDim2.new(0, 12, 0, 12)
  282. Checkbox.Visible = false
  283. Checkbox.Image = "rbxassetid://48138474"
  284.  
  285. StartTxLabel.Name = "StartTxLabel"
  286. StartTxLabel.Parent = FinishedFrame
  287. StartTxLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  288. StartTxLabel.BackgroundTransparency = 1
  289. StartTxLabel.BorderSizePixel = 0
  290. StartTxLabel.Position = UDim2.new(0.415584415, 0, 0.3715415, 0)
  291. StartTxLabel.Size = UDim2.new(0, 93, 0, 24)
  292. StartTxLabel.Font = Enum.Font.SourceSans
  293. StartTxLabel.Text = "Launch Tiger X"
  294. StartTxLabel.TextColor3 = Color3.new(0, 0, 0)
  295. StartTxLabel.TextSize = 14
  296.  
  297. CheckboxPressed.Name = "CheckboxPressed"
  298. CheckboxPressed.Parent = FinishedFrame
  299. CheckboxPressed.BackgroundColor3 = Color3.new(1, 1, 1)
  300. CheckboxPressed.Position = UDim2.new(0.38961038, 0, 0.395256937, 0)
  301. CheckboxPressed.Size = UDim2.new(0, 12, 0, 12)
  302. CheckboxPressed.Image = "rbxassetid://3033026035"
  303.  
  304. CredentialsFrame.Name = "CredentialsFrame"
  305. CredentialsFrame.Parent = MainFrame
  306. CredentialsFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  307. CredentialsFrame.BackgroundTransparency = 1
  308. CredentialsFrame.BorderSizePixel = 0
  309. CredentialsFrame.Position = UDim2.new(0, 0, 0.0866426006, 0)
  310. CredentialsFrame.Size = UDim2.new(0, 462, 0, 253)
  311. CredentialsFrame.Visible = false
  312.  
  313. UserBox.Name = "UserBox"
  314. UserBox.Parent = CredentialsFrame
  315. UserBox.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  316. UserBox.BorderColor3 = Color3.new(0, 0, 0)
  317. UserBox.BorderSizePixel = 0
  318. UserBox.Position = UDim2.new(0.283549786, 0, 0.252964437, 0)
  319. UserBox.Size = UDim2.new(0, 200, 0, 22)
  320. UserBox.Font = Enum.Font.SourceSans
  321. UserBox.PlaceholderColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  322. UserBox.PlaceholderText = "User name"
  323. UserBox.Text = ""
  324. UserBox.TextColor3 = Color3.new(0, 0, 0)
  325. UserBox.TextSize = 14
  326.  
  327. PassBox.Name = "PassBox"
  328. PassBox.Parent = CredentialsFrame
  329. PassBox.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  330. PassBox.BorderColor3 = Color3.new(0, 0, 0)
  331. PassBox.BorderSizePixel = 0
  332. PassBox.Position = UDim2.new(0.283549786, 0, 0.367588937, 0)
  333. PassBox.Size = UDim2.new(0, 200, 0, 22)
  334. PassBox.Font = Enum.Font.SourceSans
  335. PassBox.PlaceholderColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  336. PassBox.PlaceholderText = "Password"
  337. PassBox.Text = ""
  338. PassBox.TextColor3 = Color3.new(0, 0, 0)
  339. PassBox.TextSize = 14
  340.  
  341. PassConfirmBox.Name = "PassConfirmBox"
  342. PassConfirmBox.Parent = CredentialsFrame
  343. PassConfirmBox.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  344. PassConfirmBox.BorderColor3 = Color3.new(0, 0, 0)
  345. PassConfirmBox.BorderSizePixel = 0
  346. PassConfirmBox.Position = UDim2.new(0.283549786, 0, 0.486166, 0)
  347. PassConfirmBox.Size = UDim2.new(0, 200, 0, 22)
  348. PassConfirmBox.Font = Enum.Font.SourceSans
  349. PassConfirmBox.PlaceholderColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  350. PassConfirmBox.PlaceholderText = "Confirm Password"
  351. PassConfirmBox.Text = ""
  352. PassConfirmBox.TextColor3 = Color3.new(0, 0, 0)
  353. PassConfirmBox.TextSize = 14
  354.  
  355. ConfirmCredentials.Name = "ConfirmCredentials"
  356. ConfirmCredentials.Parent = CredentialsFrame
  357. ConfirmCredentials.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  358. ConfirmCredentials.BorderSizePixel = 0
  359. ConfirmCredentials.Position = UDim2.new(0.354978353, 0, 0.739130437, 0)
  360. ConfirmCredentials.Size = UDim2.new(0, 134, 0, 32)
  361. ConfirmCredentials.Font = Enum.Font.SourceSans
  362. ConfirmCredentials.Text = "Confirm and Continue"
  363. ConfirmCredentials.TextColor3 = Color3.new(0, 0, 0)
  364. ConfirmCredentials.TextSize = 14
  365.  
  366. PassNoMatch.Name = "PassNoMatch"
  367. PassNoMatch.Parent = CredentialsFrame
  368. PassNoMatch.BackgroundColor3 = Color3.new(1, 1, 1)
  369. PassNoMatch.BackgroundTransparency = 1
  370. PassNoMatch.BorderSizePixel = 0
  371. PassNoMatch.Position = UDim2.new(0, 0, 0.486166, 0)
  372. PassNoMatch.Size = UDim2.new(0, 131, 0, 22)
  373. PassNoMatch.Visible = false
  374. PassNoMatch.Font = Enum.Font.SourceSans
  375. PassNoMatch.Text = "Passwords do not match."
  376. PassNoMatch.TextColor3 = Color3.new(1, 0, 0)
  377. PassNoMatch.TextSize = 14
  378.  
  379. CreateCredsLabel.Name = "CreateCredsLabel"
  380. CreateCredsLabel.Parent = CredentialsFrame
  381. CreateCredsLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  382. CreateCredsLabel.BackgroundTransparency = 1
  383. CreateCredsLabel.BorderSizePixel = 0
  384. CreateCredsLabel.Position = UDim2.new(0.283549786, 0, 0.0830039531, 0)
  385. CreateCredsLabel.Size = UDim2.new(0, 200, 0, 25)
  386. CreateCredsLabel.Font = Enum.Font.SourceSans
  387. CreateCredsLabel.Text = "Create an account. This is local, and can be changed in settings."
  388. CreateCredsLabel.TextColor3 = Color3.new(0, 0, 0)
  389. CreateCredsLabel.TextSize = 14
  390.  
  391.  
  392. -- Scripts:
  393.  
  394. ExitInstaller.MouseButton1Down:connect(function()
  395.     TigerXSetup:Destroy()
  396. end)
  397.  
  398. StartConfigure.MouseButton1Down:connect(function()
  399.     FirstFrame.Visible = false
  400.     TOS.Visible = true
  401. end)
  402.  
  403. TOSBackButton.MouseButton1Down:connect(function()
  404.     TOS.Visible = false
  405.     FirstFrame.Visible = true
  406. end)
  407.  
  408. TOSContinueButton.MouseButton1Down:connect(function()
  409.     TOS.Visible = false
  410.     CredentialsFrame.Visible = true
  411. end)
  412.  
  413. ConfirmCredentials.MouseButton1Down:connect(function()
  414.     PassNoMatch.Visible = false
  415.     local user = UserBox.Text
  416.     if PassBox.Text == PassConfirmBox.Text then
  417.         local pass = PassBox.Text
  418.         CredentialsFrame.Visible = false
  419.         InstallingFrame.Visible = true
  420.         InstallingText.Text = 'Fetching data..'
  421.         wait(0.3)
  422.         InstallingText.Text = 'Saving data to file'
  423.         wait(0.1)
  424.         local Prefs = {user, pass}
  425.         local htg = game:GetService('HttpService')
  426.         local Prefse = htg:JSONEncode(Prefs)
  427.         writefile('TigerXPrefs.txt', Prefse)
  428.         InstallingText.Text = "Files Installed."
  429.         InstallingText.Text = 'Finalising Installation'
  430.         wait(1)
  431.         InstallingText.Text = 'Completed.'
  432.         wait(0.1)
  433.         InstallingFrame.Visible = false
  434.         FinishedFrame.Visible = true
  435.        
  436.         checkboxchecked = true
  437.         CheckboxPressed.MouseButton1Down:connect(function()
  438.             CheckboxPressed.Visible = false
  439.             Checkbox.Visible = true
  440.             checkboxchecked = false
  441.         end)
  442.        
  443.         Checkbox.MouseButton1Down:connect(function()
  444.             CheckboxPressed.Visible = true
  445.             Checkbox.Visible = false
  446.             checkboxchecked = true
  447.         end)
  448.        
  449.         FinaliseButton.MouseButton1Down:connect(function()
  450.             if checkboxchecked == true then
  451.                 loadstring(game:HttpGet(('https://pastebin.com/raw/1dSYfa11'),true))()
  452.                 wait(0.1)
  453.                 TigerXSetup:Destroy()
  454.             elseif checkboxchecked == false then
  455.                 wait(0.1)
  456.                 TigerXSetup:Destroy()
  457.             end
  458.         end)
  459.         wait(10)
  460.     else
  461.         PassNoMatch.Visible = true
  462.     end
  463. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement