AlphaSploit

Jailbreak GUI

Jan 16th, 2018
424
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.42 KB | None | 0 0
  1. --idc if you like gui to lua converter or not, it makes my life easier.
  2.  
  3. --[[
  4. toggle = true;
  5. if toggle then
  6. workspace.Jewelrys.Jewelry.Lasers:Destroy();
  7. workspace.Jewelrys.Jewelry.FloorLasers:Destroy();
  8. workspace.Jewelrys.Jewelry.FakeDoor:Destroy();
  9. workspace.Jewelrys.Jewelry.Cameras:Destroy();
  10. workspace.Banks.Bank.Lasers:Destroy();
  11. workspace.Banks.Bank.Door:Destroy();
  12. workspace.Banks.Bank.SideDoor:Destroy();
  13. workspace.Banks.Bank.InsideDoor:Destroy();
  14. workspace.Banks.Bank.FrontDoor:Destroy();
  15. workspace.Doors:Destroy();
  16. end--]]
  17.  
  18. repeat wait() until game.Players.LocalPlayer and game.Players.LocalPlayer.Character
  19. changelog = [[
  20. QUOTE: "Mr X is still a faggot."
  21.  
  22. [*] Only supporting jailbreak...
  23. (for now at-least)
  24. [+] Added teleportation functions.
  25. [+] Cars you can tp to:
  26. Lambo;
  27. Buggati;
  28. Camaro;
  29. Motorcycle;
  30. ]]
  31.  
  32. -- Objects
  33.  
  34. local ScreenGui = Instance.new("ScreenGui")
  35. local GuiLabel = Instance.new("TextLabel")
  36. local GlobalFrame = Instance.new("Frame")
  37. local HomeContainer = Instance.new("Frame")
  38. local HomeFrame = Instance.new("Frame")
  39. local TextLogLabel = Instance.new("TextLabel")
  40. local ChangelogLabel = Instance.new("TextLabel")
  41. local TeleContainer = Instance.new("Frame")
  42. local BankTeleOut = Instance.new("TextButton")
  43. local BankTeleIn = Instance.new("TextButton")
  44. local JewelryTeleOut = Instance.new("TextButton")
  45. local JewelryTeleTop = Instance.new("TextButton")
  46. local JewelryTeleIn = Instance.new("TextButton")
  47. local CrimTele1 = Instance.new("TextButton")
  48. local PoliceTele2 = Instance.new("TextButton")
  49. local CrimTele2 = Instance.new("TextButton")
  50. local PoliceTelePrison = Instance.new("TextButton")
  51. local PersonTele = Instance.new("TextButton")
  52. local PersonTeleInput = Instance.new("TextBox")
  53. local MoneyLabel = Instance.new("TextLabel")
  54. local HealthLabel = Instance.new("TextLabel")
  55. local TabFrame = Instance.new("Frame")
  56. local TabTeleButton = Instance.new("TextButton")
  57. local TabExploitsButton = Instance.new("TextButton")
  58. local ClassyImage = Instance.new("ImageLabel")
  59. local CredtLabel = Instance.new("TextLabel")
  60. local MinimizeButton = Instance.new("TextButton")
  61. local ExploitsContainer = Instance.new("Frame")
  62. local TabDebugButton = Instance.new("TextButton")
  63. local DebugContainer = Instance.new("Frame")
  64. local ScrollingFrame = Instance.new("ScrollingFrame")
  65. local VehicleTeleInput = Instance.new("TextBox")
  66. local VehicleTele = Instance.new("TextButton")
  67.  
  68. _cur = GlobalFrame
  69. containers = {TeleContainer, ExploitsContainer, DebugContainer}
  70. vers = "Classy's Hub | Luck is not real | "
  71.  
  72. p = game.Players.LocalPlayer
  73. c = p.Character
  74. root = c.HumanoidRootPart
  75.  
  76. -- Properties
  77.  
  78. ScreenGui.Parent = game.CoreGui
  79.  
  80. GuiLabel.Name = "GuiLabel"
  81. GuiLabel.Parent = ScreenGui
  82. GuiLabel.Active = true
  83. GuiLabel.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  84. GuiLabel.BorderSizePixel = 0
  85. GuiLabel.Draggable = true
  86. GuiLabel.Position = UDim2.new(0, 300, 0, 200)
  87. GuiLabel.Size = UDim2.new(0, 450, 0, 25)
  88. GuiLabel.ZIndex = 2
  89. GuiLabel.Font = Enum.Font.Bodoni
  90. GuiLabel.FontSize = Enum.FontSize.Size24
  91. GuiLabel.Text = vers
  92. GuiLabel.TextColor3 = Color3.new(1, 1, 1)
  93. GuiLabel.TextSize = 22
  94. GuiLabel.TextXAlignment = Enum.TextXAlignment.Left
  95.  
  96. --[[
  97.  
  98.  
  99.  
  100. =-=-=-=-=-=-=-=SEPERATOR=-=-=-=-=-=-=-=
  101.  
  102.  
  103.  
  104.  
  105. --]]
  106.  
  107. GlobalFrame.Name = "GlobalFrame"
  108. GlobalFrame.Parent = GuiLabel
  109. GlobalFrame.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  110. GlobalFrame.BorderSizePixel = 0
  111. GlobalFrame.Position = UDim2.new(0, 120, 0, 25)
  112. GlobalFrame.Size = UDim2.new(0, 330, 0, 250)
  113. GlobalFrame.ZIndex = 2
  114.  
  115. --[[
  116.  
  117.  
  118.  
  119. =-=-=-=-=-=-=-=SEPERATOR=-=-=-=-=-=-=-=
  120.  
  121.  
  122.  
  123.  
  124. --]]
  125.  
  126. HomeContainer.Name = "HomeContainer"
  127. HomeContainer.Parent = GuiLabel
  128. HomeContainer.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  129. HomeContainer.BackgroundTransparency = 1
  130. HomeContainer.BorderSizePixel = 0
  131. HomeContainer.Position = UDim2.new(0, 120, 0, 25)
  132. HomeContainer.Size = UDim2.new(0, 330, 0, 250)
  133. HomeContainer.Visible = true
  134. HomeContainer.ZIndex = 2
  135.  
  136. HomeFrame.Name = "HomeFrame"
  137. HomeFrame.Parent = HomeContainer
  138. HomeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  139. HomeFrame.BackgroundTransparency = 0.5
  140. HomeFrame.BorderSizePixel = 0
  141. HomeFrame.Position = UDim2.new(0, 20, 0, 50)
  142. HomeFrame.Size = UDim2.new(0, 290, 0, 180)
  143. HomeFrame.ZIndex = 4
  144.  
  145. TextLogLabel.Name = "TextLogLabel"
  146. TextLogLabel.Parent = HomeFrame
  147. TextLogLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  148. TextLogLabel.BackgroundTransparency = 1
  149. TextLogLabel.BorderSizePixel = 0
  150. TextLogLabel.Size = UDim2.new(0, 290, 0, 180)
  151. TextLogLabel.ZIndex = 5
  152. TextLogLabel.Font = Enum.Font.Code
  153. TextLogLabel.FontSize = Enum.FontSize.Size14
  154. TextLogLabel.Text = changelog
  155. TextLogLabel.TextColor3 = Color3.new(1, 1, 1)
  156. TextLogLabel.TextSize = 14
  157. TextLogLabel.TextXAlignment = Enum.TextXAlignment.Left
  158. TextLogLabel.TextYAlignment = Enum.TextYAlignment.Top
  159.  
  160. ChangelogLabel.Name = "ChangelogLabel"
  161. ChangelogLabel.Parent = HomeContainer
  162. ChangelogLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  163. ChangelogLabel.BackgroundTransparency = 0.5
  164. ChangelogLabel.BorderSizePixel = 0
  165. ChangelogLabel.Position = UDim2.new(0, 20, 0, 10)
  166. ChangelogLabel.Size = UDim2.new(0, 290, 0, 30)
  167. ChangelogLabel.ZIndex = 4
  168. ChangelogLabel.Font = Enum.Font.SourceSans
  169. ChangelogLabel.FontSize = Enum.FontSize.Size14
  170. ChangelogLabel.Text = "Changelog:"
  171. ChangelogLabel.TextColor3 = Color3.new(1, 1, 1)
  172. ChangelogLabel.TextScaled = true
  173. ChangelogLabel.TextSize = 14
  174. ChangelogLabel.TextWrapped = true
  175.  
  176. --[[
  177.  
  178.  
  179.  
  180. =-=-=-=-=-=-=-=SEPERATOR=-=-=-=-=-=-=-=
  181.  
  182.  
  183.  
  184.  
  185. --]]
  186.  
  187. TeleContainer.Name = "TeleContainer"
  188. TeleContainer.Parent = GuiLabel
  189. TeleContainer.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  190. TeleContainer.BackgroundTransparency = 1
  191. TeleContainer.BorderSizePixel = 0
  192. TeleContainer.Position = UDim2.new(0, 120, 0, 25)
  193. TeleContainer.Size = UDim2.new(0, 330, 0, 250)
  194. TeleContainer.Visible = false
  195. TeleContainer.ZIndex = 2
  196.  
  197. BankTeleOut.Name = "BankTeleOut"
  198. BankTeleOut.Parent = TeleContainer
  199. BankTeleOut.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  200. BankTeleOut.BorderSizePixel = 0
  201. BankTeleOut.Position = UDim2.new(0, 10, 0, 10)
  202. BankTeleOut.Size = UDim2.new(0, 150, 0, 20)
  203. BankTeleOut.ZIndex = 3
  204. BankTeleOut.Font = Enum.Font.SourceSans
  205. BankTeleOut.FontSize = Enum.FontSize.Size14
  206. BankTeleOut.Text = "BANK OUTSIDE"
  207. BankTeleOut.TextColor3 = Color3.new(1, 1, 1)
  208. BankTeleOut.TextSize = 14
  209. BankTeleOut.MouseButton1Click:connect(function()
  210. TeleBankOuter()
  211. end)
  212.  
  213. BankTeleIn.Name = "BankTeleIn"
  214. BankTeleIn.Parent = TeleContainer
  215. BankTeleIn.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  216. BankTeleIn.BorderSizePixel = 0
  217. BankTeleIn.Position = UDim2.new(0, 170, 0, 10)
  218. BankTeleIn.Size = UDim2.new(0, 150, 0, 20)
  219. BankTeleIn.ZIndex = 3
  220. BankTeleIn.Font = Enum.Font.SourceSans
  221. BankTeleIn.FontSize = Enum.FontSize.Size14
  222. BankTeleIn.Text = "BANK INSIDE"
  223. BankTeleIn.TextColor3 = Color3.new(1, 1, 1)
  224. BankTeleIn.TextSize = 14
  225. BankTeleIn.MouseButton1Click:connect(function()
  226. TeleBankInner()
  227. end)
  228.  
  229. JewelryTeleOut.Name = "JewelryTeleOut"
  230. JewelryTeleOut.Parent = TeleContainer
  231. JewelryTeleOut.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  232. JewelryTeleOut.BorderSizePixel = 0
  233. JewelryTeleOut.Position = UDim2.new(0, 10, 0, 40)
  234. JewelryTeleOut.Size = UDim2.new(0, 100, 0, 20)
  235. JewelryTeleOut.ZIndex = 3
  236. JewelryTeleOut.Font = Enum.Font.SourceSans
  237. JewelryTeleOut.FontSize = Enum.FontSize.Size14
  238. JewelryTeleOut.Text = "JEWELRY OUTSIDE"
  239. JewelryTeleOut.TextColor3 = Color3.new(1, 1, 1)
  240. JewelryTeleOut.TextSize = 14
  241. JewelryTeleOut.MouseButton1Click:connect(function()
  242. TeleJewlOuter()
  243. end)
  244.  
  245. JewelryTeleTop.Name = "JewelryTeleTop"
  246. JewelryTeleTop.Parent = TeleContainer
  247. JewelryTeleTop.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  248. JewelryTeleTop.BorderSizePixel = 0
  249. JewelryTeleTop.Position = UDim2.new(0, 115, 0, 40)
  250. JewelryTeleTop.Size = UDim2.new(0, 100, 0, 20)
  251. JewelryTeleTop.ZIndex = 3
  252. JewelryTeleTop.Font = Enum.Font.SourceSans
  253. JewelryTeleTop.FontSize = Enum.FontSize.Size14
  254. JewelryTeleTop.Text = "JEWELRY TOP"
  255. JewelryTeleTop.TextColor3 = Color3.new(1, 1, 1)
  256. JewelryTeleTop.TextSize = 14
  257. JewelryTeleTop.MouseButton1Click:connect(function()
  258. TeleJewlTop()
  259. end)
  260.  
  261. JewelryTeleIn.Name = "JewelryTeleIn"
  262. JewelryTeleIn.Parent = TeleContainer
  263. JewelryTeleIn.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  264. JewelryTeleIn.BorderSizePixel = 0
  265. JewelryTeleIn.Position = UDim2.new(0, 220, 0, 40)
  266. JewelryTeleIn.Size = UDim2.new(0, 100, 0, 20)
  267. JewelryTeleIn.ZIndex = 3
  268. JewelryTeleIn.Font = Enum.Font.SourceSans
  269. JewelryTeleIn.FontSize = Enum.FontSize.Size14
  270. JewelryTeleIn.Text = "JEWELRY INSIDE"
  271. JewelryTeleIn.TextColor3 = Color3.new(1, 1, 1)
  272. JewelryTeleIn.TextSize = 14
  273. JewelryTeleIn.MouseButton1Click:connect(function()
  274. TeleJewlInner()
  275. end)
  276.  
  277. CrimTele1.Name = "CrimTele1"
  278. CrimTele1.Parent = TeleContainer
  279. CrimTele1.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  280. CrimTele1.BorderSizePixel = 0
  281. CrimTele1.Position = UDim2.new(0, 10, 0, 70)
  282. CrimTele1.Size = UDim2.new(0, 150, 0, 20)
  283. CrimTele1.ZIndex = 3
  284. CrimTele1.Font = Enum.Font.SourceSans
  285. CrimTele1.FontSize = Enum.FontSize.Size14
  286. CrimTele1.Text = "CRIM BASE 1"
  287. CrimTele1.TextColor3 = Color3.new(1, 1, 1)
  288. CrimTele1.TextSize = 14
  289. CrimTele1.MouseButton1Click:connect(function()
  290. TeleCrimBase1()
  291. end)
  292.  
  293. PoliceTele2.Name = "PoliceTele2"
  294. PoliceTele2.Parent = TeleContainer
  295. PoliceTele2.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  296. PoliceTele2.BorderSizePixel = 0
  297. PoliceTele2.Position = UDim2.new(0, 170, 0, 100)
  298. PoliceTele2.Size = UDim2.new(0, 150, 0, 20)
  299. PoliceTele2.ZIndex = 3
  300. PoliceTele2.Font = Enum.Font.SourceSans
  301. PoliceTele2.FontSize = Enum.FontSize.Size14
  302. PoliceTele2.Text = "POLICE STATION 2"
  303. PoliceTele2.TextColor3 = Color3.new(1, 1, 1)
  304. PoliceTele2.TextSize = 14
  305. PoliceTele2.MouseButton1Click:connect(function()
  306. TelePolice2()
  307. end)
  308.  
  309. CrimTele2.Name = "CrimTele2"
  310. CrimTele2.Parent = TeleContainer
  311. CrimTele2.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  312. CrimTele2.BorderSizePixel = 0
  313. CrimTele2.Position = UDim2.new(0, 170, 0, 70)
  314. CrimTele2.Size = UDim2.new(0, 150, 0, 20)
  315. CrimTele2.ZIndex = 3
  316. CrimTele2.Font = Enum.Font.SourceSans
  317. CrimTele2.FontSize = Enum.FontSize.Size14
  318. CrimTele2.Text = "CRIM BASE 2"
  319. CrimTele2.TextColor3 = Color3.new(1, 1, 1)
  320. CrimTele2.TextSize = 14
  321. CrimTele2.MouseButton1Click:connect(function()
  322. TeleCrimBase2()
  323. end)
  324.  
  325. PoliceTelePrison.Name = "PoliceTelePrison"
  326. PoliceTelePrison.Parent = TeleContainer
  327. PoliceTelePrison.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  328. PoliceTelePrison.BorderSizePixel = 0
  329. PoliceTelePrison.Position = UDim2.new(0, 10, 0, 100)
  330. PoliceTelePrison.Size = UDim2.new(0, 150, 0, 20)
  331. PoliceTelePrison.ZIndex = 3
  332. PoliceTelePrison.Font = Enum.Font.SourceSans
  333. PoliceTelePrison.FontSize = Enum.FontSize.Size14
  334. PoliceTelePrison.Text = "POLICE STATION PRISON"
  335. PoliceTelePrison.TextColor3 = Color3.new(1, 1, 1)
  336. PoliceTelePrison.TextSize = 14
  337. PoliceTelePrison.MouseButton1Click:connect(function()
  338. TelePolicePrison()
  339. end)
  340.  
  341. PersonTele.Name = "PersonTele"
  342. PersonTele.Parent = TeleContainer
  343. PersonTele.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  344. PersonTele.BorderSizePixel = 0
  345. PersonTele.Position = UDim2.new(0, 10, 0, 130)
  346. PersonTele.Size = UDim2.new(0, 150, 0, 30)
  347. PersonTele.ZIndex = 3
  348. PersonTele.Font = Enum.Font.SourceSans
  349. PersonTele.FontSize = Enum.FontSize.Size14
  350. PersonTele.Text = "TELE TO PERSON"
  351. PersonTele.TextColor3 = Color3.new(1, 1, 1)
  352. PersonTele.TextSize = 14
  353. PersonTele.MouseButton1Click:connect(function()
  354. TeleToPerson(PersonTeleInput.Text)
  355. end)
  356.  
  357. PersonTeleInput.Name = "PersonTeleInput"
  358. PersonTeleInput.Parent = TeleContainer
  359. PersonTeleInput.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  360. PersonTeleInput.BackgroundTransparency = 0.44999998807907
  361. PersonTeleInput.BorderSizePixel = 0
  362. PersonTeleInput.Position = UDim2.new(0, 170, 0, 130)
  363. PersonTeleInput.Size = UDim2.new(0, 150, 0, 30)
  364. PersonTeleInput.ZIndex = 3
  365. PersonTeleInput.Font = Enum.Font.SourceSans
  366. PersonTeleInput.FontSize = Enum.FontSize.Size14
  367. PersonTeleInput.Text = "Name [shortened-supported]"
  368. PersonTeleInput.TextColor3 = Color3.new(1, 1, 1)
  369. PersonTeleInput.TextSize = 14
  370. PersonTeleInput.TextWrapped = true
  371.  
  372. VehicleTeleInput.Name = "VehicleTeleInput"
  373. VehicleTeleInput.Parent = TeleContainer
  374. VehicleTeleInput.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  375. VehicleTeleInput.BackgroundTransparency = 0.44999998807907
  376. VehicleTeleInput.BorderSizePixel = 0
  377. VehicleTeleInput.Position = UDim2.new(0, 170, 0, 170)
  378. VehicleTeleInput.Size = UDim2.new(0, 150, 0, 30)
  379. VehicleTeleInput.ZIndex = 3
  380. VehicleTeleInput.Font = Enum.Font.SourceSans
  381. VehicleTeleInput.FontSize = Enum.FontSize.Size14
  382. VehicleTeleInput.Text = "Vehicle [shortened-supported]"
  383. VehicleTeleInput.TextColor3 = Color3.new(1, 1, 1)
  384. VehicleTeleInput.TextSize = 14
  385. VehicleTeleInput.TextWrapped = true
  386.  
  387. VehicleTele.Name = "VehicleTele"
  388. VehicleTele.Parent = TeleContainer
  389. VehicleTele.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  390. VehicleTele.BorderSizePixel = 0
  391. VehicleTele.Position = UDim2.new(0, 10, 0, 170)
  392. VehicleTele.Size = UDim2.new(0, 150, 0, 30)
  393. VehicleTele.ZIndex = 3
  394. VehicleTele.Font = Enum.Font.SourceSans
  395. VehicleTele.FontSize = Enum.FontSize.Size14
  396. VehicleTele.Text = "TELE TO VEHICLE"
  397. VehicleTele.TextColor3 = Color3.new(1, 1, 1)
  398. VehicleTele.TextSize = 14
  399. VehicleTele.MouseButton1Click:connect(function()
  400. TeleToVehicle(VehicleTeleInput.Text)
  401. end)
  402.  
  403. MoneyLabel.Name = "MoneyLabel"
  404. MoneyLabel.Parent = TeleContainer
  405. MoneyLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  406. MoneyLabel.BackgroundTransparency = 1
  407. MoneyLabel.BorderSizePixel = 0
  408. MoneyLabel.Position = UDim2.new(0, 10, 0, 200)
  409. MoneyLabel.Size = UDim2.new(0, 310, 0, 20)
  410. MoneyLabel.ZIndex = 3
  411. MoneyLabel.Font = Enum.Font.Code
  412. MoneyLabel.FontSize = Enum.FontSize.Size14
  413. MoneyLabel.Text = "Money: "..p.leaderstats.Money.Value
  414. MoneyLabel.TextColor3 = Color3.new(1, 1, 1)
  415. MoneyLabel.TextSize = 14
  416. MoneyLabel.TextXAlignment = Enum.TextXAlignment.Left
  417.  
  418. HealthLabel.Name = "HealthLabel"
  419. HealthLabel.Parent = TeleContainer
  420. HealthLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  421. HealthLabel.BackgroundTransparency = 1
  422. HealthLabel.BorderSizePixel = 0
  423. HealthLabel.Position = UDim2.new(0, 10, 0, 220)
  424. HealthLabel.Size = UDim2.new(0, 310, 0, 20)
  425. HealthLabel.ZIndex = 3
  426. HealthLabel.Font = Enum.Font.Code
  427. HealthLabel.FontSize = Enum.FontSize.Size14
  428. HealthLabel.Text = "Health: "..c.Humanoid.Health
  429. HealthLabel.TextColor3 = Color3.new(1, 1, 1)
  430. HealthLabel.TextSize = 14
  431. HealthLabel.TextXAlignment = Enum.TextXAlignment.Left
  432.  
  433. --[[
  434.  
  435.  
  436.  
  437. =-=-=-=-=-=-=-=SEPERATOR=-=-=-=-=-=-=-=
  438.  
  439.  
  440.  
  441.  
  442. --]]
  443.  
  444. TabFrame.Name = "TabFrame"
  445. TabFrame.Parent = GuiLabel
  446. TabFrame.BackgroundColor3 = Color3.new(0.215686, 0.215686, 0.215686)
  447. TabFrame.BorderSizePixel = 0
  448. TabFrame.Position = UDim2.new(0, 0, 0, 25)
  449. TabFrame.Size = UDim2.new(0, 120, 0, 250)
  450. TabFrame.ZIndex = 2
  451.  
  452. TabTeleButton.Name = "TabTeleButton"
  453. TabTeleButton.Parent = TabFrame
  454. TabTeleButton.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  455. TabTeleButton.BorderSizePixel = 0
  456. TabTeleButton.Size = UDim2.new(0, 120, 0, 20)
  457. TabTeleButton.ZIndex = 3
  458. TabTeleButton.Font = Enum.Font.SciFi
  459. TabTeleButton.FontSize = Enum.FontSize.Size18
  460. TabTeleButton.Text = "INFO / TELEPORT"
  461. TabTeleButton.TextColor3 = Color3.new(1, 1, 1)
  462. TabTeleButton.TextSize = 16
  463. TabTeleButton.MouseButton1Click:connect(function()
  464. ChangeTab(TeleContainer)
  465. end)
  466.  
  467. TabExploitsButton.Name = "TabExploitsButton"
  468. TabExploitsButton.Parent = TabFrame
  469. TabExploitsButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  470. TabExploitsButton.BorderSizePixel = 0
  471. TabExploitsButton.Position = UDim2.new(0, 0, 0, 20)
  472. TabExploitsButton.Size = UDim2.new(0, 120, 0, 20)
  473. TabExploitsButton.ZIndex = 3
  474. TabExploitsButton.Font = Enum.Font.SciFi
  475. TabExploitsButton.FontSize = Enum.FontSize.Size18
  476. TabExploitsButton.Text = "EXPLOITS"
  477. TabExploitsButton.TextColor3 = Color3.new(1, 1, 1)
  478. TabExploitsButton.TextSize = 16
  479. TabExploitsButton.MouseButton1Click:connect(function()
  480. ChangeTab(ExploitsContainer)
  481. end)
  482.  
  483. TabDebugButton.Name = "TabDebugButton"
  484. TabDebugButton.Parent = TabFrame
  485. TabDebugButton.BackgroundColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  486. TabDebugButton.BorderSizePixel = 0
  487. TabDebugButton.Position = UDim2.new(0, 0, 0, 40)
  488. TabDebugButton.Size = UDim2.new(0, 120, 0, 20)
  489. TabDebugButton.ZIndex = 3
  490. TabDebugButton.Font = Enum.Font.SciFi
  491. TabDebugButton.FontSize = Enum.FontSize.Size18
  492. TabDebugButton.Text = "DEBUG / CONSOLE"
  493. TabDebugButton.TextColor3 = Color3.new(1, 1, 1)
  494. TabDebugButton.TextSize = 16
  495. TabDebugButton.MouseButton1Click:connect(function()
  496. ChangeTab(DebugContainer)
  497. end)
  498.  
  499. --[[
  500.  
  501.  
  502.  
  503. =-=-=-=-=-=-=-=SEPERATOR=-=-=-=-=-=-=-=
  504.  
  505.  
  506.  
  507.  
  508. --]]
  509.  
  510. ClassyImage.Name = "ClassyImage"
  511. ClassyImage.Parent = TabFrame
  512. ClassyImage.BackgroundColor3 = Color3.new(1, 1, 1)
  513. ClassyImage.BorderColor3 = Color3.new(1, 1, 1)
  514. ClassyImage.Position = UDim2.new(0, 10, 0, 140)
  515. ClassyImage.Size = UDim2.new(0, 100, 0, 100)
  516. ClassyImage.ZIndex = 3
  517. ClassyImage.Image = "rbxassetid://682770404"
  518.  
  519. CredtLabel.Name = "CredtLabel"
  520. CredtLabel.Parent = ClassyImage
  521. CredtLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  522. CredtLabel.BackgroundTransparency = 1
  523. CredtLabel.BorderSizePixel = 0
  524. CredtLabel.Position = UDim2.new(0, 0, 0, -20)
  525. CredtLabel.Size = UDim2.new(0, 100, 0, 20)
  526. CredtLabel.ZIndex = 4
  527. CredtLabel.Font = Enum.Font.SourceSans
  528. CredtLabel.FontSize = Enum.FontSize.Size14
  529. CredtLabel.Text = "By Classy :3"
  530. CredtLabel.TextColor3 = Color3.new(1, 1, 1)
  531. CredtLabel.TextSize = 14
  532.  
  533. MinimizeButton.Name = "MinimizeButton"
  534. MinimizeButton.Parent = GuiLabel
  535. MinimizeButton.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  536. MinimizeButton.BorderSizePixel = 0
  537. MinimizeButton.Position = UDim2.new(0, 425, 0, 0)
  538. MinimizeButton.Size = UDim2.new(0, 25, 0, 25)
  539. MinimizeButton.ZIndex = 2
  540. MinimizeButton.Font = Enum.Font.SourceSans
  541. MinimizeButton.FontSize = Enum.FontSize.Size14
  542. MinimizeButton.Text = "--"
  543. MinimizeButton.TextColor3 = Color3.new(1, 1, 1)
  544. MinimizeButton.TextSize = 14
  545. MinimizeButton.MouseButton1Click:connect(function()
  546. Minimize()
  547. end)
  548.  
  549. --[[
  550.  
  551.  
  552.  
  553. =-=-=-=-=-=-=-=SEPERATOR=-=-=-=-=-=-=-=
  554.  
  555.  
  556.  
  557.  
  558. --]]
  559.  
  560. ExploitsContainer.Name = "ExploitsContainer"
  561. ExploitsContainer.Parent = GuiLabel
  562. ExploitsContainer.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  563. ExploitsContainer.BackgroundTransparency = 1
  564. ExploitsContainer.BorderSizePixel = 0
  565. ExploitsContainer.Position = UDim2.new(0, 120, 0, 25)
  566. ExploitsContainer.Size = UDim2.new(0, 330, 0, 250)
  567. ExploitsContainer.Visible = false
  568. ExploitsContainer.ZIndex = 2
  569.  
  570. --[[
  571.  
  572.  
  573.  
  574. =-=-=-=-=-=-=-=SEPERATOR=-=-=-=-=-=-=-=
  575.  
  576.  
  577.  
  578.  
  579. --]]
  580.  
  581.  
  582. DebugContainer.Name = "DebugContainer"
  583. DebugContainer.Parent = GuiLabel
  584. DebugContainer.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  585. DebugContainer.BackgroundTransparency = 1
  586. DebugContainer.BorderSizePixel = 0
  587. DebugContainer.Position = UDim2.new(0, 120, 0, 25)
  588. DebugContainer.Size = UDim2.new(0, 330, 0, 250)
  589. DebugContainer.Visible = false
  590. DebugContainer.ZIndex = 2
  591.  
  592. ScrollingFrame.Parent = DebugContainer
  593. ScrollingFrame.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  594. ScrollingFrame.BorderSizePixel = 0
  595. ScrollingFrame.Position = UDim2.new(0, 10, 0, 10)
  596. ScrollingFrame.Size = UDim2.new(0, 310, 0, 230)
  597. ScrollingFrame.ZIndex = 3
  598. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 0, 0)
  599. ScrollingFrame.ScrollBarThickness = 6
  600.  
  601. --[[
  602.  
  603.  
  604.  
  605. =-=-=-=-=-=-=-=SEPERATOR=-=-=-=-=-=-=-=
  606.  
  607.  
  608.  
  609.  
  610. --]]
  611.  
  612. function FindFirstPlayer(player) --not sure when i wrote this func or if i did
  613. for i, v in pairs(game.Players:GetPlayers()) do
  614. if v.Name:lower() == player:lower() or v.Name:lower():find(player:lower()) then
  615. return v
  616. end
  617. end
  618. end
  619.  
  620. vehicles = {"Camaro","Buggati","Lamborghini","Motorcycle","Motorbike"}
  621. function FindVehicle(str) --based off above func but rewritten kinda sorta not rly
  622. for i, v in pairs(vehicles) do
  623. if string.lower(str) == string.lower(v) or string.find(string.lower(v), string.lower(str)) then
  624. return v
  625. end
  626. end
  627. end
  628.  
  629. function Minimize()
  630. HomeContainer.Visible = false
  631. if GlobalFrame.Size == UDim2.new(0, 330, 0, 250) then
  632. MinimizeButton.Text = "+"
  633. for i, v in pairs(containers) do
  634. v.Visible = false
  635. end
  636. for i, v in pairs(TabFrame:GetChildren()) do
  637. v.Visible = false
  638. end
  639. GlobalFrame:TweenSize(UDim2.new(0, 330, 0, 0), "Out", "Quad", 1)
  640. TabFrame:TweenSize(UDim2.new(0, 120, 0, 0), "Out", "Quad", 1)
  641. elseif GlobalFrame.Size == UDim2.new(0, 330, 0, 0) then
  642. MinimizeButton.Text = "--"
  643. GlobalFrame:TweenSize(UDim2.new(0, 330, 0, 250), "In", "Quad", 1)
  644. TabFrame:TweenSize(UDim2.new(0, 120, 0, 250), "In", "Quad", 1)
  645. wait(1)
  646. _cur.Visible = true
  647. for i, v in pairs(TabFrame:GetChildren()) do
  648. v.Visible = true
  649. end
  650. end
  651. end
  652.  
  653. function ChangeTab(tabObj)
  654. HomeContainer.Visible = false
  655. for i, v in pairs(containers) do
  656. v.Visible = false
  657. end
  658. tabObj.Visible = true
  659. _cur = tabObj
  660. GuiLabel.Text = vers..tabObj.Name
  661. end
  662.  
  663. counter = 0
  664. function Debug(str)
  665. local label = Instance.new("TextLabel",ScrollingFrame)
  666. label.BackgroundColor3 = Color3.new(1,1,1)
  667. label.BackgroundTransparency = 0.5
  668. label.BorderSizePixel = 0
  669. label.Size = UDim2.new(0,310,0,20)
  670. label.Position = UDim2.new(0,0,0,counter)
  671. label.Text = str
  672. label.TextColor3 = Color3.new(1,1,1)
  673. label.Font = "Code"
  674. label.ZIndex = 4
  675. label.TextScaled = true
  676. counter = counter + 20
  677. ScrollingFrame.CanvasSize = UDim2.new(0,0,0,counter)
  678. end
  679.  
  680. function Tele(x,y,z)
  681. root.CFrame = CFrame.new(Vector3.new(x,y,z))
  682. end
  683.  
  684. function TeleJewlTop()
  685. Tele(132.58,90.94,1294.52)
  686. Debug("TP'd to JewlTop")
  687. end
  688.  
  689. function TeleBankOuter()
  690. Tele(19.78,17.9,781.66)
  691. Debug("TP'd to BankOuter")
  692. end
  693.  
  694. function TeleBankInner()
  695. Tele(49.76,18.06,857.27)
  696. Debug("TP'd to BankInner")
  697. end
  698.  
  699. function TelePolicePrison()
  700. Tele(-1144.74,17.95,-1585.15)
  701. Debug("TP'd to PolicePrison")
  702. end
  703.  
  704. function TelePolice2()
  705. Tele(734.54,38.15,1111.78)
  706. Debug("TP'd to Police2")
  707. end
  708.  
  709. function TeleCrimBase1()
  710. Tele(1580.5,49.78,-1756.3)
  711. Debug("TP'd to CrimBase1")
  712. end
  713.  
  714. function TeleCrimBase2()
  715. Tele(-228.69,17.6,1594.24)
  716. Debug("TP'd to CrimBase2")
  717. end
  718.  
  719. function TeleJewlOuter()
  720. Tele(100.845,17.306,1272.466)
  721. Debug("TP'd to JewlOuter")
  722. end
  723.  
  724. function TeleJewlInner()
  725. Tele(123.5,17.95,1318.1)
  726. Debug("TP'd to JewlInner")
  727. end
  728.  
  729. function TeleToPerson(str)
  730. local plr = FindFirstPlayer(str)
  731. if plr and plr.Character and plr.Character.HumanoidRootPart then
  732. Debug(plr.Name.." exists")
  733. root.CFrame = plr.Character.HumanoidRootPart.CFrame
  734. Debug("TP'd to "..plr.Name)
  735. else
  736. Debug(str.." does not exist")
  737. end
  738. end
  739.  
  740. function TeleToVehicle(str)
  741. local vehicle = FindVehicle(str)
  742. if vehicle then
  743. Debug(str.." found")
  744. if vehicle == "Camaro" then
  745. Tele(-954.25,18.57,-1452.34)
  746. elseif vehicle == "Buggati" then
  747. Tele(247.5,17.6,1364.7)
  748. elseif vehicle == "Lamborghini" then
  749. Tele(1588.47,49.78,-1761.7)
  750. else
  751. Tele(1325.57,17.39,-565.38)
  752. end
  753. else
  754. Debug(str.." not found")
  755. end
  756. end
  757.  
  758. function UpdateLabels()
  759. MoneyLabel.Text = "Money: "..p.leaderstats.Money.Value
  760. HealthLabel.Text = "Health: "..c.Humanoid.Health
  761. end
  762.  
  763. while wait(.5) do
  764. UpdateLabels()
  765. if game.Players.LocalPlayer.Character then --re-init player after dead
  766. --10/10 scripting dont judge me it works.
  767. --:3
  768. p = game.Players.LocalPlayer
  769. c = p.Character
  770. root = c.HumanoidRootPart
  771. end
  772. end
Add Comment
Please, Sign In to add comment