Advertisement
TigerManGamingYT

Tiger X

Jan 28th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 41.83 KB | None | 0 0
  1. -- Tiger X Version ALPHA 1
  2. -- YOU NEED TO RUN THE TIGER X INSTALLER [https://pastebin.com/raw/rh5xS1uS] 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 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. -- Readfile loader
  7.  
  8. HttpService = game:GetService('HttpService')
  9.  
  10. prefse = readfile('TigerXPrefs.txt')
  11. prefs = HttpService:JSONDecode(prefse)
  12.  
  13. usersname = prefs[1]
  14. pass = prefs[2]
  15.  
  16. -- Objects:
  17.  
  18. local TigerX = Instance.new("ScreenGui")
  19. local LoginFrame = Instance.new("Frame")
  20. local LoginFrame0Design = Instance.new("Frame")
  21. local LoginFrame0Design0Header = Instance.new("TextLabel")
  22. local LoginFrame0Design0ExitButton = Instance.new("TextButton")
  23. local LoginFrame0LoginButton = Instance.new("TextButton")
  24. local LoginFrame0Passbox = Instance.new("TextBox")
  25. local LoginPrivPolicyLabel = Instance.new("TextLabel")
  26. local MainFrame = Instance.new("Frame")
  27. local MainFrame0Design = Instance.new("Frame")
  28. local MainFrame0Design0Header = Instance.new("TextLabel")
  29. local MainFrame0Design0ExitButton = Instance.new("TextButton")
  30. local MainFrame0Design0MinimiseButton = Instance.new("TextButton")
  31. local MainFrame0TigerXlogo = Instance.new("ImageLabel")
  32. local MainFrame0GameSelect = Instance.new("TextButton")
  33. local MainFrame0ScriptExeSelect = Instance.new("TextButton")
  34. local MainFrame0NotesSelect = Instance.new("TextButton")
  35. local MainFrame0PreferencesSelect = Instance.new("TextButton")
  36. local MainFrame0ChangelogFrame = Instance.new("Frame")
  37. local MainFrame0ChangelogFrame0CLBox = Instance.new("TextBox")
  38. local MainFrame0VersionInfo = Instance.new("TextLabel")
  39. local MainFrame0ScriptExecutorFrame = Instance.new("Frame")
  40. local ScriptEXEexecute = Instance.new("TextButton")
  41. local ScriptEXEclear = Instance.new("TextButton")
  42. local ScriptEXEscrollframe = Instance.new("ScrollingFrame")
  43. local ScriptEXEscrolltextbox = Instance.new("TextBox")
  44. local MainFrame0TeleportsSelect = Instance.new("TextButton")
  45. local GameSelectFrame = Instance.new("Frame")
  46. local GameSelectFrame0Design = Instance.new("Frame")
  47. local GameSelectFrame0Design0Header = Instance.new("TextLabel")
  48. local GameSelectFrame0Design0ExitButton = Instance.new("TextButton")
  49. local JailbreakSelect = Instance.new("TextButton")
  50. local JailbreakClose = Instance.new("TextButton")
  51. local PhantomForcesSelect = Instance.new("TextButton")
  52. local PhantomForcesClose = Instance.new("TextButton")
  53. local moregamescomingsoonlabel = Instance.new("TextLabel")
  54. local MP2Close = Instance.new("TextButton")
  55. local MP2Select = Instance.new("TextButton")
  56. local SIS2Select = Instance.new("TextButton")
  57. local SIS2Close = Instance.new("TextButton")
  58. local MadCityClose = Instance.new("TextButton")
  59. local MadCitySelect = Instance.new("TextButton")
  60. local NotesFrame = Instance.new("Frame")
  61. local NotesFrame0Design = Instance.new("Frame")
  62. local NotesFrame0Design0Header = Instance.new("TextLabel")
  63. local NotesFrame0Design0ExitButton = Instance.new("TextButton")
  64. local NotesFrame0ScrollingFrame = Instance.new("ScrollingFrame")
  65. local NotesTextInputBox = Instance.new("TextBox")
  66. local ShowFrame = Instance.new("Frame")
  67. local ShowFrame0TigerXlogo = Instance.new("ImageLabel")
  68. local ShowFrameButton = Instance.new("TextButton")
  69. local TeleportFrame = Instance.new("Frame")
  70. local TeleportFrame0Design = Instance.new("Frame")
  71. local TeleportFrame0Design0Header = Instance.new("TextLabel")
  72. local TeleportFrame0Design0ExitButton = Instance.new("TextButton")
  73. local TeleportFrame0Savelocation = Instance.new("TextButton")
  74. local TeleportFrame0Gotolocation = Instance.new("TextButton")
  75. local TeleportFrame0tptoplayer = Instance.new("TextButton")
  76. local PreferencesFrame = Instance.new("Frame")
  77. local PreferencesFrame0Design = Instance.new("Frame")
  78. local PreferencesFrame0Design0ExitButton = Instance.new("TextButton")
  79. local PreferencesFrame0Design0Header = Instance.new("TextLabel")
  80. local PreferencesDarkMode = Instance.new("TextButton")
  81. local PreferencesPrefixLabel = Instance.new("TextLabel")
  82. local PreferencesPrefixInput = Instance.new("TextBox")
  83. local ExitFrame = Instance.new("Frame")
  84. local ExitFrame0Design = Instance.new("Frame")
  85. local ExitFrame0Design0Header = Instance.new("TextLabel")
  86. local ExitGUICancel = Instance.new("TextButton")
  87. local ExitGUIButton = Instance.new("TextButton")
  88. local ExitConfirmationLabel = Instance.new("TextLabel")
  89.  
  90. --Properties:
  91.  
  92. TigerX.Name = "Tiger X"
  93. TigerX.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  94.  
  95. LoginFrame.Name = "LoginFrame"
  96. LoginFrame.Parent = TigerX
  97. LoginFrame.Active = true
  98. LoginFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  99. LoginFrame.BorderSizePixel = 0
  100. LoginFrame.Position = UDim2.new(0.5, -250, 0.5, -150)
  101. LoginFrame.Size = UDim2.new(0, 500, 0, 300)
  102. LoginFrame.Visible = false
  103.  
  104. LoginFrame0Design.Name = "LoginFrame0Design"
  105. LoginFrame0Design.Parent = LoginFrame
  106. LoginFrame0Design.BackgroundColor3 = Color3.new(0, 0, 0)
  107. LoginFrame0Design.BorderColor3 = Color3.new(0, 0, 0)
  108. LoginFrame0Design.BorderSizePixel = 0
  109. LoginFrame0Design.Size = UDim2.new(0, 500, 0, 24)
  110.  
  111. LoginFrame0Design0Header.Name = "LoginFrame0Design0Header"
  112. LoginFrame0Design0Header.Parent = LoginFrame0Design
  113. LoginFrame0Design0Header.BackgroundColor3 = Color3.new(1, 1, 1)
  114. LoginFrame0Design0Header.BackgroundTransparency = 1
  115. LoginFrame0Design0Header.BorderSizePixel = 0
  116. LoginFrame0Design0Header.Position = UDim2.new(0.333999991, 0, 0, 0)
  117. LoginFrame0Design0Header.Size = UDim2.new(0, 165, 0, 24)
  118. LoginFrame0Design0Header.Font = Enum.Font.SourceSansLight
  119. LoginFrame0Design0Header.Text = "Tiger X Login"
  120. LoginFrame0Design0Header.TextColor3 = Color3.new(1, 1, 1)
  121. LoginFrame0Design0Header.TextSize = 21
  122.  
  123. LoginFrame0Design0ExitButton.Name = "LoginFrame0Design0ExitButton"
  124. LoginFrame0Design0ExitButton.Parent = LoginFrame0Design
  125. LoginFrame0Design0ExitButton.BackgroundColor3 = Color3.new(0.921569, 0, 0)
  126. LoginFrame0Design0ExitButton.BorderSizePixel = 0
  127. LoginFrame0Design0ExitButton.Position = UDim2.new(0.95599997, 0, 0, 0)
  128. LoginFrame0Design0ExitButton.Size = UDim2.new(0, 22, 0, 17)
  129. LoginFrame0Design0ExitButton.Font = Enum.Font.SourceSans
  130. LoginFrame0Design0ExitButton.Text = "X"
  131. LoginFrame0Design0ExitButton.TextColor3 = Color3.new(0, 0, 0)
  132. LoginFrame0Design0ExitButton.TextSize = 14
  133.  
  134. LoginFrame0LoginButton.Name = "LoginFrame0LoginButton"
  135. LoginFrame0LoginButton.Parent = LoginFrame
  136. LoginFrame0LoginButton.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  137. LoginFrame0LoginButton.BorderColor3 = Color3.new(0, 0, 0)
  138. LoginFrame0LoginButton.BorderSizePixel = 0
  139. LoginFrame0LoginButton.Position = UDim2.new(0.300000012, 0, 0.556666672, 0)
  140. LoginFrame0LoginButton.Size = UDim2.new(0, 200, 0, 50)
  141. LoginFrame0LoginButton.Font = Enum.Font.SourceSansLight
  142. LoginFrame0LoginButton.Text = "Launch"
  143. LoginFrame0LoginButton.TextColor3 = Color3.new(0, 0, 0)
  144. LoginFrame0LoginButton.TextSize = 20
  145.  
  146. LoginFrame0Passbox.Name = "LoginFrame0Passbox"
  147. LoginFrame0Passbox.Parent = LoginFrame
  148. LoginFrame0Passbox.BackgroundColor3 = Color3.new(0.921569, 0.921569, 0.921569)
  149. LoginFrame0Passbox.BorderSizePixel = 0
  150. LoginFrame0Passbox.Position = UDim2.new(0.300000012, 0, 0.356666625, 0)
  151. LoginFrame0Passbox.Size = UDim2.new(0, 200, 0, 26)
  152. LoginFrame0Passbox.Font = Enum.Font.SourceSans
  153. LoginFrame0Passbox.PlaceholderText = "Password"
  154. LoginFrame0Passbox.Text = ""
  155. LoginFrame0Passbox.TextColor3 = Color3.new(0, 0, 0)
  156. LoginFrame0Passbox.TextSize = 14
  157.  
  158. LoginPrivPolicyLabel.Name = "LoginPrivPolicyLabel"
  159. LoginPrivPolicyLabel.Parent = LoginFrame
  160. LoginPrivPolicyLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  161. LoginPrivPolicyLabel.BackgroundTransparency = 1
  162. LoginPrivPolicyLabel.BorderSizePixel = 0
  163. LoginPrivPolicyLabel.Position = UDim2.new(0.300000012, 0, 0.916666687, 0)
  164. LoginPrivPolicyLabel.Size = UDim2.new(0, 200, 0, 18)
  165. LoginPrivPolicyLabel.Font = Enum.Font.SourceSans
  166. LoginPrivPolicyLabel.Text = "By using Tiger X, You are allowing the GUI to store settings in your exploit files."
  167. LoginPrivPolicyLabel.TextColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  168. LoginPrivPolicyLabel.TextSize = 14
  169.  
  170. MainFrame.Name = "MainFrame"
  171. MainFrame.Parent = TigerX
  172. MainFrame.Active = true
  173. MainFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  174. MainFrame.BorderSizePixel = 0
  175. MainFrame.Position = UDim2.new(0.317629606, 0, 0.261451125, 0)
  176. MainFrame.Selectable = true
  177. MainFrame.Size = UDim2.new(0, 700, 0, 400)
  178. MainFrame.Visible = false
  179.  
  180. MainFrame0Design.Name = "MainFrame0Design"
  181. MainFrame0Design.Parent = MainFrame
  182. MainFrame0Design.BackgroundColor3 = Color3.new(0, 0, 0)
  183. MainFrame0Design.BorderColor3 = Color3.new(0, 0, 0)
  184. MainFrame0Design.BorderSizePixel = 0
  185. MainFrame0Design.Size = UDim2.new(0, 700, 0, 24)
  186.  
  187. MainFrame0Design0Header.Name = "MainFrame0Design0Header"
  188. MainFrame0Design0Header.Parent = MainFrame0Design
  189. MainFrame0Design0Header.BackgroundColor3 = Color3.new(1, 1, 1)
  190. MainFrame0Design0Header.BackgroundTransparency = 1
  191. MainFrame0Design0Header.BorderSizePixel = 0
  192. MainFrame0Design0Header.Position = UDim2.new(0.382571429, 0, 0, 0)
  193. MainFrame0Design0Header.Size = UDim2.new(0, 165, 0, 24)
  194. MainFrame0Design0Header.Font = Enum.Font.SourceSansLight
  195. MainFrame0Design0Header.Text = "Tiger X"
  196. MainFrame0Design0Header.TextColor3 = Color3.new(1, 1, 1)
  197. MainFrame0Design0Header.TextSize = 21
  198.  
  199. MainFrame0Design0ExitButton.Name = "MainFrame0Design0ExitButton"
  200. MainFrame0Design0ExitButton.Parent = MainFrame0Design
  201. MainFrame0Design0ExitButton.BackgroundColor3 = Color3.new(0.921569, 0, 0)
  202. MainFrame0Design0ExitButton.BorderSizePixel = 0
  203. MainFrame0Design0ExitButton.Position = UDim2.new(0.970000029, 0, 0.0199999996, 0)
  204. MainFrame0Design0ExitButton.Size = UDim2.new(0, 21, 0, 17)
  205. MainFrame0Design0ExitButton.Font = Enum.Font.SourceSans
  206. MainFrame0Design0ExitButton.Text = "X"
  207. MainFrame0Design0ExitButton.TextColor3 = Color3.new(0, 0, 0)
  208. MainFrame0Design0ExitButton.TextSize = 14
  209.  
  210. MainFrame0Design0MinimiseButton.Name = "MainFrame0Design0MinimiseButton"
  211. MainFrame0Design0MinimiseButton.Parent = MainFrame0Design
  212. MainFrame0Design0MinimiseButton.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  213. MainFrame0Design0MinimiseButton.BorderSizePixel = 0
  214. MainFrame0Design0MinimiseButton.Position = UDim2.new(0.93900001, 0, -0, 0)
  215. MainFrame0Design0MinimiseButton.Size = UDim2.new(0, 22, 0, 17)
  216. MainFrame0Design0MinimiseButton.Font = Enum.Font.SourceSans
  217. MainFrame0Design0MinimiseButton.Text = "-"
  218. MainFrame0Design0MinimiseButton.TextColor3 = Color3.new(0, 0, 0)
  219. MainFrame0Design0MinimiseButton.TextSize = 14
  220.  
  221. MainFrame0TigerXlogo.Name = "MainFrame0TigerXlogo"
  222. MainFrame0TigerXlogo.Parent = MainFrame
  223. MainFrame0TigerXlogo.BackgroundColor3 = Color3.new(1, 1, 1)
  224. MainFrame0TigerXlogo.BackgroundTransparency = 1
  225. MainFrame0TigerXlogo.BorderSizePixel = 0
  226. MainFrame0TigerXlogo.Position = UDim2.new(0.541428566, 0, -0.317499995, 0)
  227. MainFrame0TigerXlogo.Size = UDim2.new(0, 406, 0, 401)
  228. MainFrame0TigerXlogo.Image = "rbxassetid://2756349847"
  229.  
  230. MainFrame0GameSelect.Name = "MainFrame0GameSelect"
  231. MainFrame0GameSelect.Parent = MainFrame
  232. MainFrame0GameSelect.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  233. MainFrame0GameSelect.BorderColor3 = Color3.new(0, 0, 0)
  234. MainFrame0GameSelect.BorderSizePixel = 0
  235. MainFrame0GameSelect.Position = UDim2.new(0.0228571426, 0, 0.107500002, 0)
  236. MainFrame0GameSelect.Size = UDim2.new(0, 164, 0, 37)
  237. MainFrame0GameSelect.Font = Enum.Font.SourceSansLight
  238. MainFrame0GameSelect.Text = "Games"
  239. MainFrame0GameSelect.TextColor3 = Color3.new(0, 0, 0)
  240. MainFrame0GameSelect.TextSize = 18
  241.  
  242. MainFrame0ScriptExeSelect.Name = "MainFrame0ScriptExeSelect"
  243. MainFrame0ScriptExeSelect.Parent = MainFrame
  244. MainFrame0ScriptExeSelect.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  245. MainFrame0ScriptExeSelect.BorderSizePixel = 0
  246. MainFrame0ScriptExeSelect.Position = UDim2.new(0.0228571426, 0, 0.222499996, 0)
  247. MainFrame0ScriptExeSelect.Size = UDim2.new(0, 164, 0, 37)
  248. MainFrame0ScriptExeSelect.Font = Enum.Font.SourceSansLight
  249. MainFrame0ScriptExeSelect.Text = "Script Executor"
  250. MainFrame0ScriptExeSelect.TextColor3 = Color3.new(0, 0, 0)
  251. MainFrame0ScriptExeSelect.TextSize = 18
  252.  
  253. MainFrame0NotesSelect.Name = "MainFrame0NotesSelect"
  254. MainFrame0NotesSelect.Parent = MainFrame
  255. MainFrame0NotesSelect.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  256. MainFrame0NotesSelect.BorderSizePixel = 0
  257. MainFrame0NotesSelect.Position = UDim2.new(0.0228571426, 0, 0.337500006, 0)
  258. MainFrame0NotesSelect.Size = UDim2.new(0, 164, 0, 37)
  259. MainFrame0NotesSelect.Font = Enum.Font.SourceSansLight
  260. MainFrame0NotesSelect.Text = "Notes"
  261. MainFrame0NotesSelect.TextColor3 = Color3.new(0, 0, 0)
  262. MainFrame0NotesSelect.TextSize = 18
  263.  
  264. MainFrame0PreferencesSelect.Name = "MainFrame0PreferencesSelect"
  265. MainFrame0PreferencesSelect.Parent = MainFrame
  266. MainFrame0PreferencesSelect.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  267. MainFrame0PreferencesSelect.BorderSizePixel = 0
  268. MainFrame0PreferencesSelect.Position = UDim2.new(0.0228571426, 0, 0.819999993, 0)
  269. MainFrame0PreferencesSelect.Size = UDim2.new(0, 164, 0, 37)
  270. MainFrame0PreferencesSelect.Font = Enum.Font.SourceSansLight
  271. MainFrame0PreferencesSelect.Text = "Preferences"
  272. MainFrame0PreferencesSelect.TextColor3 = Color3.new(0.588235, 0.588235, 0.588235)
  273. MainFrame0PreferencesSelect.TextSize = 18
  274.  
  275. MainFrame0ChangelogFrame.Name = "MainFrame0ChangelogFrame"
  276. MainFrame0ChangelogFrame.Parent = MainFrame
  277. MainFrame0ChangelogFrame.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  278. MainFrame0ChangelogFrame.BackgroundTransparency = 0.30000001192093
  279. MainFrame0ChangelogFrame.BorderColor3 = Color3.new(0, 0, 0)
  280. MainFrame0ChangelogFrame.BorderSizePixel = 0
  281. MainFrame0ChangelogFrame.Position = UDim2.new(0.3157143, 0, 0.264999986, 0)
  282. MainFrame0ChangelogFrame.Size = UDim2.new(0, 458, 0, 259)
  283.  
  284. MainFrame0ChangelogFrame0CLBox.Name = "MainFrame0ChangelogFrame0CLBox"
  285. MainFrame0ChangelogFrame0CLBox.Parent = MainFrame0ChangelogFrame
  286. MainFrame0ChangelogFrame0CLBox.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  287. MainFrame0ChangelogFrame0CLBox.BorderSizePixel = 0
  288. MainFrame0ChangelogFrame0CLBox.Size = UDim2.new(0, 458, 0, 259)
  289. MainFrame0ChangelogFrame0CLBox.ClearTextOnFocus = false
  290. MainFrame0ChangelogFrame0CLBox.Font = Enum.Font.SourceSans
  291. MainFrame0ChangelogFrame0CLBox.MultiLine = true
  292. MainFrame0ChangelogFrame0CLBox.Text = "Fetching Changelog.."
  293. MainFrame0ChangelogFrame0CLBox.TextColor3 = Color3.new(0, 0, 0)
  294. MainFrame0ChangelogFrame0CLBox.TextSize = 16
  295.  
  296. MainFrame0VersionInfo.Name = "MainFrame0VersionInfo"
  297. MainFrame0VersionInfo.Parent = MainFrame
  298. MainFrame0VersionInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  299. MainFrame0VersionInfo.BackgroundTransparency = 1
  300. MainFrame0VersionInfo.BorderSizePixel = 0
  301. MainFrame0VersionInfo.Position = UDim2.new(0.857142866, 0, 0.944999993, 0)
  302. MainFrame0VersionInfo.Size = UDim2.new(0, 68, 0, 22)
  303. MainFrame0VersionInfo.Font = Enum.Font.SourceSans
  304. MainFrame0VersionInfo.Text = "Fetching Version Info.."
  305. MainFrame0VersionInfo.TextColor3 = Color3.new(0.627451, 0.627451, 0.627451)
  306. MainFrame0VersionInfo.TextSize = 14
  307. MainFrame0VersionInfo.TextTransparency = 0.10000000149012
  308.  
  309. MainFrame0ScriptExecutorFrame.Name = "MainFrame0ScriptExecutorFrame"
  310. MainFrame0ScriptExecutorFrame.Parent = MainFrame
  311. MainFrame0ScriptExecutorFrame.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  312. MainFrame0ScriptExecutorFrame.BackgroundTransparency = 0.30000001192093
  313. MainFrame0ScriptExecutorFrame.BorderColor3 = Color3.new(0, 0, 0)
  314. MainFrame0ScriptExecutorFrame.BorderSizePixel = 0
  315. MainFrame0ScriptExecutorFrame.Position = UDim2.new(0.3157143, 0, 0.264999986, 0)
  316. MainFrame0ScriptExecutorFrame.Size = UDim2.new(0, 458, 0, 259)
  317. MainFrame0ScriptExecutorFrame.Visible = false
  318.  
  319. ScriptEXEexecute.Name = "ScriptEXEexecute"
  320. ScriptEXEexecute.Parent = MainFrame0ScriptExecutorFrame
  321. ScriptEXEexecute.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  322. ScriptEXEexecute.BorderSizePixel = 0
  323. ScriptEXEexecute.Position = UDim2.new(-0.314410388, 0, 0.490347534, 0)
  324. ScriptEXEexecute.Size = UDim2.new(0, 103, 0, 41)
  325. ScriptEXEexecute.Font = Enum.Font.SourceSans
  326. ScriptEXEexecute.Text = "Execute"
  327. ScriptEXEexecute.TextColor3 = Color3.new(0, 0, 0)
  328. ScriptEXEexecute.TextSize = 14
  329.  
  330. ScriptEXEclear.Name = "ScriptEXEclear"
  331. ScriptEXEclear.Parent = MainFrame0ScriptExecutorFrame
  332. ScriptEXEclear.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  333. ScriptEXEclear.BorderSizePixel = 0
  334. ScriptEXEclear.Position = UDim2.new(-0.314410567, 0, 0.694980741, 0)
  335. ScriptEXEclear.Size = UDim2.new(0, 103, 0, 41)
  336. ScriptEXEclear.Font = Enum.Font.SourceSans
  337. ScriptEXEclear.Text = "Clear"
  338. ScriptEXEclear.TextColor3 = Color3.new(0, 0, 0)
  339. ScriptEXEclear.TextSize = 14
  340.  
  341. ScriptEXEscrollframe.Name = "ScriptEXEscrollframe"
  342. ScriptEXEscrollframe.Parent = MainFrame0ScriptExecutorFrame
  343. ScriptEXEscrollframe.BackgroundColor3 = Color3.new(1, 1, 1)
  344. ScriptEXEscrollframe.BackgroundTransparency = 1
  345. ScriptEXEscrollframe.Size = UDim2.new(0, 458, 0, 259)
  346.  
  347. ScriptEXEscrolltextbox.Name = "ScriptEXEscrolltextbox"
  348. ScriptEXEscrolltextbox.Parent = ScriptEXEscrollframe
  349. ScriptEXEscrolltextbox.BackgroundColor3 = Color3.new(1, 1, 1)
  350. ScriptEXEscrolltextbox.BackgroundTransparency = 1
  351. ScriptEXEscrolltextbox.BorderSizePixel = 0
  352. ScriptEXEscrolltextbox.Position = UDim2.new(0, 0, -0.00123552233, 0)
  353. ScriptEXEscrolltextbox.Size = UDim2.new(0, 447, 0, 999999)
  354. ScriptEXEscrolltextbox.ClearTextOnFocus = false
  355. ScriptEXEscrolltextbox.Font = Enum.Font.SourceSans
  356. ScriptEXEscrolltextbox.MultiLine = true
  357. ScriptEXEscrolltextbox.PlaceholderColor3 = Color3.new(0, 0, 0)
  358. ScriptEXEscrolltextbox.PlaceholderText = "-- Can execute 999999 lines of code."
  359. ScriptEXEscrolltextbox.Text = ""
  360. ScriptEXEscrolltextbox.TextColor3 = Color3.new(0, 0, 0)
  361. ScriptEXEscrolltextbox.TextSize = 14
  362. ScriptEXEscrolltextbox.TextXAlignment = Enum.TextXAlignment.Left
  363. ScriptEXEscrolltextbox.TextYAlignment = Enum.TextYAlignment.Top
  364.  
  365. MainFrame0TeleportsSelect.Name = "MainFrame0TeleportsSelect"
  366. MainFrame0TeleportsSelect.Parent = MainFrame
  367. MainFrame0TeleportsSelect.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  368. MainFrame0TeleportsSelect.BorderSizePixel = 0
  369. MainFrame0TeleportsSelect.Position = UDim2.new(0.0228571426, 0, 0.457500011, 0)
  370. MainFrame0TeleportsSelect.Size = UDim2.new(0, 164, 0, 37)
  371. MainFrame0TeleportsSelect.Font = Enum.Font.SourceSansLight
  372. MainFrame0TeleportsSelect.Text = "Teleport"
  373. MainFrame0TeleportsSelect.TextColor3 = Color3.new(0, 0, 0)
  374. MainFrame0TeleportsSelect.TextSize = 18
  375.  
  376. GameSelectFrame.Name = "GameSelectFrame"
  377. GameSelectFrame.Parent = TigerX
  378. GameSelectFrame.Active = true
  379. GameSelectFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  380. GameSelectFrame.BorderSizePixel = 0
  381. GameSelectFrame.Position = UDim2.new(0.688792884, 0, 0.262643009, 0)
  382. GameSelectFrame.Size = UDim2.new(0, 257, 0, 400)
  383. GameSelectFrame.Visible = false
  384.  
  385. GameSelectFrame0Design.Name = "GameSelectFrame0Design"
  386. GameSelectFrame0Design.Parent = GameSelectFrame
  387. GameSelectFrame0Design.BackgroundColor3 = Color3.new(0, 0, 0)
  388. GameSelectFrame0Design.BorderColor3 = Color3.new(0, 0, 0)
  389. GameSelectFrame0Design.BorderSizePixel = 0
  390. GameSelectFrame0Design.Size = UDim2.new(0, 257, 0, 23)
  391.  
  392. GameSelectFrame0Design0Header.Name = "GameSelectFrame0Design0Header"
  393. GameSelectFrame0Design0Header.Parent = GameSelectFrame0Design
  394. GameSelectFrame0Design0Header.BackgroundColor3 = Color3.new(1, 1, 1)
  395. GameSelectFrame0Design0Header.BackgroundTransparency = 1
  396. GameSelectFrame0Design0Header.BorderSizePixel = 0
  397. GameSelectFrame0Design0Header.Position = UDim2.new(0.278926015, 0, 0, 0)
  398. GameSelectFrame0Design0Header.Size = UDim2.new(0, 100, 0, 24)
  399. GameSelectFrame0Design0Header.Font = Enum.Font.SourceSansLight
  400. GameSelectFrame0Design0Header.Text = "Game Selector"
  401. GameSelectFrame0Design0Header.TextColor3 = Color3.new(1, 1, 1)
  402. GameSelectFrame0Design0Header.TextSize = 21
  403.  
  404. GameSelectFrame0Design0ExitButton.Name = "GameSelectFrame0Design0ExitButton"
  405. GameSelectFrame0Design0ExitButton.Parent = GameSelectFrame0Design
  406. GameSelectFrame0Design0ExitButton.BackgroundColor3 = Color3.new(0.921569, 0, 0)
  407. GameSelectFrame0Design0ExitButton.BorderSizePixel = 0
  408. GameSelectFrame0Design0ExitButton.Position = UDim2.new(0.915634036, 0, -0.0199999996, 0)
  409. GameSelectFrame0Design0ExitButton.Size = UDim2.new(0, 21, 0, 17)
  410. GameSelectFrame0Design0ExitButton.Font = Enum.Font.SourceSans
  411. GameSelectFrame0Design0ExitButton.Text = "X"
  412. GameSelectFrame0Design0ExitButton.TextColor3 = Color3.new(0, 0, 0)
  413. GameSelectFrame0Design0ExitButton.TextSize = 14
  414.  
  415. JailbreakSelect.Name = "JailbreakSelect"
  416. JailbreakSelect.Parent = GameSelectFrame
  417. JailbreakSelect.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  418. JailbreakSelect.BorderSizePixel = 0
  419. JailbreakSelect.Position = UDim2.new(0, 0, 0.0949999988, 0)
  420. JailbreakSelect.Size = UDim2.new(0, 228, 0, 50)
  421. JailbreakSelect.Font = Enum.Font.SourceSans
  422. JailbreakSelect.Text = "Jailbreak"
  423. JailbreakSelect.TextColor3 = Color3.new(0, 0, 0)
  424. JailbreakSelect.TextSize = 14
  425.  
  426. JailbreakClose.Name = "JailbreakClose"
  427. JailbreakClose.Parent = GameSelectFrame
  428. JailbreakClose.BackgroundColor3 = Color3.new(0.784314, 0, 0)
  429. JailbreakClose.BorderSizePixel = 0
  430. JailbreakClose.Position = UDim2.new(0.887159526, 0, 0.0949999988, 0)
  431. JailbreakClose.Size = UDim2.new(0, 29, 0, 50)
  432. JailbreakClose.Font = Enum.Font.SourceSans
  433. JailbreakClose.Text = "X"
  434. JailbreakClose.TextColor3 = Color3.new(0, 0, 0)
  435. JailbreakClose.TextSize = 14
  436.  
  437. PhantomForcesSelect.Name = "PhantomForcesSelect"
  438. PhantomForcesSelect.Parent = GameSelectFrame
  439. PhantomForcesSelect.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  440. PhantomForcesSelect.BorderSizePixel = 0
  441. PhantomForcesSelect.Position = UDim2.new(0, 0, 0.219999999, 0)
  442. PhantomForcesSelect.Size = UDim2.new(0, 228, 0, 50)
  443. PhantomForcesSelect.Font = Enum.Font.SourceSans
  444. PhantomForcesSelect.Text = "Phantom Forces"
  445. PhantomForcesSelect.TextColor3 = Color3.new(0, 0, 0)
  446. PhantomForcesSelect.TextSize = 14
  447.  
  448. PhantomForcesClose.Name = "PhantomForcesClose"
  449. PhantomForcesClose.Parent = GameSelectFrame
  450. PhantomForcesClose.BackgroundColor3 = Color3.new(0.784314, 0, 0)
  451. PhantomForcesClose.BorderSizePixel = 0
  452. PhantomForcesClose.Position = UDim2.new(0.887159526, 0, 0.219999999, 0)
  453. PhantomForcesClose.Size = UDim2.new(0, 29, 0, 50)
  454. PhantomForcesClose.Font = Enum.Font.SourceSans
  455. PhantomForcesClose.Text = "X"
  456. PhantomForcesClose.TextColor3 = Color3.new(0, 0, 0)
  457. PhantomForcesClose.TextSize = 14
  458.  
  459. moregamescomingsoonlabel.Name = "moregamescomingsoonlabel"
  460. moregamescomingsoonlabel.Parent = GameSelectFrame
  461. moregamescomingsoonlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  462. moregamescomingsoonlabel.BackgroundTransparency = 1
  463. moregamescomingsoonlabel.BorderSizePixel = 0
  464. moregamescomingsoonlabel.Position = UDim2.new(0.108949415, 0, 0.837499976, 0)
  465. moregamescomingsoonlabel.Size = UDim2.new(0, 200, 0, 50)
  466. moregamescomingsoonlabel.Font = Enum.Font.SourceSansLight
  467. moregamescomingsoonlabel.Text = "More Games Coming Soon"
  468. moregamescomingsoonlabel.TextColor3 = Color3.new(0, 0, 0)
  469. moregamescomingsoonlabel.TextSize = 20
  470.  
  471. MP2Close.Name = "MP2Close"
  472. MP2Close.Parent = GameSelectFrame
  473. MP2Close.BackgroundColor3 = Color3.new(0.784314, 0, 0)
  474. MP2Close.BorderSizePixel = 0
  475. MP2Close.Position = UDim2.new(0.887159526, 0, 0.344999999, 0)
  476. MP2Close.Size = UDim2.new(0, 29, 0, 50)
  477. MP2Close.Font = Enum.Font.SourceSans
  478. MP2Close.Text = "X"
  479. MP2Close.TextColor3 = Color3.new(0, 0, 0)
  480. MP2Close.TextSize = 14
  481.  
  482. MP2Select.Name = "MP2Select"
  483. MP2Select.Parent = GameSelectFrame
  484. MP2Select.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  485. MP2Select.BorderSizePixel = 0
  486. MP2Select.Position = UDim2.new(0, 0, 0.344999999, 0)
  487. MP2Select.Size = UDim2.new(0, 228, 0, 50)
  488. MP2Select.Font = Enum.Font.SourceSans
  489. MP2Select.Text = "Mad Paintball 2"
  490. MP2Select.TextColor3 = Color3.new(0, 0, 0)
  491. MP2Select.TextSize = 14
  492.  
  493. SIS2Select.Name = "SIS2Select"
  494. SIS2Select.Parent = GameSelectFrame
  495. SIS2Select.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  496. SIS2Select.BorderSizePixel = 0
  497. SIS2Select.Position = UDim2.new(0, 0, 0.469999999, 0)
  498. SIS2Select.Size = UDim2.new(0, 228, 0, 50)
  499. SIS2Select.Font = Enum.Font.SourceSans
  500. SIS2Select.Text = "Stop It Slender! 2"
  501. SIS2Select.TextColor3 = Color3.new(0, 0, 0)
  502. SIS2Select.TextSize = 14
  503.  
  504. SIS2Close.Name = "SIS2Close"
  505. SIS2Close.Parent = GameSelectFrame
  506. SIS2Close.BackgroundColor3 = Color3.new(0.784314, 0, 0)
  507. SIS2Close.BorderSizePixel = 0
  508. SIS2Close.Position = UDim2.new(0.887159526, 0, 0.469999999, 0)
  509. SIS2Close.Size = UDim2.new(0, 29, 0, 50)
  510. SIS2Close.Font = Enum.Font.SourceSans
  511. SIS2Close.Text = "X"
  512. SIS2Close.TextColor3 = Color3.new(0, 0, 0)
  513. SIS2Close.TextSize = 14
  514.  
  515. MadCityClose.Name = "MadCityClose"
  516. MadCityClose.Parent = GameSelectFrame
  517. MadCityClose.BackgroundColor3 = Color3.new(0.784314, 0, 0)
  518. MadCityClose.BorderSizePixel = 0
  519. MadCityClose.Position = UDim2.new(0.887159526, 0, 0.595000029, 0)
  520. MadCityClose.Size = UDim2.new(0, 29, 0, 50)
  521. MadCityClose.Font = Enum.Font.SourceSans
  522. MadCityClose.Text = "X"
  523. MadCityClose.TextColor3 = Color3.new(0, 0, 0)
  524. MadCityClose.TextSize = 14
  525.  
  526. MadCitySelect.Name = "MadCitySelect"
  527. MadCitySelect.Parent = GameSelectFrame
  528. MadCitySelect.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  529. MadCitySelect.BorderSizePixel = 0
  530. MadCitySelect.Position = UDim2.new(0, 0, 0.595000029, 0)
  531. MadCitySelect.Size = UDim2.new(0, 228, 0, 50)
  532. MadCitySelect.Font = Enum.Font.SourceSans
  533. MadCitySelect.Text = "Mad City"
  534. MadCitySelect.TextColor3 = Color3.new(0, 0, 0)
  535. MadCitySelect.TextSize = 14
  536.  
  537. NotesFrame.Name = "NotesFrame"
  538. NotesFrame.Parent = TigerX
  539. NotesFrame.Active = true
  540. NotesFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  541. NotesFrame.BorderSizePixel = 0
  542. NotesFrame.Position = UDim2.new(0.198506892, 0, 0.262643009, 0)
  543. NotesFrame.Size = UDim2.new(0, 219, 0, 219)
  544. NotesFrame.Visible = false
  545.  
  546. NotesFrame0Design.Name = "NotesFrame0Design"
  547. NotesFrame0Design.Parent = NotesFrame
  548. NotesFrame0Design.BackgroundColor3 = Color3.new(0, 0, 0)
  549. NotesFrame0Design.BorderColor3 = Color3.new(0, 0, 0)
  550. NotesFrame0Design.BorderSizePixel = 0
  551. NotesFrame0Design.Size = UDim2.new(0, 219, 0, 24)
  552.  
  553. NotesFrame0Design0Header.Name = "NotesFrame0Design0Header"
  554. NotesFrame0Design0Header.Parent = NotesFrame0Design
  555. NotesFrame0Design0Header.BackgroundColor3 = Color3.new(1, 1, 1)
  556. NotesFrame0Design0Header.BackgroundTransparency = 1
  557. NotesFrame0Design0Header.BorderSizePixel = 0
  558. NotesFrame0Design0Header.Position = UDim2.new(0.259283751, 0, 0, 0)
  559. NotesFrame0Design0Header.Size = UDim2.new(0, 104, 0, 24)
  560. NotesFrame0Design0Header.Font = Enum.Font.SourceSansLight
  561. NotesFrame0Design0Header.Text = "Notes"
  562. NotesFrame0Design0Header.TextColor3 = Color3.new(1, 1, 1)
  563. NotesFrame0Design0Header.TextSize = 21
  564.  
  565. NotesFrame0Design0ExitButton.Name = "NotesFrame0Design0ExitButton"
  566. NotesFrame0Design0ExitButton.Parent = NotesFrame0Design
  567. NotesFrame0Design0ExitButton.BackgroundColor3 = Color3.new(0.921569, 0, 0)
  568. NotesFrame0Design0ExitButton.BorderSizePixel = 0
  569. NotesFrame0Design0ExitButton.Position = UDim2.new(0.907999992, 0, -0.0500000007, 0)
  570. NotesFrame0Design0ExitButton.Size = UDim2.new(0, 21, 0, 17)
  571. NotesFrame0Design0ExitButton.Font = Enum.Font.SourceSans
  572. NotesFrame0Design0ExitButton.Text = "X"
  573. NotesFrame0Design0ExitButton.TextColor3 = Color3.new(0, 0, 0)
  574. NotesFrame0Design0ExitButton.TextSize = 14
  575.  
  576. NotesFrame0ScrollingFrame.Name = "NotesFrame0ScrollingFrame"
  577. NotesFrame0ScrollingFrame.Parent = NotesFrame
  578. NotesFrame0ScrollingFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  579. NotesFrame0ScrollingFrame.Position = UDim2.new(0, 0, 0.10958904, 0)
  580. NotesFrame0ScrollingFrame.Size = UDim2.new(0, 219, 0, 195)
  581.  
  582. NotesTextInputBox.Name = "NotesTextInputBox"
  583. NotesTextInputBox.Parent = NotesFrame0ScrollingFrame
  584. NotesTextInputBox.BackgroundColor3 = Color3.new(1, 1, 1)
  585. NotesTextInputBox.BorderSizePixel = 0
  586. NotesTextInputBox.Size = UDim2.new(0, 206, 0, 1000000)
  587. NotesTextInputBox.ClearTextOnFocus = false
  588. NotesTextInputBox.Font = Enum.Font.SourceSans
  589. NotesTextInputBox.MultiLine = true
  590. NotesTextInputBox.Text = ""
  591. NotesTextInputBox.TextColor3 = Color3.new(0, 0, 0)
  592. NotesTextInputBox.TextSize = 14
  593.  
  594. ShowFrame.Name = "ShowFrame"
  595. ShowFrame.Parent = TigerX
  596. ShowFrame.Active = true
  597. ShowFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  598. ShowFrame.BorderSizePixel = 0
  599. ShowFrame.Position = UDim2.new(0, 0, 0.617936134, 0)
  600. ShowFrame.Size = UDim2.new(0, 85, 0, 33)
  601. ShowFrame.Visible = false
  602.  
  603. ShowFrame0TigerXlogo.Name = "ShowFrame0TigerXlogo"
  604. ShowFrame0TigerXlogo.Parent = ShowFrame
  605. ShowFrame0TigerXlogo.BackgroundColor3 = Color3.new(1, 1, 1)
  606. ShowFrame0TigerXlogo.BackgroundTransparency = 1
  607. ShowFrame0TigerXlogo.BorderSizePixel = 0
  608. ShowFrame0TigerXlogo.Position = UDim2.new(-0.54092443, 0, -1.92356181, 0)
  609. ShowFrame0TigerXlogo.Size = UDim2.new(0, 172, 0, 167)
  610. ShowFrame0TigerXlogo.Image = "rbxassetid://2756349847"
  611.  
  612. ShowFrameButton.Name = "ShowFrameButton"
  613. ShowFrameButton.Parent = ShowFrame
  614. ShowFrameButton.BackgroundColor3 = Color3.new(1, 1, 1)
  615. ShowFrameButton.BackgroundTransparency = 1
  616. ShowFrameButton.BorderSizePixel = 0
  617. ShowFrameButton.Size = UDim2.new(0, 85, 0, 33)
  618. ShowFrameButton.Font = Enum.Font.SourceSans
  619. ShowFrameButton.Text = ""
  620. ShowFrameButton.TextColor3 = Color3.new(0, 0, 0)
  621. ShowFrameButton.TextSize = 14
  622.  
  623. TeleportFrame.Name = "TeleportFrame"
  624. TeleportFrame.Parent = TigerX
  625. TeleportFrame.Active = true
  626. TeleportFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  627. TeleportFrame.BorderSizePixel = 0
  628. TeleportFrame.Position = UDim2.new(0.197657406, 0, 0.544262648, 0)
  629. TeleportFrame.Size = UDim2.new(0, 219, 0, 163)
  630. TeleportFrame.Visible = false
  631.  
  632. TeleportFrame0Design.Name = "TeleportFrame0Design"
  633. TeleportFrame0Design.Parent = TeleportFrame
  634. TeleportFrame0Design.BackgroundColor3 = Color3.new(0, 0, 0)
  635. TeleportFrame0Design.BorderColor3 = Color3.new(0, 0, 0)
  636. TeleportFrame0Design.BorderSizePixel = 0
  637. TeleportFrame0Design.Size = UDim2.new(0, 219, 0, 24)
  638.  
  639. TeleportFrame0Design0Header.Name = "TeleportFrame0Design0Header"
  640. TeleportFrame0Design0Header.Parent = TeleportFrame0Design
  641. TeleportFrame0Design0Header.BackgroundColor3 = Color3.new(1, 1, 1)
  642. TeleportFrame0Design0Header.BackgroundTransparency = 1
  643. TeleportFrame0Design0Header.BorderSizePixel = 0
  644. TeleportFrame0Design0Header.Position = UDim2.new(0.259283751, 0, 0, 0)
  645. TeleportFrame0Design0Header.Size = UDim2.new(0, 104, 0, 24)
  646. TeleportFrame0Design0Header.Font = Enum.Font.SourceSansLight
  647. TeleportFrame0Design0Header.Text = "Teleport"
  648. TeleportFrame0Design0Header.TextColor3 = Color3.new(1, 1, 1)
  649. TeleportFrame0Design0Header.TextSize = 21
  650.  
  651. TeleportFrame0Design0ExitButton.Name = "TeleportFrame0Design0ExitButton"
  652. TeleportFrame0Design0ExitButton.Parent = TeleportFrame0Design
  653. TeleportFrame0Design0ExitButton.BackgroundColor3 = Color3.new(0.921569, 0, 0)
  654. TeleportFrame0Design0ExitButton.BorderSizePixel = 0
  655. TeleportFrame0Design0ExitButton.Position = UDim2.new(0.907999992, 0, -0.0500000007, 0)
  656. TeleportFrame0Design0ExitButton.Size = UDim2.new(0, 21, 0, 17)
  657. TeleportFrame0Design0ExitButton.Font = Enum.Font.SourceSans
  658. TeleportFrame0Design0ExitButton.Text = "X"
  659. TeleportFrame0Design0ExitButton.TextColor3 = Color3.new(0, 0, 0)
  660. TeleportFrame0Design0ExitButton.TextSize = 14
  661.  
  662. TeleportFrame0Savelocation.Name = "TeleportFrame0Savelocation"
  663. TeleportFrame0Savelocation.Parent = TeleportFrame
  664. TeleportFrame0Savelocation.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  665. TeleportFrame0Savelocation.BorderSizePixel = 0
  666. TeleportFrame0Savelocation.Position = UDim2.new(0, 0, 0.613496959, 0)
  667. TeleportFrame0Savelocation.Size = UDim2.new(0, 219, 0, 25)
  668. TeleportFrame0Savelocation.Font = Enum.Font.SourceSans
  669. TeleportFrame0Savelocation.Text = "Save a Location [CTRL+N]"
  670. TeleportFrame0Savelocation.TextColor3 = Color3.new(0, 0, 0)
  671. TeleportFrame0Savelocation.TextSize = 14
  672.  
  673. TeleportFrame0Gotolocation.Name = "TeleportFrame0Gotolocation"
  674. TeleportFrame0Gotolocation.Parent = TeleportFrame
  675. TeleportFrame0Gotolocation.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  676. TeleportFrame0Gotolocation.BorderSizePixel = 0
  677. TeleportFrame0Gotolocation.Position = UDim2.new(0, 0, 0.766871214, 0)
  678. TeleportFrame0Gotolocation.Size = UDim2.new(0, 219, 0, 25)
  679. TeleportFrame0Gotolocation.Font = Enum.Font.SourceSans
  680. TeleportFrame0Gotolocation.Text = "Teleport to the saved location [CTRL+M]"
  681. TeleportFrame0Gotolocation.TextColor3 = Color3.new(0, 0, 0)
  682. TeleportFrame0Gotolocation.TextSize = 14
  683.  
  684. TeleportFrame0tptoplayer.Name = "TeleportFrame0tptoplayer"
  685. TeleportFrame0tptoplayer.Parent = TeleportFrame
  686. TeleportFrame0tptoplayer.BackgroundColor3 = Color3.new(0.686275, 0.686275, 0.686275)
  687. TeleportFrame0tptoplayer.BorderSizePixel = 0
  688. TeleportFrame0tptoplayer.Position = UDim2.new(0, 0, 0.226993859, 0)
  689. TeleportFrame0tptoplayer.Size = UDim2.new(0, 219, 0, 50)
  690. TeleportFrame0tptoplayer.Font = Enum.Font.SourceSans
  691. TeleportFrame0tptoplayer.Text = "Teleport to a player"
  692. TeleportFrame0tptoplayer.TextColor3 = Color3.new(0.352941, 0.352941, 0.352941)
  693. TeleportFrame0tptoplayer.TextSize = 14
  694.  
  695. PreferencesFrame.Name = "PreferencesFrame"
  696. PreferencesFrame.Parent = TigerX
  697. PreferencesFrame.Active = true
  698. PreferencesFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  699. PreferencesFrame.BorderSizePixel = 0
  700. PreferencesFrame.Position = UDim2.new(0.360499233, 0, 0.300836354, 0)
  701. PreferencesFrame.Size = UDim2.new(0, 534, 0, 334)
  702. PreferencesFrame.Visible = false
  703.  
  704. PreferencesFrame0Design.Name = "PreferencesFrame0Design"
  705. PreferencesFrame0Design.Parent = PreferencesFrame
  706. PreferencesFrame0Design.BackgroundColor3 = Color3.new(0, 0, 0)
  707. PreferencesFrame0Design.BorderColor3 = Color3.new(0, 0, 0)
  708. PreferencesFrame0Design.BorderSizePixel = 0
  709. PreferencesFrame0Design.Size = UDim2.new(0, 534, 0, 24)
  710.  
  711. PreferencesFrame0Design0ExitButton.Name = "PreferencesFrame0Design0ExitButton"
  712. PreferencesFrame0Design0ExitButton.Parent = PreferencesFrame0Design
  713. PreferencesFrame0Design0ExitButton.BackgroundColor3 = Color3.new(0.921569, 0, 0)
  714. PreferencesFrame0Design0ExitButton.BorderSizePixel = 0
  715. PreferencesFrame0Design0ExitButton.Position = UDim2.new(0.960434437, 0, -0.00833333284, 0)
  716. PreferencesFrame0Design0ExitButton.Size = UDim2.new(0, 21, 0, 17)
  717. PreferencesFrame0Design0ExitButton.Font = Enum.Font.SourceSans
  718. PreferencesFrame0Design0ExitButton.Text = "X"
  719. PreferencesFrame0Design0ExitButton.TextColor3 = Color3.new(0, 0, 0)
  720. PreferencesFrame0Design0ExitButton.TextSize = 14
  721.  
  722. PreferencesFrame0Design0Header.Name = "PreferencesFrame0Design0Header"
  723. PreferencesFrame0Design0Header.Parent = PreferencesFrame0Design
  724. PreferencesFrame0Design0Header.BackgroundColor3 = Color3.new(1, 1, 1)
  725. PreferencesFrame0Design0Header.BackgroundTransparency = 1
  726. PreferencesFrame0Design0Header.BorderSizePixel = 0
  727. PreferencesFrame0Design0Header.Position = UDim2.new(0.403478503, 0, 0, 0)
  728. PreferencesFrame0Design0Header.Size = UDim2.new(0, 104, 0, 24)
  729. PreferencesFrame0Design0Header.Font = Enum.Font.SourceSansLight
  730. PreferencesFrame0Design0Header.Text = "Preferences"
  731. PreferencesFrame0Design0Header.TextColor3 = Color3.new(1, 1, 1)
  732. PreferencesFrame0Design0Header.TextSize = 21
  733.  
  734. PreferencesDarkMode.Name = "PreferencesDarkMode"
  735. PreferencesDarkMode.Parent = PreferencesFrame
  736. PreferencesDarkMode.BackgroundColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  737. PreferencesDarkMode.BorderSizePixel = 0
  738. PreferencesDarkMode.Position = UDim2.new(0.0280898884, 0, 0.137724549, 0)
  739. PreferencesDarkMode.Size = UDim2.new(0, 152, 0, 43)
  740. PreferencesDarkMode.Font = Enum.Font.SourceSans
  741. PreferencesDarkMode.Text = "Dark mode"
  742. PreferencesDarkMode.TextColor3 = Color3.new(0.588235, 0.588235, 0.588235)
  743. PreferencesDarkMode.TextSize = 14
  744.  
  745. PreferencesPrefixLabel.Name = "PreferencesPrefixLabel"
  746. PreferencesPrefixLabel.Parent = PreferencesFrame
  747. PreferencesPrefixLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  748. PreferencesPrefixLabel.BackgroundTransparency = 1
  749. PreferencesPrefixLabel.BorderSizePixel = 0
  750. PreferencesPrefixLabel.Position = UDim2.new(0.0280898884, 0, 0.302395195, 0)
  751. PreferencesPrefixLabel.Size = UDim2.new(0, 61, 0, 24)
  752. PreferencesPrefixLabel.Font = Enum.Font.SourceSans
  753. PreferencesPrefixLabel.Text = "Gui Prefix:"
  754. PreferencesPrefixLabel.TextColor3 = Color3.new(0, 0, 0)
  755. PreferencesPrefixLabel.TextSize = 14
  756.  
  757. PreferencesPrefixInput.Name = "PreferencesPrefixInput"
  758. PreferencesPrefixInput.Parent = PreferencesFrame
  759. PreferencesPrefixInput.BackgroundColor3 = Color3.new(1, 1, 1)
  760. PreferencesPrefixInput.Position = UDim2.new(0.147940069, 0, 0.302395195, 0)
  761. PreferencesPrefixInput.Size = UDim2.new(0, 21, 0, 24)
  762. PreferencesPrefixInput.Font = Enum.Font.SourceSans
  763. PreferencesPrefixInput.Text = "'"
  764. PreferencesPrefixInput.TextColor3 = Color3.new(0, 0, 0)
  765. PreferencesPrefixInput.TextSize = 14
  766.  
  767. ExitFrame.Name = "ExitFrame"
  768. ExitFrame.Parent = TigerX
  769. ExitFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  770. ExitFrame.Position = UDim2.new(0.438020825, 0, 0.4135876, 0)
  771. ExitFrame.Size = UDim2.new(0, 237, 0, 144)
  772. ExitFrame.Visible = false
  773.  
  774. ExitFrame0Design.Name = "ExitFrame0Design"
  775. ExitFrame0Design.Parent = ExitFrame
  776. ExitFrame0Design.BackgroundColor3 = Color3.new(0, 0, 0)
  777. ExitFrame0Design.BorderColor3 = Color3.new(0, 0, 0)
  778. ExitFrame0Design.BorderSizePixel = 0
  779. ExitFrame0Design.Size = UDim2.new(0, 237, 0, 23)
  780.  
  781. ExitFrame0Design0Header.Name = "ExitFrame0Design0Header"
  782. ExitFrame0Design0Header.Parent = ExitFrame0Design
  783. ExitFrame0Design0Header.BackgroundColor3 = Color3.new(1, 1, 1)
  784. ExitFrame0Design0Header.BackgroundTransparency = 1
  785. ExitFrame0Design0Header.BorderSizePixel = 0
  786. ExitFrame0Design0Header.Position = UDim2.new(0.278926015, 0, 0, 0)
  787. ExitFrame0Design0Header.Size = UDim2.new(0, 100, 0, 24)
  788. ExitFrame0Design0Header.Font = Enum.Font.SourceSansLight
  789. ExitFrame0Design0Header.Text = "Closing Tiger X"
  790. ExitFrame0Design0Header.TextColor3 = Color3.new(1, 1, 1)
  791. ExitFrame0Design0Header.TextSize = 21
  792.  
  793. ExitGUICancel.Name = "ExitGUICancel"
  794. ExitGUICancel.Parent = ExitFrame0Design
  795. ExitGUICancel.BackgroundColor3 = Color3.new(0.882353, 0.882353, 0.882353)
  796. ExitGUICancel.BorderSizePixel = 0
  797. ExitGUICancel.Position = UDim2.new(0.0886075869, 0, 4.0869565, 0)
  798. ExitGUICancel.Size = UDim2.new(0, 86, 0, 26)
  799. ExitGUICancel.Font = Enum.Font.SourceSans
  800. ExitGUICancel.Text = "Cancel"
  801. ExitGUICancel.TextColor3 = Color3.new(0, 0, 0)
  802. ExitGUICancel.TextSize = 14
  803.  
  804. ExitGUIButton.Name = "ExitGUIButton"
  805. ExitGUIButton.Parent = ExitFrame0Design
  806. ExitGUIButton.BackgroundColor3 = Color3.new(0.784314, 0, 0)
  807. ExitGUIButton.BorderSizePixel = 0
  808. ExitGUIButton.Position = UDim2.new(0.514767945, 0, 4.0869565, 0)
  809. ExitGUIButton.Size = UDim2.new(0, 86, 0, 26)
  810. ExitGUIButton.Font = Enum.Font.SourceSans
  811. ExitGUIButton.Text = "Exit"
  812. ExitGUIButton.TextColor3 = Color3.new(0, 0, 0)
  813. ExitGUIButton.TextSize = 14
  814.  
  815. ExitConfirmationLabel.Name = "ExitConfirmationLabel"
  816. ExitConfirmationLabel.Parent = ExitFrame0Design
  817. ExitConfirmationLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  818. ExitConfirmationLabel.BackgroundTransparency = 1
  819. ExitConfirmationLabel.BorderSizePixel = 0
  820. ExitConfirmationLabel.Position = UDim2.new(0.0675105453, 0, 1.39130437, 0)
  821. ExitConfirmationLabel.Size = UDim2.new(0, 200, 0, 50)
  822. ExitConfirmationLabel.Font = Enum.Font.SourceSans
  823. ExitConfirmationLabel.Text = "Are you sure you want to close Tiger X?"
  824. ExitConfirmationLabel.TextColor3 = Color3.new(0, 0, 0)
  825. ExitConfirmationLabel.TextSize = 14
  826.  
  827. -- Scripts:
  828.  
  829. MainFrame0ChangelogFrame0CLBox.Text = game:HttpGet('https://pastebin.com/raw/wZy9dfKH')
  830. MainFrame0VersionInfo.Text = game:HttpGet('https://pastebin.com/raw/rRUeM9LW')
  831.  
  832.  
  833.  
  834. LoginFrame.Visible = true
  835. MainFrame.Visible = false
  836. GameSelectFrame.Visible = false
  837.  
  838.  
  839.  
  840. LoginFrame0LoginButton.MouseButton1Down:connect(function()
  841.     if LoginFrame0Passbox.Text == pass then
  842.         LoginFrame.Visible = false
  843.         MainFrame.Visible = true
  844.     else
  845.         LoginFrame0LoginButton.BackgroundColor3 = Color3.new(200, 0, 0)
  846.         LoginFrame0LoginButton.Text = 'Incorrect Authkey'
  847.         wait(2)
  848.         LoginFrame0LoginButton.BackgroundColor3 = Color3.new(225, 225, 225)
  849.         LoginFrame0LoginButton.Text = 'Launch'
  850.     end
  851. end)
  852.  
  853. LoginFrame0Design0ExitButton.MouseButton1Down:connect(function()
  854.     ExitFrame.Visible = true
  855.     ExitGUIButton.MouseButton1Down:connect(function()
  856.         TigerX:Destroy()
  857.     end)
  858.     ExitGUICancel.MouseButton1Down:connect(function()
  859.         ExitFrame.Visible = false
  860.     end)
  861. end)
  862.  
  863.  
  864. MainFrame0Design0ExitButton.MouseButton1Down:connect(function()
  865.     ExitFrame.Visible = true
  866.         ExitGUIButton.MouseButton1Down:connect(function()
  867.             TigerX:Destroy()
  868.         end)
  869.         ExitGUICancel.MouseButton1Down:connect(function()
  870.             ExitFrame.Visible = false
  871.         end)
  872. end)
  873.  
  874. MainFrame0NotesSelect.MouseButton1Down:connect(function()
  875.     NotesFrame.Visible = true
  876. end)
  877.  
  878. NotesFrame0Design0ExitButton.MouseButton1Down:connect(function()
  879.     NotesFrame.Visible = false
  880. end)
  881.  
  882. MainFrame0TeleportsSelect.MouseButton1Down:connect(function()
  883.     TeleportFrame.Visible = true
  884. end)
  885.  
  886. TeleportFrame0Design0ExitButton.MouseButton1Down:connect(function()
  887.     TeleportFrame.Visible = false
  888. end)
  889.  
  890. TeleportFrame0Savelocation.MouseButton1Down:connect(function()
  891.     SavedCFrame = game.Players.LocalPlayer.Character.Torso.CFrame
  892. end)
  893.  
  894. TeleportFrame0Gotolocation.MouseButton1Down:connect(function()
  895.     game.Players.LocalPlayer.Character.Torso.CFrame = CFrame.new(SavedCFrame)
  896. end)
  897.  
  898. MainFrame0GameSelect.MouseButton1Down:connect(function()
  899.     GameSelectFrame.Visible = true
  900. end)
  901.  
  902. JailbreakSelect.MouseButton1Down:connect(function()
  903.     loadstring(game:HttpGet(('https://pastebin.com/raw/vC5X2Gwk'),true))()
  904. end)
  905.  
  906. JailbreakClose.MouseButton1Down:connect(function()
  907.     game.CoreGui.TigerV2:Destroy()
  908. end)
  909.  
  910. MP2Select.MouseButton1Down:connect(function()
  911.     loadstring(game:HttpGet(('https://pastebin.com/raw/8t5rQW2i'),true))()
  912. end)
  913.  
  914. MP2Close.MouseButton1Down:connect(function()
  915.     game.CoreGui.SIS2UI:Destroy()
  916. end)
  917.  
  918. PhantomForcesSelect.MouseButton1Down:connect(function()
  919.     loadstring(game:HttpGet((''),true))()
  920. end)
  921.  
  922. PhantomForcesClose.MouseButton1Down:connect(function()
  923.    
  924. end)
  925.  
  926. SIS2Select.MouseButton1Down:connect(function()
  927.     loadstring(game:HttpGet(('https://pastebin.com/raw/h0tPxWB1'),true))()
  928. end)
  929.  
  930. SIS2Close.MouseButton1Down:connect(function()
  931.     game.CoreGui.SIS2UI:Destroy()
  932. end)
  933.  
  934. MadCitySelect.MouseButton1Down:connect(function()
  935.     loadstring(game:HttpGet((''),true))()
  936. end)
  937.  
  938. MadCityClose.MouseButton1Down:connect(function()
  939.    
  940. end)
  941.  
  942. GameSelectFrame0Design0ExitButton.MouseButton1Down:connect(function()
  943.     GameSelectFrame.Visible = false
  944. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement