Advertisement
Guest User

my gui bruh

a guest
Sep 15th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 148.55 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local alpha = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local title = Instance.new("TextBox")
  7. local FEgui = Instance.new("TextButton")
  8. local UNJgui = Instance.new("TextButton")
  9. local PLgui = Instance.new("TextButton")
  10. local credits = Instance.new("TextLabel")
  11. local close = Instance.new("TextButton")
  12. local frame = Instance.new("Frame")
  13. local open = Instance.new("TextButton")
  14. --Properties:
  15. alpha.Name = "alpha."
  16. alpha.Parent = game.Workspace
  17.  
  18. main.Name = "main"
  19. main.Parent = alpha
  20. main.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  21. main.BackgroundTransparency = 0.10000000149012
  22. main.BorderSizePixel = 0
  23. main.Position = UDim2.new(0.260748953, 0, 0.200000003, 0)
  24. main.Size = UDim2.new(0, 285, 0, 318)
  25. main.Visible = false
  26. main.Active = true
  27. main.Draggable = true
  28.  
  29. title.Name = "title"
  30. title.Parent = main
  31. title.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  32. title.BorderSizePixel = 5
  33. title.Size = UDim2.new(0, 285, 0, 18)
  34. title.ClearTextOnFocus = false
  35. title.Font = Enum.Font.SourceSansBold
  36. title.Text = "Alpharian GUI"
  37. title.TextColor3 = Color3.new(1, 1, 1)
  38. title.TextScaled = true
  39. title.TextSize = 14
  40. title.TextWrapped = true
  41.  
  42. FEgui.Name = "FEgui"
  43. FEgui.Parent = main
  44. FEgui.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  45. FEgui.BorderSizePixel = 5
  46. FEgui.Position = UDim2.new(0.147368416, 0, 0.421383619, 0)
  47. FEgui.Size = UDim2.new(0, 200, 0, 50)
  48. FEgui.Font = Enum.Font.SourceSansBold
  49. FEgui.Text = "FE Fling/Kill GUI"
  50. FEgui.TextColor3 = Color3.new(1, 1, 1)
  51. FEgui.TextSize = 14
  52. FEgui.MouseButton1Down:connect(function()
  53. -- Objects
  54.  
  55. local flingn00b = Instance.new("ScreenGui")
  56. local fraem = Instance.new("Frame")
  57. local user = Instance.new("TextBox")
  58. local button = Instance.new("TextButton")
  59.  
  60. -- Properties
  61.  
  62. flingn00b.Name = "fling n00b"
  63. flingn00b.Parent = game.CoreGui
  64.  
  65. function GetPlayer(String) -- Credit to Timeless/xFunnieuss
  66. local Found = {}
  67. local strl = String:lower()
  68. if strl == "all" then
  69. for i,v in pairs(game.Players:GetPlayers()) do
  70. table.insert(Found,v)
  71. end
  72. elseif strl == "others" then
  73. for i,v in pairs(game.Players:GetPlayers()) do
  74. if v.Name ~= game.Players.LocalPlayer.Name then
  75. table.insert(Found,v)
  76. end
  77. end
  78. else
  79. for i,v in pairs(game.Players:GetPlayers()) do
  80. if v.Name:lower():sub(1, #String) == String:lower() then
  81. table.insert(Found,v)
  82. end
  83. end
  84. end
  85. return Found
  86. end
  87.  
  88. fraem.Name = "fraem"
  89. fraem.Parent = flingn00b
  90. fraem.BackgroundColor3 = Color3.new(1, 1, 1)
  91. fraem.BorderColor3 = Color3.new(1, 0, 0)
  92. fraem.Position = UDim2.new(0, 0, 0, 450)
  93. fraem.Size = UDim2.new(0, 198, 0, 43)
  94.  
  95. user.Name = "user"
  96. user.Parent = fraem
  97. user.BackgroundColor3 = Color3.new(0, 0, 0)
  98. user.BorderColor3 = Color3.new(1, 0, 0)
  99. user.Size = UDim2.new(0, 200, 0, 22)
  100. user.Font = Enum.Font.SourceSans
  101. user.Text = "Username"
  102. user.TextColor3 = Color3.new(1, 0, 0)
  103. user.TextScaled = true
  104. user.TextSize = 14
  105. user.TextWrapped = true
  106.  
  107. button.Name = "button"
  108. button.Parent = fraem
  109. button.BackgroundColor3 = Color3.new(0, 0, 0)
  110. button.BorderColor3 = Color3.new(1, 0, 0)
  111. button.Position = UDim2.new(0, 0, 0, 22)
  112. button.Size = UDim2.new(0, 200, 0, 21)
  113. button.Font = Enum.Font.SourceSans
  114. button.Text = "Fling"
  115. button.TextColor3 = Color3.new(1, 0, 0)
  116. button.TextSize = 20
  117. button.MouseButton1Down:connect(function()
  118. for i,v in pairs(GetPlayer(user.Text))do
  119. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  120. wait( )
  121. game:GetService('RunService').Stepped:connect(function()
  122. game.Players.LocalPlayer.Character.Head.CanCollide = false
  123. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  124. game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false
  125. game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false
  126. end)
  127. b = Instance.new("RocketPropulsion")
  128. b.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  129. b.Target = game.Players[v.Name].Character.HumanoidRootPart
  130. b.TurnP = 20000
  131. b.MaxThrust = 20000
  132. b.MaxSpeed = 1000
  133. b.ThrustP = 13000
  134. b:Fire()
  135. end
  136. end)
  137. end)
  138.  
  139. UNJgui.Name = "UNJgui"
  140. UNJgui.Parent = main
  141. UNJgui.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  142. UNJgui.BorderSizePixel = 5
  143. UNJgui.Position = UDim2.new(0.147368416, 0, 0.147798717, 0)
  144. UNJgui.Size = UDim2.new(0, 200, 0, 50)
  145. UNJgui.Font = Enum.Font.SourceSansBold
  146. UNJgui.Text = "Unjailbreak [Not Actual Version]"
  147. UNJgui.TextColor3 = Color3.new(1, 1, 1)
  148. UNJgui.TextSize = 14
  149. UNJgui.MouseButton1Down:connect(function()
  150. -- Objects
  151.  
  152. local Motherboard = Instance.new("ScreenGui")
  153. local BypassJailbreakGUI = Instance.new("Frame")
  154. local TextLabel = Instance.new("TextLabel")
  155. local TryingToBypass = Instance.new("TextLabel")
  156. local TextLabel_2 = Instance.new("TextLabel")
  157. local TextLabel_3 = Instance.new("TextLabel")
  158. local MainGUI = Instance.new("Frame")
  159. local TextLabel_4 = Instance.new("TextLabel")
  160. local TextLabel_5 = Instance.new("TextLabel")
  161. local TextLabel_6 = Instance.new("TextLabel")
  162. local Teleporting = Instance.new("TextButton")
  163. local LocalPlayerFunctions = Instance.new("TextButton")
  164. local CreditsButton = Instance.new("TextButton")
  165. local TeleportsGUI = Instance.new("Frame")
  166. local TextLabel_7 = Instance.new("TextLabel")
  167. local TextLabel_8 = Instance.new("TextLabel")
  168. local TextLabel_9 = Instance.new("TextLabel")
  169. local GoTo = Instance.new("TextButton")
  170. local BankVault = Instance.new("TextButton")
  171. local BankFront = Instance.new("TextButton")
  172. local sframe = Instance.new("ScrollingFrame")
  173. local SPlayer = Instance.new("TextLabel")
  174. local JewelryIn = Instance.new("TextButton")
  175. local JewelryOut = Instance.new("TextButton")
  176. local CrimBase2 = Instance.new("TextButton")
  177. local CustomTP1 = Instance.new("TextButton")
  178. local PoliceHQ2 = Instance.new("TextButton")
  179. local CrimBase1 = Instance.new("TextButton")
  180. local PoliceHQ1 = Instance.new("TextButton")
  181. local Prison = Instance.new("TextButton")
  182. local ClickTP = Instance.new("TextButton")
  183. local Back1 = Instance.new("TextButton")
  184. local Garage = Instance.new("TextButton")
  185. local DonutShop = Instance.new("TextButton")
  186. local CustomTP2 = Instance.new("TextButton")
  187. local GasStation = Instance.new("TextButton")
  188. local CloseButton1 = Instance.new("TextButton")
  189. local LocalPlayerGUI = Instance.new("Frame")
  190. local TextLabel_10 = Instance.new("TextLabel")
  191. local TextLabel_11 = Instance.new("TextLabel")
  192. local TextLabel_12 = Instance.new("TextLabel")
  193. local InfiniteAmmo = Instance.new("TextButton")
  194. local Noclipp = Instance.new("TextButton")
  195. local RemoveAllDoorsAndLasers = Instance.new("TextButton")
  196. local Back2 = Instance.new("TextButton")
  197. local VehichleSpeed = Instance.new("TextButton")
  198. local WalkSpeed1 = Instance.new("TextButton")
  199. local Gravity1 = Instance.new("TextButton")
  200. local JumpPower1 = Instance.new("TextButton")
  201. local TextLabel_13 = Instance.new("TextLabel")
  202. local TextLabel_14 = Instance.new("TextLabel")
  203. local GodMode1 = Instance.new("TextButton")
  204. local Coordinates = Instance.new("TextButton")
  205. local Btools = Instance.new("TextButton")
  206. local CloseButton2 = Instance.new("TextButton")
  207. local SpawningGUI = Instance.new("Frame")
  208. local TextLabel_15 = Instance.new("TextLabel")
  209. local TextLabel_16 = Instance.new("TextLabel")
  210. local TextLabel_17 = Instance.new("TextLabel")
  211. local AK47 = Instance.new("TextButton")
  212. local Flashlight = Instance.new("TextButton")
  213. local PolicePants = Instance.new("TextButton")
  214. local Back8 = Instance.new("TextButton")
  215. local Pistol = Instance.new("TextButton")
  216. local PoliceShirt = Instance.new("TextButton")
  217. local PoliceHat = Instance.new("TextButton")
  218. local M4A4 = Instance.new("TextButton")
  219. local Shotgun = Instance.new("TextButton")
  220. local CloseButton8 = Instance.new("TextButton")
  221. local SWATMask = Instance.new("TextButton")
  222. local TextLabel_18 = Instance.new("TextLabel")
  223. local TextLabel_19 = Instance.new("TextLabel")
  224. local SWATShirt = Instance.new("TextButton")
  225. local SWATPants = Instance.new("TextButton")
  226. local SWATHat = Instance.new("TextButton")
  227. local Spawning = Instance.new("TextButton")
  228. local CloseButton = Instance.new("TextButton")
  229. local FastTravelGUI = Instance.new("Frame")
  230. local FastTravelLabel = Instance.new("TextLabel")
  231. local FastCarTeleporting = Instance.new("TextButton")
  232. local FastLocalPlayer = Instance.new("TextButton")
  233. local FastCredits = Instance.new("TextButton")
  234. local FastGame = Instance.new("TextButton")
  235. local FastTeleport = Instance.new("TextButton")
  236. local FastSettings = Instance.new("TextButton")
  237. local FastSpawning = Instance.new("TextButton")
  238. local CarTeleporting = Instance.new("TextButton")
  239. local FastTravel = Instance.new("TextButton")
  240. local SettingsGUI = Instance.new("Frame")
  241. local TextLabel_20 = Instance.new("TextLabel")
  242. local TextLabel_21 = Instance.new("TextLabel")
  243. local TextLabel_22 = Instance.new("TextLabel")
  244. local Back6 = Instance.new("TextButton")
  245. local Transparent1 = Instance.new("TextButton")
  246. local TextLabel_23 = Instance.new("TextLabel")
  247. local Transparent2 = Instance.new("TextButton")
  248. local TextLabel_24 = Instance.new("TextLabel")
  249. local JewelryKey = Instance.new("TextButton")
  250. local CrimBaseKey = Instance.new("TextButton")
  251. local BankKey = Instance.new("TextButton")
  252. local JewelryKeyBox = Instance.new("TextBox")
  253. local CrimBaseKeyBox = Instance.new("TextBox")
  254. local BankKeyBox = Instance.new("TextBox")
  255. local CloseButton6 = Instance.new("TextButton")
  256. local CustomTransparency = Instance.new("TextBox")
  257. local TextLabel_25 = Instance.new("TextLabel")
  258. local SetCustomTransparency = Instance.new("TextButton")
  259. local CreditsGUI = Instance.new("Frame")
  260. local TextLabel_26 = Instance.new("TextLabel")
  261. local TextLabel_27 = Instance.new("TextLabel")
  262. local TextLabel_28 = Instance.new("TextLabel")
  263. local Back4 = Instance.new("TextButton")
  264. local TextLabel_29 = Instance.new("TextLabel")
  265. local TextLabel_30 = Instance.new("TextLabel")
  266. local TextLabel_31 = Instance.new("TextLabel")
  267. local TextLabel_32 = Instance.new("TextLabel")
  268. local CloseButton4 = Instance.new("TextButton")
  269. local TextLabel_33 = Instance.new("TextLabel")
  270. local TextLabel_34 = Instance.new("TextLabel")
  271. local TextLabel_35 = Instance.new("TextLabel")
  272. local GameFunctions = Instance.new("TextButton")
  273. local CarTeleportingGUI = Instance.new("Frame")
  274. local TextLabel_36 = Instance.new("TextLabel")
  275. local TextLabel_37 = Instance.new("TextLabel")
  276. local TextLabel_38 = Instance.new("TextLabel")
  277. local Bugatti = Instance.new("TextButton")
  278. local Lambo = Instance.new("TextButton")
  279. local CloseButton5 = Instance.new("TextButton")
  280. local Back5 = Instance.new("TextButton")
  281. local SWATVan = Instance.new("TextButton")
  282. local DuneBuggy = Instance.new("TextButton")
  283. local Porsche = Instance.new("TextButton")
  284. local DirtBike = Instance.new("TextButton")
  285. local Tesla3 = Instance.new("TextButton")
  286. local PickUpTruck = Instance.new("TextButton")
  287. local MiniCooper = Instance.new("TextButton")
  288. local Camaro = Instance.new("TextButton")
  289. local PoliceCar = Instance.new("TextButton")
  290. local Settings = Instance.new("TextButton")
  291. local GameGUI = Instance.new("Frame")
  292. local TextLabel_39 = Instance.new("TextLabel")
  293. local TextLabel_40 = Instance.new("TextLabel")
  294. local TextLabel_41 = Instance.new("TextLabel")
  295. local TpToMoney = Instance.new("TextButton")
  296. local SpamArrest = Instance.new("TextButton")
  297. local Back3 = Instance.new("TextButton")
  298. local CloseButton3 = Instance.new("TextButton")
  299. local Keycard = Instance.new("TextButton")
  300. local AnnoyServer = Instance.new("TextButton")
  301. local StopAnnoy = Instance.new("TextButton")
  302. local Giveaways = Instance.new("TextButton")
  303. local GiveawayGUI = Instance.new("Frame")
  304. local TextLabel_42 = Instance.new("TextLabel")
  305. local TextLabel_43 = Instance.new("TextLabel")
  306. local TextLabel_44 = Instance.new("TextLabel")
  307. local Back7 = Instance.new("TextButton")
  308. local CloseButton7 = Instance.new("TextButton")
  309. local TextLabel_45 = Instance.new("TextLabel")
  310. local TextLabel_46 = Instance.new("TextLabel")
  311. local TextLabel_47 = Instance.new("TextLabel")
  312. local TextLabel_48 = Instance.new("TextLabel")
  313. local TextLabel_49 = Instance.new("TextLabel")
  314. local OpenGUI = Instance.new("Frame")
  315. local OpenButton = Instance.new("TextButton")
  316. local ChangeLogGUI = Instance.new("Frame")
  317. local TextLabel_50 = Instance.new("TextLabel")
  318. local TextLabel_51 = Instance.new("TextLabel")
  319. local TextLabel_52 = Instance.new("TextLabel")
  320. local TextLabel_53 = Instance.new("TextLabel")
  321. local TextLabel_54 = Instance.new("TextLabel")
  322. local TextLabel_55 = Instance.new("TextLabel")
  323. local TextLabel_56 = Instance.new("TextLabel")
  324. local TextLabel_57 = Instance.new("TextLabel")
  325. local ChangeLogClose = Instance.new("TextButton")
  326. local TextLabel_58 = Instance.new("TextLabel")
  327. local JNotifierOpen = Instance.new("Frame")
  328. local TextLabel_59 = Instance.new("TextLabel")
  329. local GotoJewelry = Instance.new("TextButton")
  330. local BNotifierOpen = Instance.new("Frame")
  331. local TextLabel_60 = Instance.new("TextLabel")
  332. local GotoBank = Instance.new("TextButton")
  333. local val = Instance.new("ObjectValue", sframe)
  334. local StarterGui = game:GetService('StarterGui')
  335.  
  336. -- Properties
  337.  
  338. Motherboard.Name = "Motherboard"
  339. Motherboard.Parent = game.CoreGui
  340.  
  341. BypassJailbreakGUI.Name = "BypassJailbreakGUI"
  342. BypassJailbreakGUI.Parent = Motherboard
  343. BypassJailbreakGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  344. BypassJailbreakGUI.BorderSizePixel = 0
  345. BypassJailbreakGUI.Position = UDim2.new(0, 835, 0, -331)
  346. BypassJailbreakGUI.Size = UDim2.new(0, 250, 0, 250)
  347.  
  348. TextLabel.Parent = BypassJailbreakGUI
  349. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  350. TextLabel.BackgroundTransparency = 1
  351. TextLabel.Position = UDim2.new(0, 62, 0, 0)
  352. TextLabel.Size = UDim2.new(0, 127, 0, 31)
  353. TextLabel.Font = Enum.Font.Cartoon
  354. TextLabel.FontSize = Enum.FontSize.Size24
  355. TextLabel.Text = "Unjailbreak"
  356. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  357. TextLabel.TextSize = 20
  358.  
  359. TryingToBypass.Name = "TryingToBypass"
  360. TryingToBypass.Parent = BypassJailbreakGUI
  361. TryingToBypass.BackgroundColor3 = Color3.new(1, 1, 1)
  362. TryingToBypass.BackgroundTransparency = 1
  363. TryingToBypass.Position = UDim2.new(0, 62, 0, 108)
  364. TryingToBypass.Size = UDim2.new(0, 127, 0, 34)
  365. TryingToBypass.Font = Enum.Font.Cartoon
  366. TryingToBypass.FontSize = Enum.FontSize.Size24
  367. TryingToBypass.Text = "Trying To Bypass Jailbreak"
  368. TryingToBypass.TextColor3 = Color3.new(1, 1, 1)
  369. TryingToBypass.TextSize = 20
  370.  
  371. TextLabel_2.Parent = BypassJailbreakGUI
  372. TextLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  373. TextLabel_2.BackgroundTransparency = 1
  374. TextLabel_2.Position = UDim2.new(0, 62, 0, 196)
  375. TextLabel_2.Size = UDim2.new(0, 127, 0, 54)
  376. TextLabel_2.Font = Enum.Font.Cartoon
  377. TextLabel_2.FontSize = Enum.FontSize.Size24
  378. TextLabel_2.Text = "Created By Unlisting"
  379. TextLabel_2.TextColor3 = Color3.new(1, 1, 1)
  380. TextLabel_2.TextSize = 20
  381.  
  382. TextLabel_3.Parent = BypassJailbreakGUI
  383. TextLabel_3.BackgroundColor3 = Color3.new(1, 1, 1)
  384. TextLabel_3.BackgroundTransparency = 1
  385. TextLabel_3.Position = UDim2.new(0, 210, 0, 0)
  386. TextLabel_3.Size = UDim2.new(0, 40, 0, 29)
  387. TextLabel_3.Font = Enum.Font.Cartoon
  388. TextLabel_3.FontSize = Enum.FontSize.Size24
  389. TextLabel_3.Text = "v0.6"
  390. TextLabel_3.TextColor3 = Color3.new(1, 1, 1)
  391. TextLabel_3.TextSize = 20
  392.  
  393. MainGUI.Name = "MainGUI"
  394. MainGUI.Parent = Motherboard
  395. MainGUI.Active = true
  396. MainGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  397. MainGUI.BorderSizePixel = 0
  398. MainGUI.Draggable = true
  399. MainGUI.Position = UDim2.new(0, 708, 0, 1300)
  400. MainGUI.Selectable = true
  401. MainGUI.Size = UDim2.new(0, 505, 0, 361)
  402.  
  403. TextLabel_4.Parent = MainGUI
  404. TextLabel_4.BackgroundColor3 = Color3.new(1, 1, 1)
  405. TextLabel_4.BackgroundTransparency = 1
  406. TextLabel_4.Position = UDim2.new(0, 189, 0, 0)
  407. TextLabel_4.Size = UDim2.new(0, 127, 0, 31)
  408. TextLabel_4.Font = Enum.Font.Cartoon
  409. TextLabel_4.FontSize = Enum.FontSize.Size24
  410. TextLabel_4.Text = "Unjailbreak"
  411. TextLabel_4.TextColor3 = Color3.new(1, 1, 1)
  412. TextLabel_4.TextSize = 20
  413.  
  414. TextLabel_5.Parent = MainGUI
  415. TextLabel_5.BackgroundColor3 = Color3.new(1, 1, 1)
  416. TextLabel_5.BackgroundTransparency = 1
  417. TextLabel_5.Position = UDim2.new(0, 189, 0, 333)
  418. TextLabel_5.Size = UDim2.new(0, 127, 0, 28)
  419. TextLabel_5.Font = Enum.Font.Cartoon
  420. TextLabel_5.FontSize = Enum.FontSize.Size24
  421. TextLabel_5.Text = "Created By Unlisting"
  422. TextLabel_5.TextColor3 = Color3.new(1, 1, 1)
  423. TextLabel_5.TextSize = 20
  424.  
  425. TextLabel_6.Parent = MainGUI
  426. TextLabel_6.BackgroundColor3 = Color3.new(1, 1, 1)
  427. TextLabel_6.BackgroundTransparency = 1
  428. TextLabel_6.Position = UDim2.new(0, 465, 0, 0)
  429. TextLabel_6.Size = UDim2.new(0, 40, 0, 29)
  430. TextLabel_6.Font = Enum.Font.Cartoon
  431. TextLabel_6.FontSize = Enum.FontSize.Size24
  432. TextLabel_6.Text = "v0.6"
  433. TextLabel_6.TextColor3 = Color3.new(1, 1, 1)
  434. TextLabel_6.TextSize = 20
  435.  
  436. Teleporting.Name = "Teleporting"
  437. Teleporting.Parent = MainGUI
  438. Teleporting.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  439. Teleporting.BorderSizePixel = 0
  440. Teleporting.Position = UDim2.new(0, 167, 0, 50)
  441. Teleporting.Size = UDim2.new(0, 170, 0, 37)
  442. Teleporting.Font = Enum.Font.Cartoon
  443. Teleporting.FontSize = Enum.FontSize.Size24
  444. Teleporting.Text = "Teleporting"
  445. Teleporting.TextSize = 20
  446.  
  447. LocalPlayerFunctions.Name = "LocalPlayerFunctions"
  448. LocalPlayerFunctions.Parent = MainGUI
  449. LocalPlayerFunctions.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  450. LocalPlayerFunctions.BorderSizePixel = 0
  451. LocalPlayerFunctions.Position = UDim2.new(0, 167, 0, 140)
  452. LocalPlayerFunctions.Size = UDim2.new(0, 170, 0, 37)
  453. LocalPlayerFunctions.Font = Enum.Font.Cartoon
  454. LocalPlayerFunctions.FontSize = Enum.FontSize.Size24
  455. LocalPlayerFunctions.Text = "Local Player"
  456. LocalPlayerFunctions.TextSize = 20
  457.  
  458. CreditsButton.Name = "CreditsButton"
  459. CreditsButton.Parent = MainGUI
  460. CreditsButton.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  461. CreditsButton.BorderSizePixel = 0
  462. CreditsButton.Position = UDim2.new(0, 167, 0, 275)
  463. CreditsButton.Size = UDim2.new(0, 170, 0, 37)
  464. CreditsButton.Font = Enum.Font.Cartoon
  465. CreditsButton.FontSize = Enum.FontSize.Size24
  466. CreditsButton.Text = "Credits"
  467. CreditsButton.TextSize = 20
  468.  
  469. TeleportsGUI.Name = "TeleportsGUI"
  470. TeleportsGUI.Parent = MainGUI
  471. TeleportsGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  472. TeleportsGUI.BorderSizePixel = 0
  473. TeleportsGUI.Size = UDim2.new(0, 505, 0, 361)
  474. TeleportsGUI.Visible = false
  475.  
  476. TextLabel_7.Parent = TeleportsGUI
  477. TextLabel_7.BackgroundColor3 = Color3.new(1, 1, 1)
  478. TextLabel_7.BackgroundTransparency = 1
  479. TextLabel_7.Position = UDim2.new(0, 189, 0, 0)
  480. TextLabel_7.Size = UDim2.new(0, 127, 0, 31)
  481. TextLabel_7.Font = Enum.Font.Cartoon
  482. TextLabel_7.FontSize = Enum.FontSize.Size24
  483. TextLabel_7.Text = "Unjailbreak"
  484. TextLabel_7.TextColor3 = Color3.new(1, 1, 1)
  485. TextLabel_7.TextSize = 20
  486.  
  487. TextLabel_8.Parent = TeleportsGUI
  488. TextLabel_8.BackgroundColor3 = Color3.new(1, 1, 1)
  489. TextLabel_8.BackgroundTransparency = 1
  490. TextLabel_8.Position = UDim2.new(0, 189, 0, 333)
  491. TextLabel_8.Size = UDim2.new(0, 127, 0, 28)
  492. TextLabel_8.Font = Enum.Font.Cartoon
  493. TextLabel_8.FontSize = Enum.FontSize.Size24
  494. TextLabel_8.Text = "Created By Unlisting"
  495. TextLabel_8.TextColor3 = Color3.new(1, 1, 1)
  496. TextLabel_8.TextSize = 20
  497.  
  498. TextLabel_9.Parent = TeleportsGUI
  499. TextLabel_9.BackgroundColor3 = Color3.new(1, 1, 1)
  500. TextLabel_9.BackgroundTransparency = 1
  501. TextLabel_9.Position = UDim2.new(0, 465, 0, 0)
  502. TextLabel_9.Size = UDim2.new(0, 40, 0, 29)
  503. TextLabel_9.Font = Enum.Font.Cartoon
  504. TextLabel_9.FontSize = Enum.FontSize.Size24
  505. TextLabel_9.Text = "v0.6"
  506. TextLabel_9.TextColor3 = Color3.new(1, 1, 1)
  507. TextLabel_9.TextSize = 20
  508.  
  509. GoTo.Name = "GoTo"
  510. GoTo.Parent = TeleportsGUI
  511. GoTo.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  512. GoTo.BorderSizePixel = 0
  513. GoTo.Position = UDim2.new(0, 376, 0, 322)
  514. GoTo.Size = UDim2.new(0, 83, 0, 24)
  515. GoTo.Font = Enum.Font.Cartoon
  516. GoTo.FontSize = Enum.FontSize.Size24
  517. GoTo.Text = "Goto"
  518. GoTo.TextColor3 = Color3.new(1, 1, 0)
  519. GoTo.TextSize = 20
  520.  
  521. BankVault.Name = "BankVault"
  522. BankVault.Parent = TeleportsGUI
  523. BankVault.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  524. BankVault.BorderSizePixel = 0
  525. BankVault.Position = UDim2.new(0, 27, 0, 50)
  526. BankVault.Size = UDim2.new(0, 90, 0, 25)
  527. BankVault.Font = Enum.Font.Cartoon
  528. BankVault.FontSize = Enum.FontSize.Size18
  529. BankVault.Text = "Bank Vault"
  530. BankVault.TextColor3 = Color3.new(1, 1, 0)
  531. BankVault.TextSize = 17
  532.  
  533. BankFront.Name = "BankFront"
  534. BankFront.Parent = TeleportsGUI
  535. BankFront.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  536. BankFront.BorderSizePixel = 0
  537. BankFront.Position = UDim2.new(0, 132, 0, 50)
  538. BankFront.Size = UDim2.new(0, 90, 0, 25)
  539. BankFront.Font = Enum.Font.Cartoon
  540. BankFront.FontSize = Enum.FontSize.Size18
  541. BankFront.Text = "Bank Front"
  542. BankFront.TextColor3 = Color3.new(1, 1, 0)
  543. BankFront.TextSize = 17
  544.  
  545. sframe.Name = "sframe"
  546. sframe.Parent = TeleportsGUI
  547. sframe.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  548. sframe.BorderSizePixel = 0
  549. sframe.LayoutOrder = 1
  550. sframe.Position = UDim2.new(0, 301, 0, 43)
  551. sframe.Selectable = false
  552. sframe.Size = UDim2.new(0, 200, 0, 220)
  553. sframe.ScrollBarThickness = 1
  554.  
  555. SPlayer.Name = "SPlayer"
  556. SPlayer.Parent = TeleportsGUI
  557. SPlayer.BackgroundColor3 = Color3.new(1, 1, 1)
  558. SPlayer.BackgroundTransparency = 1
  559. SPlayer.Position = UDim2.new(0, 324, 0, 279)
  560. SPlayer.Size = UDim2.new(0, 86, 0, 23)
  561. SPlayer.Font = Enum.Font.Cartoon
  562. SPlayer.FontSize = Enum.FontSize.Size18
  563. SPlayer.Text = "Player:"
  564. SPlayer.TextColor3 = Color3.new(1, 1, 1)
  565. SPlayer.TextSize = 16
  566.  
  567. JewelryIn.Name = "JewelryIn"
  568. JewelryIn.Parent = TeleportsGUI
  569. JewelryIn.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  570. JewelryIn.BorderSizePixel = 0
  571. JewelryIn.Position = UDim2.new(0, 27, 0, 85)
  572. JewelryIn.Size = UDim2.new(0, 90, 0, 25)
  573. JewelryIn.Font = Enum.Font.Cartoon
  574. JewelryIn.FontSize = Enum.FontSize.Size18
  575. JewelryIn.Text = "Jewelry(In)"
  576. JewelryIn.TextColor3 = Color3.new(1, 1, 0)
  577. JewelryIn.TextSize = 17
  578.  
  579. JewelryOut.Name = "JewelryOut"
  580. JewelryOut.Parent = TeleportsGUI
  581. JewelryOut.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  582. JewelryOut.BorderSizePixel = 0
  583. JewelryOut.Position = UDim2.new(0, 132, 0, 85)
  584. JewelryOut.Size = UDim2.new(0, 90, 0, 25)
  585. JewelryOut.Font = Enum.Font.Cartoon
  586. JewelryOut.FontSize = Enum.FontSize.Size18
  587. JewelryOut.Text = "Jewelry(Out)"
  588. JewelryOut.TextColor3 = Color3.new(1, 1, 0)
  589. JewelryOut.TextSize = 17
  590.  
  591. CrimBase2.Name = "CrimBase2"
  592. CrimBase2.Parent = TeleportsGUI
  593. CrimBase2.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  594. CrimBase2.BorderSizePixel = 0
  595. CrimBase2.Position = UDim2.new(0, 132, 0, 120)
  596. CrimBase2.Size = UDim2.new(0, 90, 0, 25)
  597. CrimBase2.Font = Enum.Font.Cartoon
  598. CrimBase2.FontSize = Enum.FontSize.Size18
  599. CrimBase2.Text = "Crim Base 2"
  600. CrimBase2.TextColor3 = Color3.new(1, 1, 0)
  601. CrimBase2.TextSize = 17
  602. CrimBase2.TextStrokeColor3 = Color3.new(1, 1, 0)
  603.  
  604. CustomTP1.Name = "CustomTP1"
  605. CustomTP1.Parent = TeleportsGUI
  606. CustomTP1.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  607. CustomTP1.BorderSizePixel = 0
  608. CustomTP1.Position = UDim2.new(0, 27, 0, 260)
  609. CustomTP1.Size = UDim2.new(0, 90, 0, 25)
  610. CustomTP1.Font = Enum.Font.Cartoon
  611. CustomTP1.FontSize = Enum.FontSize.Size18
  612. CustomTP1.Text = "CustomTP 1"
  613. CustomTP1.TextColor3 = Color3.new(1, 1, 0)
  614. CustomTP1.TextSize = 17
  615.  
  616. PoliceHQ2.Name = "PoliceHQ2"
  617. PoliceHQ2.Parent = TeleportsGUI
  618. PoliceHQ2.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  619. PoliceHQ2.BorderSizePixel = 0
  620. PoliceHQ2.Position = UDim2.new(0, 132, 0, 155)
  621. PoliceHQ2.Size = UDim2.new(0, 90, 0, 25)
  622. PoliceHQ2.Font = Enum.Font.Cartoon
  623. PoliceHQ2.FontSize = Enum.FontSize.Size18
  624. PoliceHQ2.Text = "Police HQ 2"
  625. PoliceHQ2.TextColor3 = Color3.new(1, 1, 0)
  626. PoliceHQ2.TextSize = 17
  627. PoliceHQ2.TextStrokeColor3 = Color3.new(1, 1, 0)
  628.  
  629. CrimBase1.Name = "CrimBase1"
  630. CrimBase1.Parent = TeleportsGUI
  631. CrimBase1.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  632. CrimBase1.BorderSizePixel = 0
  633. CrimBase1.Position = UDim2.new(0, 27, 0, 120)
  634. CrimBase1.Size = UDim2.new(0, 90, 0, 25)
  635. CrimBase1.Font = Enum.Font.Cartoon
  636. CrimBase1.FontSize = Enum.FontSize.Size18
  637. CrimBase1.Text = "Crim Base 1"
  638. CrimBase1.TextColor3 = Color3.new(1, 1, 0)
  639. CrimBase1.TextSize = 17
  640.  
  641. PoliceHQ1.Name = "PoliceHQ1"
  642. PoliceHQ1.Parent = TeleportsGUI
  643. PoliceHQ1.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  644. PoliceHQ1.BorderSizePixel = 0
  645. PoliceHQ1.Position = UDim2.new(0, 27, 0, 155)
  646. PoliceHQ1.Size = UDim2.new(0, 90, 0, 25)
  647. PoliceHQ1.Font = Enum.Font.Cartoon
  648. PoliceHQ1.FontSize = Enum.FontSize.Size18
  649. PoliceHQ1.Text = "Police HQ 1"
  650. PoliceHQ1.TextColor3 = Color3.new(1, 1, 0)
  651. PoliceHQ1.TextSize = 17
  652.  
  653. Prison.Name = "Prison"
  654. Prison.Parent = TeleportsGUI
  655. Prison.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  656. Prison.BorderSizePixel = 0
  657. Prison.Position = UDim2.new(0, 132, 0, 190)
  658. Prison.Size = UDim2.new(0, 90, 0, 25)
  659. Prison.Font = Enum.Font.Cartoon
  660. Prison.FontSize = Enum.FontSize.Size18
  661. Prison.Text = "Prison"
  662. Prison.TextColor3 = Color3.new(1, 1, 0)
  663. Prison.TextSize = 17
  664. Prison.TextStrokeColor3 = Color3.new(1, 1, 0)
  665.  
  666. ClickTP.Name = "ClickTP"
  667. ClickTP.Parent = TeleportsGUI
  668. ClickTP.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  669. ClickTP.BorderSizePixel = 0
  670. ClickTP.Position = UDim2.new(0, 38, 0, 322)
  671. ClickTP.Size = UDim2.new(0, 90, 0, 25)
  672. ClickTP.Font = Enum.Font.Cartoon
  673. ClickTP.FontSize = Enum.FontSize.Size18
  674. ClickTP.Text = "ClickTP"
  675. ClickTP.TextColor3 = Color3.new(1, 1, 0)
  676. ClickTP.TextSize = 17
  677. ClickTP.TextStrokeColor3 = Color3.new(1, 1, 0)
  678.  
  679. Back1.Name = "Back1"
  680. Back1.Parent = TeleportsGUI
  681. Back1.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  682. Back1.BackgroundTransparency = 1
  683. Back1.BorderSizePixel = 0
  684. Back1.Position = UDim2.new(0, 208, 0, 308)
  685. Back1.Size = UDim2.new(0, 90, 0, 25)
  686. Back1.Font = Enum.Font.Cartoon
  687. Back1.FontSize = Enum.FontSize.Size18
  688. Back1.Text = "Back"
  689. Back1.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  690. Back1.TextSize = 17
  691. Back1.TextStrokeColor3 = Color3.new(1, 1, 0)
  692.  
  693. Garage.Name = "Garage"
  694. Garage.Parent = TeleportsGUI
  695. Garage.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  696. Garage.BorderSizePixel = 0
  697. Garage.Position = UDim2.new(0, 27, 0, 190)
  698. Garage.Size = UDim2.new(0, 90, 0, 25)
  699. Garage.Font = Enum.Font.Cartoon
  700. Garage.FontSize = Enum.FontSize.Size18
  701. Garage.Text = "Garage"
  702. Garage.TextColor3 = Color3.new(1, 1, 0)
  703. Garage.TextSize = 17
  704.  
  705. DonutShop.Name = "DonutShop"
  706. DonutShop.Parent = TeleportsGUI
  707. DonutShop.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  708. DonutShop.BorderSizePixel = 0
  709. DonutShop.Position = UDim2.new(0, 132, 0, 225)
  710. DonutShop.Size = UDim2.new(0, 90, 0, 25)
  711. DonutShop.Font = Enum.Font.Cartoon
  712. DonutShop.FontSize = Enum.FontSize.Size18
  713. DonutShop.Text = "Donut Shop"
  714. DonutShop.TextColor3 = Color3.new(1, 1, 0)
  715. DonutShop.TextSize = 17
  716. DonutShop.TextStrokeColor3 = Color3.new(1, 1, 0)
  717.  
  718. CustomTP2.Name = "CustomTP2"
  719. CustomTP2.Parent = TeleportsGUI
  720. CustomTP2.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  721. CustomTP2.BorderSizePixel = 0
  722. CustomTP2.Position = UDim2.new(0, 132, 0, 260)
  723. CustomTP2.Size = UDim2.new(0, 90, 0, 25)
  724. CustomTP2.Font = Enum.Font.Cartoon
  725. CustomTP2.FontSize = Enum.FontSize.Size18
  726. CustomTP2.Text = "CustomTP2"
  727. CustomTP2.TextColor3 = Color3.new(1, 1, 0)
  728. CustomTP2.TextSize = 17
  729. CustomTP2.TextStrokeColor3 = Color3.new(1, 1, 0)
  730.  
  731. GasStation.Name = "GasStation"
  732. GasStation.Parent = TeleportsGUI
  733. GasStation.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  734. GasStation.BorderSizePixel = 0
  735. GasStation.Position = UDim2.new(0, 27, 0, 225)
  736. GasStation.Size = UDim2.new(0, 90, 0, 25)
  737. GasStation.Font = Enum.Font.Cartoon
  738. GasStation.FontSize = Enum.FontSize.Size18
  739. GasStation.Text = "Gas Station"
  740. GasStation.TextColor3 = Color3.new(1, 1, 0)
  741. GasStation.TextSize = 17
  742.  
  743. CloseButton1.Name = "CloseButton1"
  744. CloseButton1.Parent = TeleportsGUI
  745. CloseButton1.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  746. CloseButton1.BackgroundTransparency = 1
  747. CloseButton1.BorderSizePixel = 0
  748. CloseButton1.Position = UDim2.new(0, 322, 0, 0)
  749. CloseButton1.Size = UDim2.new(0, 127, 0, 31)
  750. CloseButton1.Font = Enum.Font.Cartoon
  751. CloseButton1.FontSize = Enum.FontSize.Size24
  752. CloseButton1.Text = "Close"
  753. CloseButton1.TextColor3 = Color3.new(0, 0.666667, 1)
  754. CloseButton1.TextSize = 20
  755.  
  756. LocalPlayerGUI.Name = "LocalPlayerGUI"
  757. LocalPlayerGUI.Parent = MainGUI
  758. LocalPlayerGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  759. LocalPlayerGUI.BorderSizePixel = 0
  760. LocalPlayerGUI.Size = UDim2.new(0, 505, 0, 361)
  761. LocalPlayerGUI.Visible = false
  762.  
  763. TextLabel_10.Parent = LocalPlayerGUI
  764. TextLabel_10.BackgroundColor3 = Color3.new(1, 1, 1)
  765. TextLabel_10.BackgroundTransparency = 1
  766. TextLabel_10.Position = UDim2.new(0, 189, 0, 0)
  767. TextLabel_10.Size = UDim2.new(0, 127, 0, 31)
  768. TextLabel_10.Font = Enum.Font.Cartoon
  769. TextLabel_10.FontSize = Enum.FontSize.Size24
  770. TextLabel_10.Text = "Unjailbreak"
  771. TextLabel_10.TextColor3 = Color3.new(1, 1, 1)
  772. TextLabel_10.TextSize = 20
  773.  
  774. TextLabel_11.Parent = LocalPlayerGUI
  775. TextLabel_11.BackgroundColor3 = Color3.new(1, 1, 1)
  776. TextLabel_11.BackgroundTransparency = 1
  777. TextLabel_11.Position = UDim2.new(0, 189, 0, 333)
  778. TextLabel_11.Size = UDim2.new(0, 127, 0, 28)
  779. TextLabel_11.Font = Enum.Font.Cartoon
  780. TextLabel_11.FontSize = Enum.FontSize.Size24
  781. TextLabel_11.Text = "Created By Unlisting"
  782. TextLabel_11.TextColor3 = Color3.new(1, 1, 1)
  783. TextLabel_11.TextSize = 20
  784.  
  785. TextLabel_12.Parent = LocalPlayerGUI
  786. TextLabel_12.BackgroundColor3 = Color3.new(1, 1, 1)
  787. TextLabel_12.BackgroundTransparency = 1
  788. TextLabel_12.Position = UDim2.new(0, 465, 0, 0)
  789. TextLabel_12.Size = UDim2.new(0, 40, 0, 29)
  790. TextLabel_12.Font = Enum.Font.Cartoon
  791. TextLabel_12.FontSize = Enum.FontSize.Size24
  792. TextLabel_12.Text = "v0.6"
  793. TextLabel_12.TextColor3 = Color3.new(1, 1, 1)
  794. TextLabel_12.TextSize = 20
  795.  
  796. InfiniteAmmo.Name = "InfiniteAmmo"
  797. InfiniteAmmo.Parent = LocalPlayerGUI
  798. InfiniteAmmo.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  799. InfiniteAmmo.BorderSizePixel = 0
  800. InfiniteAmmo.Position = UDim2.new(0, 42, 0, 76)
  801. InfiniteAmmo.Size = UDim2.new(0, 120, 0, 30)
  802. InfiniteAmmo.Font = Enum.Font.Cartoon
  803. InfiniteAmmo.FontSize = Enum.FontSize.Size24
  804. InfiniteAmmo.Text = "Infinite Ammo"
  805. InfiniteAmmo.TextColor3 = Color3.new(1, 1, 0)
  806. InfiniteAmmo.TextSize = 20
  807.  
  808. Noclipp.Name = "Noclipp"
  809. Noclipp.Parent = LocalPlayerGUI
  810. Noclipp.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  811. Noclipp.BorderSizePixel = 0
  812. Noclipp.Position = UDim2.new(0, 192, 0, 151)
  813. Noclipp.Size = UDim2.new(0, 120, 0, 30)
  814. Noclipp.Font = Enum.Font.Cartoon
  815. Noclipp.FontSize = Enum.FontSize.Size24
  816. Noclipp.Text = "No Clip OFF"
  817. Noclipp.TextColor3 = Color3.new(1, 1, 0)
  818. Noclipp.TextSize = 20
  819.  
  820. RemoveAllDoorsAndLasers.Name = "RemoveAllDoorsAndLasers"
  821. RemoveAllDoorsAndLasers.Parent = LocalPlayerGUI
  822. RemoveAllDoorsAndLasers.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  823. RemoveAllDoorsAndLasers.BorderSizePixel = 0
  824. RemoveAllDoorsAndLasers.Position = UDim2.new(0, 192, 0, 231)
  825. RemoveAllDoorsAndLasers.Size = UDim2.new(0, 120, 0, 30)
  826. RemoveAllDoorsAndLasers.Font = Enum.Font.Cartoon
  827. RemoveAllDoorsAndLasers.FontSize = Enum.FontSize.Size24
  828. RemoveAllDoorsAndLasers.Text = "Remove All"
  829. RemoveAllDoorsAndLasers.TextColor3 = Color3.new(1, 1, 0)
  830. RemoveAllDoorsAndLasers.TextSize = 20
  831.  
  832. Back2.Name = "Back2"
  833. Back2.Parent = LocalPlayerGUI
  834. Back2.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  835. Back2.BackgroundTransparency = 1
  836. Back2.BorderSizePixel = 0
  837. Back2.Position = UDim2.new(0, 208, 0, 308)
  838. Back2.Size = UDim2.new(0, 90, 0, 25)
  839. Back2.Font = Enum.Font.Cartoon
  840. Back2.FontSize = Enum.FontSize.Size18
  841. Back2.Text = "Back"
  842. Back2.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  843. Back2.TextSize = 17
  844. Back2.TextStrokeColor3 = Color3.new(1, 1, 0)
  845.  
  846. VehichleSpeed.Name = "VehichleSpeed"
  847. VehichleSpeed.Parent = LocalPlayerGUI
  848. VehichleSpeed.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  849. VehichleSpeed.BorderSizePixel = 0
  850. VehichleSpeed.Position = UDim2.new(0, 42, 0, 151)
  851. VehichleSpeed.Size = UDim2.new(0, 120, 0, 30)
  852. VehichleSpeed.Font = Enum.Font.Cartoon
  853. VehichleSpeed.FontSize = Enum.FontSize.Size24
  854. VehichleSpeed.Text = "Vehichle Speed"
  855. VehichleSpeed.TextColor3 = Color3.new(1, 1, 0)
  856. VehichleSpeed.TextSize = 20
  857.  
  858. WalkSpeed1.Name = "WalkSpeed1"
  859. WalkSpeed1.Parent = LocalPlayerGUI
  860. WalkSpeed1.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  861. WalkSpeed1.BorderSizePixel = 0
  862. WalkSpeed1.Position = UDim2.new(0, 342, 0, 151)
  863. WalkSpeed1.Size = UDim2.new(0, 120, 0, 30)
  864. WalkSpeed1.Font = Enum.Font.Cartoon
  865. WalkSpeed1.FontSize = Enum.FontSize.Size24
  866. WalkSpeed1.Text = "FastWalk"
  867. WalkSpeed1.TextColor3 = Color3.new(1, 1, 0)
  868. WalkSpeed1.TextSize = 20
  869.  
  870. Gravity1.Name = "Gravity1"
  871. Gravity1.Parent = LocalPlayerGUI
  872. Gravity1.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  873. Gravity1.BorderSizePixel = 0
  874. Gravity1.Position = UDim2.new(0, 42, 0, 231)
  875. Gravity1.Size = UDim2.new(0, 120, 0, 30)
  876. Gravity1.Font = Enum.Font.Cartoon
  877. Gravity1.FontSize = Enum.FontSize.Size24
  878. Gravity1.Text = "Low Gravity"
  879. Gravity1.TextColor3 = Color3.new(1, 1, 0)
  880. Gravity1.TextSize = 20
  881.  
  882. JumpPower1.Name = "JumpPower1"
  883. JumpPower1.Parent = LocalPlayerGUI
  884. JumpPower1.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  885. JumpPower1.BorderSizePixel = 0
  886. JumpPower1.Position = UDim2.new(0, 342, 0, 231)
  887. JumpPower1.Size = UDim2.new(0, 120, 0, 30)
  888. JumpPower1.Font = Enum.Font.Cartoon
  889. JumpPower1.FontSize = Enum.FontSize.Size24
  890. JumpPower1.Text = "HighJump"
  891. JumpPower1.TextColor3 = Color3.new(1, 1, 0)
  892. JumpPower1.TextSize = 20
  893.  
  894. TextLabel_13.Parent = LocalPlayerGUI
  895. TextLabel_13.BackgroundColor3 = Color3.new(1, 1, 1)
  896. TextLabel_13.BackgroundTransparency = 1
  897. TextLabel_13.Position = UDim2.new(0, 189, 0, 268)
  898. TextLabel_13.Size = UDim2.new(0, 127, 0, 31)
  899. TextLabel_13.Font = Enum.Font.Cartoon
  900. TextLabel_13.FontSize = Enum.FontSize.Size24
  901. TextLabel_13.Text = "Click Low Gravity And HighJump Again To Reverse"
  902. TextLabel_13.TextColor3 = Color3.new(1, 1, 1)
  903. TextLabel_13.TextSize = 20
  904.  
  905. TextLabel_14.Parent = LocalPlayerGUI
  906. TextLabel_14.BackgroundColor3 = Color3.new(1, 1, 1)
  907. TextLabel_14.BackgroundTransparency = 1
  908. TextLabel_14.Position = UDim2.new(0, 338, 0, 181)
  909. TextLabel_14.Size = UDim2.new(0, 127, 0, 25)
  910. TextLabel_14.Font = Enum.Font.Cartoon
  911. TextLabel_14.FontSize = Enum.FontSize.Size24
  912. TextLabel_14.Text = "Press \"Q\" To Speed Up"
  913. TextLabel_14.TextColor3 = Color3.new(1, 1, 1)
  914. TextLabel_14.TextSize = 20
  915.  
  916. GodMode1.Name = "GodMode1"
  917. GodMode1.Parent = LocalPlayerGUI
  918. GodMode1.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  919. GodMode1.BorderSizePixel = 0
  920. GodMode1.Position = UDim2.new(0, 192, 0, 76)
  921. GodMode1.Size = UDim2.new(0, 120, 0, 30)
  922. GodMode1.Font = Enum.Font.Cartoon
  923. GodMode1.FontSize = Enum.FontSize.Size24
  924. GodMode1.Text = "God Mode"
  925. GodMode1.TextColor3 = Color3.new(1, 1, 0)
  926. GodMode1.TextSize = 20
  927.  
  928. Coordinates.Name = "Coordinates"
  929. Coordinates.Parent = LocalPlayerGUI
  930. Coordinates.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  931. Coordinates.BorderSizePixel = 0
  932. Coordinates.Position = UDim2.new(0, 342, 0, 76)
  933. Coordinates.Size = UDim2.new(0, 120, 0, 30)
  934. Coordinates.Font = Enum.Font.Cartoon
  935. Coordinates.FontSize = Enum.FontSize.Size24
  936. Coordinates.Text = "Coords"
  937. Coordinates.TextColor3 = Color3.new(1, 1, 0)
  938. Coordinates.TextSize = 20
  939.  
  940. Btools.Name = "Btools"
  941. Btools.Parent = LocalPlayerGUI
  942. Btools.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  943. Btools.BorderSizePixel = 0
  944. Btools.Position = UDim2.new(0, 42, 0, 322)
  945. Btools.Size = UDim2.new(0, 90, 0, 25)
  946. Btools.Font = Enum.Font.Cartoon
  947. Btools.FontSize = Enum.FontSize.Size18
  948. Btools.Text = "Btools"
  949. Btools.TextColor3 = Color3.new(1, 1, 0)
  950. Btools.TextSize = 17
  951. Btools.TextStrokeColor3 = Color3.new(1, 1, 0)
  952.  
  953. CloseButton2.Name = "CloseButton2"
  954. CloseButton2.Parent = LocalPlayerGUI
  955. CloseButton2.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  956. CloseButton2.BackgroundTransparency = 1
  957. CloseButton2.BorderSizePixel = 0
  958. CloseButton2.Position = UDim2.new(0, 322, 0, 0)
  959. CloseButton2.Size = UDim2.new(0, 127, 0, 31)
  960. CloseButton2.Font = Enum.Font.Cartoon
  961. CloseButton2.FontSize = Enum.FontSize.Size24
  962. CloseButton2.Text = "Close"
  963. CloseButton2.TextColor3 = Color3.new(0, 0.666667, 1)
  964. CloseButton2.TextSize = 20
  965.  
  966. SpawningGUI.Name = "SpawningGUI"
  967. SpawningGUI.Parent = MainGUI
  968. SpawningGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  969. SpawningGUI.BorderSizePixel = 0
  970. SpawningGUI.Size = UDim2.new(0, 505, 0, 361)
  971. SpawningGUI.Visible = false
  972.  
  973. TextLabel_15.Parent = SpawningGUI
  974. TextLabel_15.BackgroundColor3 = Color3.new(1, 1, 1)
  975. TextLabel_15.BackgroundTransparency = 1
  976. TextLabel_15.Position = UDim2.new(0, 189, 0, 0)
  977. TextLabel_15.Size = UDim2.new(0, 127, 0, 31)
  978. TextLabel_15.Font = Enum.Font.Cartoon
  979. TextLabel_15.FontSize = Enum.FontSize.Size24
  980. TextLabel_15.Text = "Unjailbreak"
  981. TextLabel_15.TextColor3 = Color3.new(1, 1, 1)
  982. TextLabel_15.TextSize = 20
  983.  
  984. TextLabel_16.Parent = SpawningGUI
  985. TextLabel_16.BackgroundColor3 = Color3.new(1, 1, 1)
  986. TextLabel_16.BackgroundTransparency = 1
  987. TextLabel_16.Position = UDim2.new(0, 189, 0, 333)
  988. TextLabel_16.Size = UDim2.new(0, 127, 0, 28)
  989. TextLabel_16.Font = Enum.Font.Cartoon
  990. TextLabel_16.FontSize = Enum.FontSize.Size24
  991. TextLabel_16.Text = "Created By Unlisting"
  992. TextLabel_16.TextColor3 = Color3.new(1, 1, 1)
  993. TextLabel_16.TextSize = 20
  994.  
  995. TextLabel_17.Parent = SpawningGUI
  996. TextLabel_17.BackgroundColor3 = Color3.new(1, 1, 1)
  997. TextLabel_17.BackgroundTransparency = 1
  998. TextLabel_17.Position = UDim2.new(0, 465, 0, 0)
  999. TextLabel_17.Size = UDim2.new(0, 40, 0, 29)
  1000. TextLabel_17.Font = Enum.Font.Cartoon
  1001. TextLabel_17.FontSize = Enum.FontSize.Size24
  1002. TextLabel_17.Text = "v0.6"
  1003. TextLabel_17.TextColor3 = Color3.new(1, 1, 1)
  1004. TextLabel_17.TextSize = 20
  1005.  
  1006. AK47.Name = "AK47"
  1007. AK47.Parent = SpawningGUI
  1008. AK47.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1009. AK47.BorderSizePixel = 0
  1010. AK47.Position = UDim2.new(0, 42, 0, 76)
  1011. AK47.Size = UDim2.new(0, 120, 0, 30)
  1012. AK47.Font = Enum.Font.Cartoon
  1013. AK47.FontSize = Enum.FontSize.Size24
  1014. AK47.Text = "AK47"
  1015. AK47.TextColor3 = Color3.new(1, 1, 0)
  1016. AK47.TextSize = 20
  1017.  
  1018. Flashlight.Name = "Flashlight"
  1019. Flashlight.Parent = SpawningGUI
  1020. Flashlight.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1021. Flashlight.BorderSizePixel = 0
  1022. Flashlight.Position = UDim2.new(0, 192, 0, 120)
  1023. Flashlight.Size = UDim2.new(0, 120, 0, 30)
  1024. Flashlight.Font = Enum.Font.Cartoon
  1025. Flashlight.FontSize = Enum.FontSize.Size24
  1026. Flashlight.Text = "Flashlight"
  1027. Flashlight.TextColor3 = Color3.new(1, 1, 0)
  1028. Flashlight.TextSize = 20
  1029.  
  1030. PolicePants.Name = "PolicePants"
  1031. PolicePants.Parent = SpawningGUI
  1032. PolicePants.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1033. PolicePants.BorderSizePixel = 0
  1034. PolicePants.Position = UDim2.new(0, 192, 0, 200)
  1035. PolicePants.Size = UDim2.new(0, 120, 0, 30)
  1036. PolicePants.Font = Enum.Font.Cartoon
  1037. PolicePants.FontSize = Enum.FontSize.Size24
  1038. PolicePants.Text = "Police Pants"
  1039. PolicePants.TextColor3 = Color3.new(1, 1, 0)
  1040. PolicePants.TextSize = 20
  1041.  
  1042. Back8.Name = "Back8"
  1043. Back8.Parent = SpawningGUI
  1044. Back8.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1045. Back8.BackgroundTransparency = 1
  1046. Back8.BorderSizePixel = 0
  1047. Back8.Position = UDim2.new(0, 208, 0, 308)
  1048. Back8.Size = UDim2.new(0, 90, 0, 25)
  1049. Back8.Font = Enum.Font.Cartoon
  1050. Back8.FontSize = Enum.FontSize.Size18
  1051. Back8.Text = "Back"
  1052. Back8.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1053. Back8.TextSize = 17
  1054. Back8.TextStrokeColor3 = Color3.new(1, 1, 0)
  1055.  
  1056. Pistol.Name = "Pistol"
  1057. Pistol.Parent = SpawningGUI
  1058. Pistol.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1059. Pistol.BorderSizePixel = 0
  1060. Pistol.Position = UDim2.new(0, 42, 0, 120)
  1061. Pistol.Size = UDim2.new(0, 120, 0, 30)
  1062. Pistol.Font = Enum.Font.Cartoon
  1063. Pistol.FontSize = Enum.FontSize.Size24
  1064. Pistol.Text = "Pistol"
  1065. Pistol.TextColor3 = Color3.new(1, 1, 0)
  1066. Pistol.TextSize = 20
  1067.  
  1068. PoliceShirt.Name = "PoliceShirt"
  1069. PoliceShirt.Parent = SpawningGUI
  1070. PoliceShirt.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1071. PoliceShirt.BorderSizePixel = 0
  1072. PoliceShirt.Position = UDim2.new(0, 42, 0, 200)
  1073. PoliceShirt.Size = UDim2.new(0, 120, 0, 30)
  1074. PoliceShirt.Font = Enum.Font.Cartoon
  1075. PoliceShirt.FontSize = Enum.FontSize.Size24
  1076. PoliceShirt.Text = "Police Shirt"
  1077. PoliceShirt.TextColor3 = Color3.new(1, 1, 0)
  1078. PoliceShirt.TextSize = 20
  1079.  
  1080. PoliceHat.Name = "PoliceHat"
  1081. PoliceHat.Parent = SpawningGUI
  1082. PoliceHat.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1083. PoliceHat.BorderSizePixel = 0
  1084. PoliceHat.Position = UDim2.new(0, 342, 0, 200)
  1085. PoliceHat.Size = UDim2.new(0, 120, 0, 30)
  1086. PoliceHat.Font = Enum.Font.Cartoon
  1087. PoliceHat.FontSize = Enum.FontSize.Size24
  1088. PoliceHat.Text = "Police Hat"
  1089. PoliceHat.TextColor3 = Color3.new(1, 1, 0)
  1090. PoliceHat.TextSize = 20
  1091.  
  1092. M4A4.Name = "M4A4"
  1093. M4A4.Parent = SpawningGUI
  1094. M4A4.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1095. M4A4.BorderSizePixel = 0
  1096. M4A4.Position = UDim2.new(0, 192, 0, 76)
  1097. M4A4.Size = UDim2.new(0, 120, 0, 30)
  1098. M4A4.Font = Enum.Font.Cartoon
  1099. M4A4.FontSize = Enum.FontSize.Size24
  1100. M4A4.Text = "M4A4"
  1101. M4A4.TextColor3 = Color3.new(1, 1, 0)
  1102. M4A4.TextSize = 20
  1103.  
  1104. Shotgun.Name = "Shotgun"
  1105. Shotgun.Parent = SpawningGUI
  1106. Shotgun.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1107. Shotgun.BorderSizePixel = 0
  1108. Shotgun.Position = UDim2.new(0, 342, 0, 76)
  1109. Shotgun.Size = UDim2.new(0, 120, 0, 30)
  1110. Shotgun.Font = Enum.Font.Cartoon
  1111. Shotgun.FontSize = Enum.FontSize.Size24
  1112. Shotgun.Text = "ShotGun"
  1113. Shotgun.TextColor3 = Color3.new(1, 1, 0)
  1114. Shotgun.TextSize = 20
  1115.  
  1116. CloseButton8.Name = "CloseButton8"
  1117. CloseButton8.Parent = SpawningGUI
  1118. CloseButton8.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1119. CloseButton8.BackgroundTransparency = 1
  1120. CloseButton8.BorderSizePixel = 0
  1121. CloseButton8.Position = UDim2.new(0, 322, 0, 0)
  1122. CloseButton8.Size = UDim2.new(0, 127, 0, 31)
  1123. CloseButton8.Font = Enum.Font.Cartoon
  1124. CloseButton8.FontSize = Enum.FontSize.Size24
  1125. CloseButton8.Text = "Close"
  1126. CloseButton8.TextColor3 = Color3.new(0, 0.666667, 1)
  1127. CloseButton8.TextSize = 20
  1128.  
  1129. SWATMask.Name = "SWATMask"
  1130. SWATMask.Parent = SpawningGUI
  1131. SWATMask.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1132. SWATMask.BorderSizePixel = 0
  1133. SWATMask.Position = UDim2.new(0, 42, 0, 284)
  1134. SWATMask.Size = UDim2.new(0, 120, 0, 30)
  1135. SWATMask.Font = Enum.Font.Cartoon
  1136. SWATMask.FontSize = Enum.FontSize.Size24
  1137. SWATMask.Text = "SWAT Mask"
  1138. SWATMask.TextColor3 = Color3.new(1, 1, 0)
  1139. SWATMask.TextSize = 20
  1140.  
  1141. TextLabel_18.Parent = SpawningGUI
  1142. TextLabel_18.BackgroundColor3 = Color3.new(1, 1, 1)
  1143. TextLabel_18.BackgroundTransparency = 1
  1144. TextLabel_18.Position = UDim2.new(0, 189, 0, 43)
  1145. TextLabel_18.Size = UDim2.new(0, 127, 0, 28)
  1146. TextLabel_18.Font = Enum.Font.Cartoon
  1147. TextLabel_18.FontSize = Enum.FontSize.Size24
  1148. TextLabel_18.Text = "Weapons"
  1149. TextLabel_18.TextColor3 = Color3.new(1, 1, 1)
  1150. TextLabel_18.TextSize = 20
  1151.  
  1152. TextLabel_19.Parent = SpawningGUI
  1153. TextLabel_19.BackgroundColor3 = Color3.new(1, 1, 1)
  1154. TextLabel_19.BackgroundTransparency = 1
  1155. TextLabel_19.Position = UDim2.new(0, 189, 0, 167)
  1156. TextLabel_19.Size = UDim2.new(0, 127, 0, 28)
  1157. TextLabel_19.Font = Enum.Font.Cartoon
  1158. TextLabel_19.FontSize = Enum.FontSize.Size24
  1159. TextLabel_19.Text = "Clothing"
  1160. TextLabel_19.TextColor3 = Color3.new(1, 1, 1)
  1161. TextLabel_19.TextSize = 20
  1162.  
  1163. SWATShirt.Name = "SWATShirt"
  1164. SWATShirt.Parent = SpawningGUI
  1165. SWATShirt.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1166. SWATShirt.BorderSizePixel = 0
  1167. SWATShirt.Position = UDim2.new(0, 42, 0, 242)
  1168. SWATShirt.Size = UDim2.new(0, 120, 0, 30)
  1169. SWATShirt.Font = Enum.Font.Cartoon
  1170. SWATShirt.FontSize = Enum.FontSize.Size24
  1171. SWATShirt.Text = "SWAT Shirt"
  1172. SWATShirt.TextColor3 = Color3.new(1, 1, 0)
  1173. SWATShirt.TextSize = 20
  1174.  
  1175. SWATPants.Name = "SWATPants"
  1176. SWATPants.Parent = SpawningGUI
  1177. SWATPants.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1178. SWATPants.BorderSizePixel = 0
  1179. SWATPants.Position = UDim2.new(0, 192, 0, 242)
  1180. SWATPants.Size = UDim2.new(0, 120, 0, 30)
  1181. SWATPants.Font = Enum.Font.Cartoon
  1182. SWATPants.FontSize = Enum.FontSize.Size24
  1183. SWATPants.Text = "SWAT Pants"
  1184. SWATPants.TextColor3 = Color3.new(1, 1, 0)
  1185. SWATPants.TextSize = 20
  1186.  
  1187. SWATHat.Name = "SWATHat"
  1188. SWATHat.Parent = SpawningGUI
  1189. SWATHat.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1190. SWATHat.BorderSizePixel = 0
  1191. SWATHat.Position = UDim2.new(0, 342, 0, 242)
  1192. SWATHat.Size = UDim2.new(0, 120, 0, 30)
  1193. SWATHat.Font = Enum.Font.Cartoon
  1194. SWATHat.FontSize = Enum.FontSize.Size24
  1195. SWATHat.Text = "SWAT Hat"
  1196. SWATHat.TextColor3 = Color3.new(1, 1, 0)
  1197. SWATHat.TextSize = 20
  1198.  
  1199. Spawning.Name = "Spawning"
  1200. Spawning.Parent = MainGUI
  1201. Spawning.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1202. Spawning.BorderSizePixel = 0
  1203. Spawning.Position = UDim2.new(0, 167, 0, 230)
  1204. Spawning.Size = UDim2.new(0, 170, 0, 37)
  1205. Spawning.Font = Enum.Font.Cartoon
  1206. Spawning.FontSize = Enum.FontSize.Size24
  1207. Spawning.Text = "Spawning"
  1208. Spawning.TextSize = 20
  1209.  
  1210. CloseButton.Name = "CloseButton"
  1211. CloseButton.Parent = MainGUI
  1212. CloseButton.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1213. CloseButton.BackgroundTransparency = 1
  1214. CloseButton.BorderSizePixel = 0
  1215. CloseButton.Position = UDim2.new(0, 322, 0, 0)
  1216. CloseButton.Size = UDim2.new(0, 127, 0, 31)
  1217. CloseButton.Font = Enum.Font.Cartoon
  1218. CloseButton.FontSize = Enum.FontSize.Size24
  1219. CloseButton.Text = "Close"
  1220. CloseButton.TextColor3 = Color3.new(0, 0.666667, 1)
  1221. CloseButton.TextSize = 20
  1222.  
  1223. FastTravelGUI.Name = "FastTravelGUI"
  1224. FastTravelGUI.Parent = MainGUI
  1225. FastTravelGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  1226. FastTravelGUI.BorderSizePixel = 0
  1227. FastTravelGUI.Position = UDim2.new(0, -105, 0, 0)
  1228.  
  1229. FastTravelLabel.Name = "FastTravelLabel"
  1230. FastTravelLabel.Parent = FastTravelGUI
  1231. FastTravelLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  1232. FastTravelLabel.BackgroundTransparency = 1
  1233. FastTravelLabel.Size = UDim2.new(0, 100, 0, 30)
  1234. FastTravelLabel.Visible = false
  1235. FastTravelLabel.Font = Enum.Font.Cartoon
  1236. FastTravelLabel.FontSize = Enum.FontSize.Size24
  1237. FastTravelLabel.Text = "Fast Travel"
  1238. FastTravelLabel.TextColor3 = Color3.new(1, 1, 1)
  1239. FastTravelLabel.TextSize = 20
  1240.  
  1241. FastCarTeleporting.Name = "FastCarTeleporting"
  1242. FastCarTeleporting.Parent = FastTravelGUI
  1243. FastCarTeleporting.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1244. FastCarTeleporting.BorderSizePixel = 0
  1245. FastCarTeleporting.Position = UDim2.new(0, 0, 0, 61)
  1246. FastCarTeleporting.Size = UDim2.new(0, 100, 0, 25)
  1247. FastCarTeleporting.Visible = false
  1248. FastCarTeleporting.Font = Enum.Font.Cartoon
  1249. FastCarTeleporting.FontSize = Enum.FontSize.Size24
  1250. FastCarTeleporting.Text = "Car Teleport"
  1251. FastCarTeleporting.TextSize = 20
  1252.  
  1253. FastLocalPlayer.Name = "FastLocalPlayer"
  1254. FastLocalPlayer.Parent = FastTravelGUI
  1255. FastLocalPlayer.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1256. FastLocalPlayer.BorderSizePixel = 0
  1257. FastLocalPlayer.Position = UDim2.new(0, 0, 0, 88)
  1258. FastLocalPlayer.Size = UDim2.new(0, 100, 0, 25)
  1259. FastLocalPlayer.Visible = false
  1260. FastLocalPlayer.Font = Enum.Font.Cartoon
  1261. FastLocalPlayer.FontSize = Enum.FontSize.Size24
  1262. FastLocalPlayer.Text = "Local Player"
  1263. FastLocalPlayer.TextSize = 20
  1264.  
  1265. FastCredits.Name = "FastCredits"
  1266. FastCredits.Parent = FastTravelGUI
  1267. FastCredits.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1268. FastCredits.BorderSizePixel = 0
  1269. FastCredits.Position = UDim2.new(0, 0, 0, 196)
  1270. FastCredits.Size = UDim2.new(0, 100, 0, 25)
  1271. FastCredits.Visible = false
  1272. FastCredits.Font = Enum.Font.Cartoon
  1273. FastCredits.FontSize = Enum.FontSize.Size24
  1274. FastCredits.Text = "Credits"
  1275. FastCredits.TextSize = 20
  1276. FastCredits.TextWrapped = true
  1277.  
  1278. FastGame.Name = "FastGame"
  1279. FastGame.Parent = FastTravelGUI
  1280. FastGame.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1281. FastGame.BorderSizePixel = 0
  1282. FastGame.Position = UDim2.new(0, 0, 0, 115)
  1283. FastGame.Size = UDim2.new(0, 100, 0, 25)
  1284. FastGame.Visible = false
  1285. FastGame.Font = Enum.Font.Cartoon
  1286. FastGame.FontSize = Enum.FontSize.Size24
  1287. FastGame.Text = "Game"
  1288. FastGame.TextSize = 20
  1289.  
  1290. FastTeleport.Name = "FastTeleport"
  1291. FastTeleport.Parent = FastTravelGUI
  1292. FastTeleport.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1293. FastTeleport.BorderSizePixel = 0
  1294. FastTeleport.Position = UDim2.new(0, 0, 0, 34)
  1295. FastTeleport.Size = UDim2.new(0, 100, 0, 25)
  1296. FastTeleport.Visible = false
  1297. FastTeleport.Font = Enum.Font.Cartoon
  1298. FastTeleport.FontSize = Enum.FontSize.Size24
  1299. FastTeleport.Text = "Teleporting"
  1300. FastTeleport.TextSize = 20
  1301.  
  1302. FastSettings.Name = "FastSettings"
  1303. FastSettings.Parent = FastTravelGUI
  1304. FastSettings.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1305. FastSettings.BorderSizePixel = 0
  1306. FastSettings.Position = UDim2.new(0, 0, 0, 169)
  1307. FastSettings.Size = UDim2.new(0, 100, 0, 25)
  1308. FastSettings.Visible = false
  1309. FastSettings.Font = Enum.Font.Cartoon
  1310. FastSettings.FontSize = Enum.FontSize.Size24
  1311. FastSettings.Text = "Settings"
  1312. FastSettings.TextSize = 20
  1313. FastSettings.TextWrapped = true
  1314.  
  1315. FastSpawning.Name = "FastSpawning"
  1316. FastSpawning.Parent = FastTravelGUI
  1317. FastSpawning.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1318. FastSpawning.BorderSizePixel = 0
  1319. FastSpawning.Position = UDim2.new(0, 0, 0, 142)
  1320. FastSpawning.Size = UDim2.new(0, 100, 0, 25)
  1321. FastSpawning.Visible = false
  1322. FastSpawning.Font = Enum.Font.Cartoon
  1323. FastSpawning.FontSize = Enum.FontSize.Size24
  1324. FastSpawning.Text = "Spawning"
  1325. FastSpawning.TextSize = 20
  1326. FastSpawning.TextWrapped = true
  1327.  
  1328. CarTeleporting.Name = "CarTeleporting"
  1329. CarTeleporting.Parent = MainGUI
  1330. CarTeleporting.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1331. CarTeleporting.BorderSizePixel = 0
  1332. CarTeleporting.Position = UDim2.new(0, 167, 0, 95)
  1333. CarTeleporting.Size = UDim2.new(0, 170, 0, 37)
  1334. CarTeleporting.Font = Enum.Font.Cartoon
  1335. CarTeleporting.FontSize = Enum.FontSize.Size24
  1336. CarTeleporting.Text = "Car Teleporting"
  1337. CarTeleporting.TextSize = 20
  1338.  
  1339. FastTravel.Name = "FastTravel"
  1340. FastTravel.Parent = MainGUI
  1341. FastTravel.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1342. FastTravel.BackgroundTransparency = 1
  1343. FastTravel.BorderSizePixel = 0
  1344. FastTravel.Position = UDim2.new(0, 0, 0, 35)
  1345. FastTravel.Size = UDim2.new(0, 31, 0, 37)
  1346. FastTravel.Font = Enum.Font.Cartoon
  1347. FastTravel.FontSize = Enum.FontSize.Size48
  1348. FastTravel.Text = "<"
  1349. FastTravel.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1350. FastTravel.TextSize = 40
  1351.  
  1352. SettingsGUI.Name = "SettingsGUI"
  1353. SettingsGUI.Parent = MainGUI
  1354. SettingsGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  1355. SettingsGUI.BorderSizePixel = 0
  1356. SettingsGUI.Size = UDim2.new(0, 505, 0, 361)
  1357. SettingsGUI.Visible = false
  1358.  
  1359. TextLabel_20.Parent = SettingsGUI
  1360. TextLabel_20.BackgroundColor3 = Color3.new(1, 1, 1)
  1361. TextLabel_20.BackgroundTransparency = 1
  1362. TextLabel_20.Position = UDim2.new(0, 189, 0, 0)
  1363. TextLabel_20.Size = UDim2.new(0, 127, 0, 31)
  1364. TextLabel_20.Font = Enum.Font.Cartoon
  1365. TextLabel_20.FontSize = Enum.FontSize.Size24
  1366. TextLabel_20.Text = "Unjailbreak"
  1367. TextLabel_20.TextColor3 = Color3.new(1, 1, 1)
  1368. TextLabel_20.TextSize = 20
  1369.  
  1370. TextLabel_21.Parent = SettingsGUI
  1371. TextLabel_21.BackgroundColor3 = Color3.new(1, 1, 1)
  1372. TextLabel_21.BackgroundTransparency = 1
  1373. TextLabel_21.Position = UDim2.new(0, 189, 0, 333)
  1374. TextLabel_21.Size = UDim2.new(0, 127, 0, 28)
  1375. TextLabel_21.Font = Enum.Font.Cartoon
  1376. TextLabel_21.FontSize = Enum.FontSize.Size24
  1377. TextLabel_21.Text = "Created By Unlisting"
  1378. TextLabel_21.TextColor3 = Color3.new(1, 1, 1)
  1379. TextLabel_21.TextSize = 20
  1380.  
  1381. TextLabel_22.Parent = SettingsGUI
  1382. TextLabel_22.BackgroundColor3 = Color3.new(1, 1, 1)
  1383. TextLabel_22.BackgroundTransparency = 1
  1384. TextLabel_22.Position = UDim2.new(0, 465, 0, 0)
  1385. TextLabel_22.Size = UDim2.new(0, 40, 0, 29)
  1386. TextLabel_22.Font = Enum.Font.Cartoon
  1387. TextLabel_22.FontSize = Enum.FontSize.Size24
  1388. TextLabel_22.Text = "v0.6"
  1389. TextLabel_22.TextColor3 = Color3.new(1, 1, 1)
  1390. TextLabel_22.TextSize = 20
  1391.  
  1392. Back6.Name = "Back6"
  1393. Back6.Parent = SettingsGUI
  1394. Back6.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1395. Back6.BackgroundTransparency = 1
  1396. Back6.BorderSizePixel = 0
  1397. Back6.Position = UDim2.new(0, 208, 0, 308)
  1398. Back6.Size = UDim2.new(0, 90, 0, 25)
  1399. Back6.Font = Enum.Font.Cartoon
  1400. Back6.FontSize = Enum.FontSize.Size18
  1401. Back6.Text = "Back"
  1402. Back6.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1403. Back6.TextSize = 17
  1404. Back6.TextStrokeColor3 = Color3.new(1, 1, 0)
  1405.  
  1406. Transparent1.Name = "Transparent1"
  1407. Transparent1.Parent = SettingsGUI
  1408. Transparent1.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1409. Transparent1.BackgroundTransparency = 0.5
  1410. Transparent1.BorderSizePixel = 0
  1411. Transparent1.Position = UDim2.new(0, 192, 0, 111)
  1412. Transparent1.Size = UDim2.new(0, 34, 0, 30)
  1413. Transparent1.Font = Enum.Font.Cartoon
  1414. Transparent1.FontSize = Enum.FontSize.Size24
  1415. Transparent1.Text = ""
  1416. Transparent1.TextColor3 = Color3.new(0, 0, 0)
  1417. Transparent1.TextSize = 20
  1418.  
  1419. TextLabel_23.Parent = SettingsGUI
  1420. TextLabel_23.BackgroundColor3 = Color3.new(1, 1, 1)
  1421. TextLabel_23.BackgroundTransparency = 1
  1422. TextLabel_23.Position = UDim2.new(0, 189, 0, 72)
  1423. TextLabel_23.Size = UDim2.new(0, 127, 0, 28)
  1424. TextLabel_23.Font = Enum.Font.Cartoon
  1425. TextLabel_23.FontSize = Enum.FontSize.Size24
  1426. TextLabel_23.Text = "Transparency"
  1427. TextLabel_23.TextColor3 = Color3.new(1, 1, 1)
  1428. TextLabel_23.TextSize = 20
  1429.  
  1430. Transparent2.Name = "Transparent2"
  1431. Transparent2.Parent = SettingsGUI
  1432. Transparent2.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1433. Transparent2.BorderSizePixel = 0
  1434. Transparent2.Position = UDim2.new(0, 282, 0, 111)
  1435. Transparent2.Size = UDim2.new(0, 34, 0, 30)
  1436. Transparent2.Font = Enum.Font.Cartoon
  1437. Transparent2.FontSize = Enum.FontSize.Size24
  1438. Transparent2.Text = ""
  1439. Transparent2.TextColor3 = Color3.new(0, 0, 0)
  1440. Transparent2.TextSize = 20
  1441.  
  1442. TextLabel_24.Parent = SettingsGUI
  1443. TextLabel_24.BackgroundColor3 = Color3.new(1, 1, 1)
  1444. TextLabel_24.BackgroundTransparency = 1
  1445. TextLabel_24.Position = UDim2.new(0, 189, 0, 152)
  1446. TextLabel_24.Size = UDim2.new(0, 127, 0, 28)
  1447. TextLabel_24.Font = Enum.Font.Cartoon
  1448. TextLabel_24.FontSize = Enum.FontSize.Size24
  1449. TextLabel_24.Text = "Keybinds"
  1450. TextLabel_24.TextColor3 = Color3.new(1, 1, 1)
  1451. TextLabel_24.TextSize = 20
  1452.  
  1453. JewelryKey.Name = "JewelryKey"
  1454. JewelryKey.Parent = SettingsGUI
  1455. JewelryKey.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1456. JewelryKey.BorderSizePixel = 0
  1457. JewelryKey.Position = UDim2.new(0, 213, 0, 252)
  1458. JewelryKey.Size = UDim2.new(0, 79, 0, 30)
  1459. JewelryKey.Font = Enum.Font.Cartoon
  1460. JewelryKey.FontSize = Enum.FontSize.Size24
  1461. JewelryKey.Text = "Jewelry"
  1462. JewelryKey.TextColor3 = Color3.new(0, 0, 0)
  1463. JewelryKey.TextSize = 20
  1464.  
  1465. CrimBaseKey.Name = "CrimBaseKey"
  1466. CrimBaseKey.Parent = SettingsGUI
  1467. CrimBaseKey.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1468. CrimBaseKey.BorderSizePixel = 0
  1469. CrimBaseKey.Position = UDim2.new(0, 53, 0, 252)
  1470. CrimBaseKey.Size = UDim2.new(0, 79, 0, 30)
  1471. CrimBaseKey.Font = Enum.Font.Cartoon
  1472. CrimBaseKey.FontSize = Enum.FontSize.Size24
  1473. CrimBaseKey.Text = "CrimBase"
  1474. CrimBaseKey.TextColor3 = Color3.new(0, 0, 0)
  1475. CrimBaseKey.TextSize = 20
  1476.  
  1477. BankKey.Name = "BankKey"
  1478. BankKey.Parent = SettingsGUI
  1479. BankKey.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1480. BankKey.BorderSizePixel = 0
  1481. BankKey.Position = UDim2.new(0, 373, 0, 252)
  1482. BankKey.Size = UDim2.new(0, 79, 0, 30)
  1483. BankKey.Font = Enum.Font.Cartoon
  1484. BankKey.FontSize = Enum.FontSize.Size24
  1485. BankKey.Text = "Bank"
  1486. BankKey.TextColor3 = Color3.new(0, 0, 0)
  1487. BankKey.TextSize = 20
  1488.  
  1489. JewelryKeyBox.Name = "JewelryKeyBox"
  1490. JewelryKeyBox.Parent = SettingsGUI
  1491. JewelryKeyBox.BackgroundColor3 = Color3.new(0, 0, 0)
  1492. JewelryKeyBox.BackgroundTransparency = 0.5
  1493. JewelryKeyBox.Position = UDim2.new(0, 233, 0, 198)
  1494. JewelryKeyBox.Size = UDim2.new(0, 38, 0, 33)
  1495. JewelryKeyBox.Font = Enum.Font.Cartoon
  1496. JewelryKeyBox.FontSize = Enum.FontSize.Size24
  1497. JewelryKeyBox.Text = "Key"
  1498. JewelryKeyBox.TextColor3 = Color3.new(0, 0.666667, 1)
  1499. JewelryKeyBox.TextSize = 20
  1500.  
  1501. CrimBaseKeyBox.Name = "CrimBaseKeyBox"
  1502. CrimBaseKeyBox.Parent = SettingsGUI
  1503. CrimBaseKeyBox.BackgroundColor3 = Color3.new(0, 0, 0)
  1504. CrimBaseKeyBox.BackgroundTransparency = 0.5
  1505. CrimBaseKeyBox.Position = UDim2.new(0, 73, 0, 198)
  1506. CrimBaseKeyBox.Size = UDim2.new(0, 38, 0, 33)
  1507. CrimBaseKeyBox.Font = Enum.Font.Cartoon
  1508. CrimBaseKeyBox.FontSize = Enum.FontSize.Size24
  1509. CrimBaseKeyBox.Text = "Key"
  1510. CrimBaseKeyBox.TextColor3 = Color3.new(0, 0.666667, 1)
  1511. CrimBaseKeyBox.TextSize = 20
  1512.  
  1513. BankKeyBox.Name = "BankKeyBox"
  1514. BankKeyBox.Parent = SettingsGUI
  1515. BankKeyBox.BackgroundColor3 = Color3.new(0, 0, 0)
  1516. BankKeyBox.BackgroundTransparency = 0.5
  1517. BankKeyBox.Position = UDim2.new(0, 393, 0, 198)
  1518. BankKeyBox.Size = UDim2.new(0, 38, 0, 33)
  1519. BankKeyBox.Font = Enum.Font.Cartoon
  1520. BankKeyBox.FontSize = Enum.FontSize.Size24
  1521. BankKeyBox.Text = "Key"
  1522. BankKeyBox.TextColor3 = Color3.new(0, 0.666667, 1)
  1523. BankKeyBox.TextSize = 20
  1524.  
  1525. CloseButton6.Name = "CloseButton6"
  1526. CloseButton6.Parent = SettingsGUI
  1527. CloseButton6.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1528. CloseButton6.BackgroundTransparency = 1
  1529. CloseButton6.BorderSizePixel = 0
  1530. CloseButton6.Position = UDim2.new(0, 322, 0, 0)
  1531. CloseButton6.Size = UDim2.new(0, 127, 0, 31)
  1532. CloseButton6.Font = Enum.Font.Cartoon
  1533. CloseButton6.FontSize = Enum.FontSize.Size24
  1534. CloseButton6.Text = "Close"
  1535. CloseButton6.TextColor3 = Color3.new(0, 0.666667, 1)
  1536. CloseButton6.TextSize = 20
  1537.  
  1538. CustomTransparency.Name = "CustomTransparency"
  1539. CustomTransparency.Parent = SettingsGUI
  1540. CustomTransparency.BackgroundColor3 = Color3.new(0, 0, 0)
  1541. CustomTransparency.BackgroundTransparency = 0.5
  1542. CustomTransparency.Position = UDim2.new(0, 73, 0, 108)
  1543. CustomTransparency.Size = UDim2.new(0, 38, 0, 33)
  1544. CustomTransparency.Font = Enum.Font.Cartoon
  1545. CustomTransparency.FontSize = Enum.FontSize.Size24
  1546. CustomTransparency.Text = "0.1"
  1547. CustomTransparency.TextColor3 = Color3.new(0, 0.666667, 1)
  1548. CustomTransparency.TextSize = 20
  1549.  
  1550. TextLabel_25.Parent = SettingsGUI
  1551. TextLabel_25.BackgroundColor3 = Color3.new(1, 1, 1)
  1552. TextLabel_25.BackgroundTransparency = 1
  1553. TextLabel_25.Position = UDim2.new(0, 33, 0, 72)
  1554. TextLabel_25.Size = UDim2.new(0, 120, 0, 28)
  1555. TextLabel_25.Font = Enum.Font.Cartoon
  1556. TextLabel_25.FontSize = Enum.FontSize.Size24
  1557. TextLabel_25.Text = "Custom"
  1558. TextLabel_25.TextColor3 = Color3.new(1, 1, 1)
  1559. TextLabel_25.TextSize = 20
  1560.  
  1561. SetCustomTransparency.Name = "SetCustomTransparency"
  1562. SetCustomTransparency.Parent = SettingsGUI
  1563. SetCustomTransparency.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1564. SetCustomTransparency.BorderSizePixel = 0
  1565. SetCustomTransparency.Position = UDim2.new(0, 69, 0, 150)
  1566. SetCustomTransparency.Size = UDim2.new(0, 45, 0, 30)
  1567. SetCustomTransparency.Font = Enum.Font.Cartoon
  1568. SetCustomTransparency.FontSize = Enum.FontSize.Size24
  1569. SetCustomTransparency.Text = "Set"
  1570. SetCustomTransparency.TextColor3 = Color3.new(0, 0, 0)
  1571. SetCustomTransparency.TextSize = 20
  1572.  
  1573. CreditsGUI.Name = "CreditsGUI"
  1574. CreditsGUI.Parent = MainGUI
  1575. CreditsGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  1576. CreditsGUI.BorderSizePixel = 0
  1577. CreditsGUI.Size = UDim2.new(0, 505, 0, 361)
  1578. CreditsGUI.Visible = false
  1579.  
  1580. TextLabel_26.Parent = CreditsGUI
  1581. TextLabel_26.BackgroundColor3 = Color3.new(1, 1, 1)
  1582. TextLabel_26.BackgroundTransparency = 1
  1583. TextLabel_26.Position = UDim2.new(0, 189, 0, 0)
  1584. TextLabel_26.Size = UDim2.new(0, 127, 0, 31)
  1585. TextLabel_26.Font = Enum.Font.Cartoon
  1586. TextLabel_26.FontSize = Enum.FontSize.Size24
  1587. TextLabel_26.Text = "Unjailbreak"
  1588. TextLabel_26.TextColor3 = Color3.new(1, 1, 1)
  1589. TextLabel_26.TextSize = 20
  1590.  
  1591. TextLabel_27.Parent = CreditsGUI
  1592. TextLabel_27.BackgroundColor3 = Color3.new(1, 1, 1)
  1593. TextLabel_27.BackgroundTransparency = 1
  1594. TextLabel_27.Position = UDim2.new(0, 189, 0, 333)
  1595. TextLabel_27.Size = UDim2.new(0, 127, 0, 28)
  1596. TextLabel_27.Font = Enum.Font.Cartoon
  1597. TextLabel_27.FontSize = Enum.FontSize.Size24
  1598. TextLabel_27.Text = "Created By Unlisting"
  1599. TextLabel_27.TextColor3 = Color3.new(1, 1, 1)
  1600. TextLabel_27.TextSize = 20
  1601.  
  1602. TextLabel_28.Parent = CreditsGUI
  1603. TextLabel_28.BackgroundColor3 = Color3.new(1, 1, 1)
  1604. TextLabel_28.BackgroundTransparency = 1
  1605. TextLabel_28.Position = UDim2.new(0, 465, 0, 0)
  1606. TextLabel_28.Size = UDim2.new(0, 40, 0, 29)
  1607. TextLabel_28.Font = Enum.Font.Cartoon
  1608. TextLabel_28.FontSize = Enum.FontSize.Size24
  1609. TextLabel_28.Text = "v0.6"
  1610. TextLabel_28.TextColor3 = Color3.new(1, 1, 1)
  1611. TextLabel_28.TextSize = 20
  1612.  
  1613. Back4.Name = "Back4"
  1614. Back4.Parent = CreditsGUI
  1615. Back4.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1616. Back4.BackgroundTransparency = 1
  1617. Back4.BorderSizePixel = 0
  1618. Back4.Position = UDim2.new(0, 208, 0, 308)
  1619. Back4.Size = UDim2.new(0, 90, 0, 25)
  1620. Back4.Font = Enum.Font.Cartoon
  1621. Back4.FontSize = Enum.FontSize.Size18
  1622. Back4.Text = "Back"
  1623. Back4.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1624. Back4.TextSize = 17
  1625. Back4.TextStrokeColor3 = Color3.new(1, 1, 0)
  1626.  
  1627. TextLabel_29.Parent = CreditsGUI
  1628. TextLabel_29.BackgroundColor3 = Color3.new(1, 1, 1)
  1629. TextLabel_29.BackgroundTransparency = 1
  1630. TextLabel_29.Position = UDim2.new(0, 189, 0, 142)
  1631. TextLabel_29.Size = UDim2.new(0, 127, 0, 13)
  1632. TextLabel_29.Font = Enum.Font.Cartoon
  1633. TextLabel_29.FontSize = Enum.FontSize.Size24
  1634. TextLabel_29.Text = "Credits To BabyHamsta For Helping With The Bypasser"
  1635. TextLabel_29.TextColor3 = Color3.new(1, 1, 1)
  1636. TextLabel_29.TextSize = 20
  1637.  
  1638. TextLabel_30.Parent = CreditsGUI
  1639. TextLabel_30.BackgroundColor3 = Color3.new(1, 1, 1)
  1640. TextLabel_30.BackgroundTransparency = 1
  1641. TextLabel_30.Position = UDim2.new(0, 189, 0, 87)
  1642. TextLabel_30.Size = UDim2.new(0, 127, 0, 13)
  1643. TextLabel_30.Font = Enum.Font.Cartoon
  1644. TextLabel_30.FontSize = Enum.FontSize.Size24
  1645. TextLabel_30.Text = "Credits To Victini For Helping So Much With Learning Lua!"
  1646. TextLabel_30.TextColor3 = Color3.new(1, 1, 1)
  1647. TextLabel_30.TextSize = 20
  1648.  
  1649. TextLabel_31.Parent = CreditsGUI
  1650. TextLabel_31.BackgroundColor3 = Color3.new(1, 1, 1)
  1651. TextLabel_31.BackgroundTransparency = 1
  1652. TextLabel_31.Position = UDim2.new(0, 189, 0, 231)
  1653. TextLabel_31.Size = UDim2.new(0, 127, 0, 13)
  1654. TextLabel_31.Font = Enum.Font.Cartoon
  1655. TextLabel_31.FontSize = Enum.FontSize.Size24
  1656. TextLabel_31.Text = "NOTE: IF YOU DONT LIKE THE UI OR WANT SOMETHING"
  1657. TextLabel_31.TextColor3 = Color3.new(1, 1, 1)
  1658. TextLabel_31.TextSize = 20
  1659.  
  1660. TextLabel_32.Parent = CreditsGUI
  1661. TextLabel_32.BackgroundColor3 = Color3.new(1, 1, 1)
  1662. TextLabel_32.BackgroundTransparency = 1
  1663. TextLabel_32.Position = UDim2.new(0, 189, 0, 250)
  1664. TextLabel_32.Size = UDim2.new(0, 127, 0, 13)
  1665. TextLabel_32.Font = Enum.Font.Cartoon
  1666. TextLabel_32.FontSize = Enum.FontSize.Size24
  1667. TextLabel_32.Text = "CHANGED PM ME ON V3RM WITH SUGGESTIONS"
  1668. TextLabel_32.TextColor3 = Color3.new(1, 1, 1)
  1669. TextLabel_32.TextSize = 20
  1670.  
  1671. CloseButton4.Name = "CloseButton4"
  1672. CloseButton4.Parent = CreditsGUI
  1673. CloseButton4.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1674. CloseButton4.BackgroundTransparency = 1
  1675. CloseButton4.BorderSizePixel = 0
  1676. CloseButton4.Position = UDim2.new(0, 322, 0, 0)
  1677. CloseButton4.Size = UDim2.new(0, 127, 0, 31)
  1678. CloseButton4.Font = Enum.Font.Cartoon
  1679. CloseButton4.FontSize = Enum.FontSize.Size24
  1680. CloseButton4.Text = "Close"
  1681. CloseButton4.TextColor3 = Color3.new(0, 0.666667, 1)
  1682. CloseButton4.TextSize = 20
  1683.  
  1684. TextLabel_33.Parent = CreditsGUI
  1685. TextLabel_33.BackgroundColor3 = Color3.new(1, 1, 1)
  1686. TextLabel_33.BackgroundTransparency = 1
  1687. TextLabel_33.Position = UDim2.new(0, 189, 0, 168)
  1688. TextLabel_33.Size = UDim2.new(0, 127, 0, 13)
  1689. TextLabel_33.Font = Enum.Font.Cartoon
  1690. TextLabel_33.FontSize = Enum.FontSize.Size24
  1691. TextLabel_33.Text = "Credits To Josh#9877 For Helping Me Fix Button Functions"
  1692. TextLabel_33.TextColor3 = Color3.new(1, 1, 1)
  1693. TextLabel_33.TextSize = 20
  1694.  
  1695. TextLabel_34.Parent = CreditsGUI
  1696. TextLabel_34.BackgroundColor3 = Color3.new(1, 1, 1)
  1697. TextLabel_34.BackgroundTransparency = 1
  1698. TextLabel_34.Position = UDim2.new(0, 189, 0, 196)
  1699. TextLabel_34.Size = UDim2.new(0, 127, 0, 13)
  1700. TextLabel_34.Font = Enum.Font.Cartoon
  1701. TextLabel_34.FontSize = Enum.FontSize.Size24
  1702. TextLabel_34.Text = "Credits To Jeffery For Helping With Notifiers"
  1703. TextLabel_34.TextColor3 = Color3.new(1, 1, 1)
  1704. TextLabel_34.TextSize = 20
  1705.  
  1706. TextLabel_35.Parent = CreditsGUI
  1707. TextLabel_35.BackgroundColor3 = Color3.new(1, 1, 1)
  1708. TextLabel_35.BackgroundTransparency = 1
  1709. TextLabel_35.Position = UDim2.new(0, 189, 0, 105)
  1710. TextLabel_35.Size = UDim2.new(0, 127, 0, 13)
  1711. TextLabel_35.Font = Enum.Font.Cartoon
  1712. TextLabel_35.FontSize = Enum.FontSize.Size24
  1713. TextLabel_35.Text = "Helping With Spawning Guns"
  1714. TextLabel_35.TextColor3 = Color3.new(1, 1, 1)
  1715. TextLabel_35.TextSize = 20
  1716.  
  1717. GameFunctions.Name = "GameFunctions"
  1718. GameFunctions.Parent = MainGUI
  1719. GameFunctions.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1720. GameFunctions.BorderSizePixel = 0
  1721. GameFunctions.Position = UDim2.new(0, 167, 0, 185)
  1722. GameFunctions.Size = UDim2.new(0, 170, 0, 37)
  1723. GameFunctions.Font = Enum.Font.Cartoon
  1724. GameFunctions.FontSize = Enum.FontSize.Size24
  1725. GameFunctions.Text = "Game"
  1726. GameFunctions.TextSize = 20
  1727.  
  1728. CarTeleportingGUI.Name = "CarTeleportingGUI"
  1729. CarTeleportingGUI.Parent = MainGUI
  1730. CarTeleportingGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  1731. CarTeleportingGUI.BorderSizePixel = 0
  1732. CarTeleportingGUI.Size = UDim2.new(0, 505, 0, 361)
  1733. CarTeleportingGUI.Visible = false
  1734.  
  1735. TextLabel_36.Parent = CarTeleportingGUI
  1736. TextLabel_36.BackgroundColor3 = Color3.new(1, 1, 1)
  1737. TextLabel_36.BackgroundTransparency = 1
  1738. TextLabel_36.Position = UDim2.new(0, 189, 0, 0)
  1739. TextLabel_36.Size = UDim2.new(0, 127, 0, 31)
  1740. TextLabel_36.Font = Enum.Font.Cartoon
  1741. TextLabel_36.FontSize = Enum.FontSize.Size24
  1742. TextLabel_36.Text = "Unjailbreak"
  1743. TextLabel_36.TextColor3 = Color3.new(1, 1, 1)
  1744. TextLabel_36.TextSize = 20
  1745.  
  1746. TextLabel_37.Parent = CarTeleportingGUI
  1747. TextLabel_37.BackgroundColor3 = Color3.new(1, 1, 1)
  1748. TextLabel_37.BackgroundTransparency = 1
  1749. TextLabel_37.Position = UDim2.new(0, 189, 0, 333)
  1750. TextLabel_37.Size = UDim2.new(0, 127, 0, 28)
  1751. TextLabel_37.Font = Enum.Font.Cartoon
  1752. TextLabel_37.FontSize = Enum.FontSize.Size24
  1753. TextLabel_37.Text = "Created By Unlisting"
  1754. TextLabel_37.TextColor3 = Color3.new(1, 1, 1)
  1755. TextLabel_37.TextSize = 20
  1756.  
  1757. TextLabel_38.Parent = CarTeleportingGUI
  1758. TextLabel_38.BackgroundColor3 = Color3.new(1, 1, 1)
  1759. TextLabel_38.BackgroundTransparency = 1
  1760. TextLabel_38.Position = UDim2.new(0, 465, 0, 0)
  1761. TextLabel_38.Size = UDim2.new(0, 40, 0, 29)
  1762. TextLabel_38.Font = Enum.Font.Cartoon
  1763. TextLabel_38.FontSize = Enum.FontSize.Size24
  1764. TextLabel_38.Text = "v0.6"
  1765. TextLabel_38.TextColor3 = Color3.new(1, 1, 1)
  1766. TextLabel_38.TextSize = 20
  1767.  
  1768. Bugatti.Name = "Bugatti"
  1769. Bugatti.Parent = CarTeleportingGUI
  1770. Bugatti.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1771. Bugatti.BorderSizePixel = 0
  1772. Bugatti.Position = UDim2.new(0, 198, 0, 75)
  1773. Bugatti.Size = UDim2.new(0, 109, 0, 28)
  1774. Bugatti.Font = Enum.Font.Cartoon
  1775. Bugatti.FontSize = Enum.FontSize.Size18
  1776. Bugatti.Text = "Bugatti"
  1777. Bugatti.TextColor3 = Color3.new(1, 1, 0)
  1778. Bugatti.TextSize = 17
  1779.  
  1780. Lambo.Name = "Lambo"
  1781. Lambo.Parent = CarTeleportingGUI
  1782. Lambo.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1783. Lambo.BorderSizePixel = 0
  1784. Lambo.Position = UDim2.new(0, 198, 0, 40)
  1785. Lambo.Size = UDim2.new(0, 109, 0, 28)
  1786. Lambo.Font = Enum.Font.Cartoon
  1787. Lambo.FontSize = Enum.FontSize.Size18
  1788. Lambo.Text = "Lamborghini"
  1789. Lambo.TextColor3 = Color3.new(1, 1, 0)
  1790. Lambo.TextSize = 17
  1791.  
  1792. CloseButton5.Name = "CloseButton5"
  1793. CloseButton5.Parent = CarTeleportingGUI
  1794. CloseButton5.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1795. CloseButton5.BackgroundTransparency = 1
  1796. CloseButton5.BorderSizePixel = 0
  1797. CloseButton5.Position = UDim2.new(0, 322, 0, 0)
  1798. CloseButton5.Size = UDim2.new(0, 127, 0, 31)
  1799. CloseButton5.Font = Enum.Font.Cartoon
  1800. CloseButton5.FontSize = Enum.FontSize.Size24
  1801. CloseButton5.Text = "Close"
  1802. CloseButton5.TextColor3 = Color3.new(0, 0.666667, 1)
  1803. CloseButton5.TextSize = 20
  1804.  
  1805. Back5.Name = "Back5"
  1806. Back5.Parent = CarTeleportingGUI
  1807. Back5.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1808. Back5.BackgroundTransparency = 1
  1809. Back5.BorderSizePixel = 0
  1810. Back5.Position = UDim2.new(0, 208, 0, 308)
  1811. Back5.Size = UDim2.new(0, 90, 0, 25)
  1812. Back5.Font = Enum.Font.Cartoon
  1813. Back5.FontSize = Enum.FontSize.Size18
  1814. Back5.Text = "Back"
  1815. Back5.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1816. Back5.TextSize = 17
  1817. Back5.TextStrokeColor3 = Color3.new(1, 1, 0)
  1818.  
  1819. SWATVan.Name = "SWATVan"
  1820. SWATVan.Parent = CarTeleportingGUI
  1821. SWATVan.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1822. SWATVan.BorderSizePixel = 0
  1823. SWATVan.Position = UDim2.new(0, 198, 0, 110)
  1824. SWATVan.Size = UDim2.new(0, 109, 0, 28)
  1825. SWATVan.Font = Enum.Font.Cartoon
  1826. SWATVan.FontSize = Enum.FontSize.Size18
  1827. SWATVan.Text = "SWAT Van"
  1828. SWATVan.TextColor3 = Color3.new(1, 1, 0)
  1829. SWATVan.TextSize = 17
  1830.  
  1831. DuneBuggy.Name = "DuneBuggy"
  1832. DuneBuggy.Parent = CarTeleportingGUI
  1833. DuneBuggy.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1834. DuneBuggy.BorderSizePixel = 0
  1835. DuneBuggy.Position = UDim2.new(0, 198, 0, 145)
  1836. DuneBuggy.Size = UDim2.new(0, 109, 0, 28)
  1837. DuneBuggy.Font = Enum.Font.Cartoon
  1838. DuneBuggy.FontSize = Enum.FontSize.Size18
  1839. DuneBuggy.Text = "Dune Buggy"
  1840. DuneBuggy.TextColor3 = Color3.new(1, 1, 0)
  1841. DuneBuggy.TextSize = 17
  1842.  
  1843. Porsche.Name = "Porsche"
  1844. Porsche.Parent = CarTeleportingGUI
  1845. Porsche.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1846. Porsche.BorderSizePixel = 0
  1847. Porsche.Position = UDim2.new(0, 198, 0, 180)
  1848. Porsche.Size = UDim2.new(0, 109, 0, 28)
  1849. Porsche.Font = Enum.Font.Cartoon
  1850. Porsche.FontSize = Enum.FontSize.Size18
  1851. Porsche.Text = "Porsche"
  1852. Porsche.TextColor3 = Color3.new(1, 1, 0)
  1853. Porsche.TextSize = 17
  1854.  
  1855. DirtBike.Name = "DirtBike"
  1856. DirtBike.Parent = CarTeleportingGUI
  1857. DirtBike.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1858. DirtBike.BorderSizePixel = 0
  1859. DirtBike.Position = UDim2.new(0, 198, 0, 215)
  1860. DirtBike.Size = UDim2.new(0, 109, 0, 28)
  1861. DirtBike.Font = Enum.Font.Cartoon
  1862. DirtBike.FontSize = Enum.FontSize.Size18
  1863. DirtBike.Text = "Dirt Bike"
  1864. DirtBike.TextColor3 = Color3.new(1, 1, 0)
  1865. DirtBike.TextSize = 17
  1866.  
  1867. Tesla3.Name = "Tesla3"
  1868. Tesla3.Parent = CarTeleportingGUI
  1869. Tesla3.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1870. Tesla3.BorderSizePixel = 0
  1871. Tesla3.Position = UDim2.new(0, 198, 0, 250)
  1872. Tesla3.Size = UDim2.new(0, 109, 0, 28)
  1873. Tesla3.Font = Enum.Font.Cartoon
  1874. Tesla3.FontSize = Enum.FontSize.Size18
  1875. Tesla3.Text = "Tesla"
  1876. Tesla3.TextColor3 = Color3.new(1, 1, 0)
  1877. Tesla3.TextSize = 17
  1878.  
  1879. PickUpTruck.Name = "PickUpTruck"
  1880. PickUpTruck.Parent = CarTeleportingGUI
  1881. PickUpTruck.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1882. PickUpTruck.BorderSizePixel = 0
  1883. PickUpTruck.Position = UDim2.new(0, 48, 0, 40)
  1884. PickUpTruck.Size = UDim2.new(0, 109, 0, 28)
  1885. PickUpTruck.Font = Enum.Font.Cartoon
  1886. PickUpTruck.FontSize = Enum.FontSize.Size18
  1887. PickUpTruck.Text = "Pick Up Truck"
  1888. PickUpTruck.TextColor3 = Color3.new(1, 1, 0)
  1889. PickUpTruck.TextSize = 17
  1890.  
  1891. MiniCooper.Name = "MiniCooper"
  1892. MiniCooper.Parent = CarTeleportingGUI
  1893. MiniCooper.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1894. MiniCooper.BorderSizePixel = 0
  1895. MiniCooper.Position = UDim2.new(0, 348, 0, 40)
  1896. MiniCooper.Size = UDim2.new(0, 109, 0, 28)
  1897. MiniCooper.Font = Enum.Font.Cartoon
  1898. MiniCooper.FontSize = Enum.FontSize.Size18
  1899. MiniCooper.Text = "Mini Cooper"
  1900. MiniCooper.TextColor3 = Color3.new(1, 1, 0)
  1901. MiniCooper.TextSize = 17
  1902.  
  1903. Camaro.Name = "Camaro"
  1904. Camaro.Parent = CarTeleportingGUI
  1905. Camaro.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1906. Camaro.BorderSizePixel = 0
  1907. Camaro.Position = UDim2.new(0, 48, 0, 250)
  1908. Camaro.Size = UDim2.new(0, 109, 0, 28)
  1909. Camaro.Font = Enum.Font.Cartoon
  1910. Camaro.FontSize = Enum.FontSize.Size18
  1911. Camaro.Text = "Camaro"
  1912. Camaro.TextColor3 = Color3.new(1, 1, 0)
  1913. Camaro.TextSize = 17
  1914.  
  1915. PoliceCar.Name = "PoliceCar"
  1916. PoliceCar.Parent = CarTeleportingGUI
  1917. PoliceCar.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1918. PoliceCar.BorderSizePixel = 0
  1919. PoliceCar.Position = UDim2.new(0, 348, 0, 250)
  1920. PoliceCar.Size = UDim2.new(0, 109, 0, 28)
  1921. PoliceCar.Font = Enum.Font.Cartoon
  1922. PoliceCar.FontSize = Enum.FontSize.Size18
  1923. PoliceCar.Text = "Police Car"
  1924. PoliceCar.TextColor3 = Color3.new(1, 1, 0)
  1925. PoliceCar.TextSize = 17
  1926.  
  1927. Settings.Name = "Settings"
  1928. Settings.Parent = MainGUI
  1929. Settings.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1930. Settings.BorderSizePixel = 0
  1931. Settings.Position = UDim2.new(0, 26, 0, 315)
  1932. Settings.Size = UDim2.new(0, 105, 0, 28)
  1933. Settings.Font = Enum.Font.Cartoon
  1934. Settings.FontSize = Enum.FontSize.Size24
  1935. Settings.Text = "Settings"
  1936. Settings.TextSize = 20
  1937.  
  1938. GameGUI.Name = "GameGUI"
  1939. GameGUI.Parent = MainGUI
  1940. GameGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  1941. GameGUI.BorderSizePixel = 0
  1942. GameGUI.Size = UDim2.new(0, 505, 0, 361)
  1943. GameGUI.Visible = false
  1944.  
  1945. TextLabel_39.Parent = GameGUI
  1946. TextLabel_39.BackgroundColor3 = Color3.new(1, 1, 1)
  1947. TextLabel_39.BackgroundTransparency = 1
  1948. TextLabel_39.Position = UDim2.new(0, 189, 0, 0)
  1949. TextLabel_39.Size = UDim2.new(0, 127, 0, 31)
  1950. TextLabel_39.Font = Enum.Font.Cartoon
  1951. TextLabel_39.FontSize = Enum.FontSize.Size24
  1952. TextLabel_39.Text = "Unjailbreak"
  1953. TextLabel_39.TextColor3 = Color3.new(1, 1, 1)
  1954. TextLabel_39.TextSize = 20
  1955.  
  1956. TextLabel_40.Parent = GameGUI
  1957. TextLabel_40.BackgroundColor3 = Color3.new(1, 1, 1)
  1958. TextLabel_40.BackgroundTransparency = 1
  1959. TextLabel_40.Position = UDim2.new(0, 189, 0, 333)
  1960. TextLabel_40.Size = UDim2.new(0, 127, 0, 28)
  1961. TextLabel_40.Font = Enum.Font.Cartoon
  1962. TextLabel_40.FontSize = Enum.FontSize.Size24
  1963. TextLabel_40.Text = "Created By Unlisting"
  1964. TextLabel_40.TextColor3 = Color3.new(1, 1, 1)
  1965. TextLabel_40.TextSize = 20
  1966.  
  1967. TextLabel_41.Parent = GameGUI
  1968. TextLabel_41.BackgroundColor3 = Color3.new(1, 1, 1)
  1969. TextLabel_41.BackgroundTransparency = 1
  1970. TextLabel_41.Position = UDim2.new(0, 465, 0, 0)
  1971. TextLabel_41.Size = UDim2.new(0, 40, 0, 29)
  1972. TextLabel_41.Font = Enum.Font.Cartoon
  1973. TextLabel_41.FontSize = Enum.FontSize.Size24
  1974. TextLabel_41.Text = "v0.6"
  1975. TextLabel_41.TextColor3 = Color3.new(1, 1, 1)
  1976. TextLabel_41.TextSize = 20
  1977.  
  1978. TpToMoney.Name = "TpToMoney"
  1979. TpToMoney.Parent = GameGUI
  1980. TpToMoney.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1981. TpToMoney.BorderSizePixel = 0
  1982. TpToMoney.Position = UDim2.new(0, 192, 0, 120)
  1983. TpToMoney.Size = UDim2.new(0, 120, 0, 30)
  1984. TpToMoney.Font = Enum.Font.Cartoon
  1985. TpToMoney.FontSize = Enum.FontSize.Size24
  1986. TpToMoney.Text = "TP To Money"
  1987. TpToMoney.TextColor3 = Color3.new(1, 1, 0)
  1988. TpToMoney.TextSize = 20
  1989.  
  1990. SpamArrest.Name = "SpamArrest"
  1991. SpamArrest.Parent = GameGUI
  1992. SpamArrest.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  1993. SpamArrest.BorderSizePixel = 0
  1994. SpamArrest.Position = UDim2.new(0, 192, 0, 80)
  1995. SpamArrest.Size = UDim2.new(0, 120, 0, 30)
  1996. SpamArrest.Font = Enum.Font.Cartoon
  1997. SpamArrest.FontSize = Enum.FontSize.Size24
  1998. SpamArrest.Text = "Spam Arrest"
  1999. SpamArrest.TextColor3 = Color3.new(1, 1, 0)
  2000. SpamArrest.TextSize = 20
  2001.  
  2002. Back3.Name = "Back3"
  2003. Back3.Parent = GameGUI
  2004. Back3.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2005. Back3.BackgroundTransparency = 1
  2006. Back3.BorderSizePixel = 0
  2007. Back3.Position = UDim2.new(0, 208, 0, 308)
  2008. Back3.Size = UDim2.new(0, 90, 0, 25)
  2009. Back3.Font = Enum.Font.Cartoon
  2010. Back3.FontSize = Enum.FontSize.Size18
  2011. Back3.Text = "Back"
  2012. Back3.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2013. Back3.TextSize = 17
  2014. Back3.TextStrokeColor3 = Color3.new(1, 1, 0)
  2015.  
  2016. CloseButton3.Name = "CloseButton3"
  2017. CloseButton3.Parent = GameGUI
  2018. CloseButton3.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2019. CloseButton3.BackgroundTransparency = 1
  2020. CloseButton3.BorderSizePixel = 0
  2021. CloseButton3.Position = UDim2.new(0, 322, 0, 0)
  2022. CloseButton3.Size = UDim2.new(0, 127, 0, 31)
  2023. CloseButton3.Font = Enum.Font.Cartoon
  2024. CloseButton3.FontSize = Enum.FontSize.Size24
  2025. CloseButton3.Text = "Close"
  2026. CloseButton3.TextColor3 = Color3.new(0, 0.666667, 1)
  2027. CloseButton3.TextSize = 20
  2028.  
  2029. Keycard.Name = "Keycard"
  2030. Keycard.Parent = GameGUI
  2031. Keycard.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2032. Keycard.BorderSizePixel = 0
  2033. Keycard.Position = UDim2.new(0, 192, 0, 160)
  2034. Keycard.Size = UDim2.new(0, 120, 0, 30)
  2035. Keycard.Font = Enum.Font.Cartoon
  2036. Keycard.FontSize = Enum.FontSize.Size24
  2037. Keycard.Text = "KeyCard"
  2038. Keycard.TextColor3 = Color3.new(1, 1, 0)
  2039. Keycard.TextSize = 20
  2040.  
  2041. AnnoyServer.Name = "AnnoyServer"
  2042. AnnoyServer.Parent = GameGUI
  2043. AnnoyServer.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2044. AnnoyServer.BorderSizePixel = 0
  2045. AnnoyServer.Position = UDim2.new(0, 192, 0, 200)
  2046. AnnoyServer.Size = UDim2.new(0, 120, 0, 30)
  2047. AnnoyServer.Font = Enum.Font.Cartoon
  2048. AnnoyServer.FontSize = Enum.FontSize.Size24
  2049. AnnoyServer.Text = "Annoy Server"
  2050. AnnoyServer.TextColor3 = Color3.new(1, 1, 0)
  2051. AnnoyServer.TextSize = 20
  2052.  
  2053. StopAnnoy.Name = "StopAnnoy"
  2054. StopAnnoy.Parent = GameGUI
  2055. StopAnnoy.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2056. StopAnnoy.BorderSizePixel = 0
  2057. StopAnnoy.Position = UDim2.new(0, 205, 0, 240)
  2058. StopAnnoy.Size = UDim2.new(0, 95, 0, 21)
  2059. StopAnnoy.Font = Enum.Font.Cartoon
  2060. StopAnnoy.FontSize = Enum.FontSize.Size24
  2061. StopAnnoy.Text = "Stop Annoy"
  2062. StopAnnoy.TextColor3 = Color3.new(1, 1, 0)
  2063. StopAnnoy.TextSize = 20
  2064.  
  2065. Giveaways.Name = "Giveaways"
  2066. Giveaways.Parent = MainGUI
  2067. Giveaways.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2068. Giveaways.BorderSizePixel = 0
  2069. Giveaways.Position = UDim2.new(0, 373, 0, 315)
  2070. Giveaways.Size = UDim2.new(0, 105, 0, 28)
  2071. Giveaways.Font = Enum.Font.Cartoon
  2072. Giveaways.FontSize = Enum.FontSize.Size24
  2073. Giveaways.Text = "Giveaways"
  2074. Giveaways.TextSize = 20
  2075.  
  2076. GiveawayGUI.Name = "GiveawayGUI"
  2077. GiveawayGUI.Parent = MainGUI
  2078. GiveawayGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  2079. GiveawayGUI.BorderSizePixel = 0
  2080. GiveawayGUI.Size = UDim2.new(0, 505, 0, 361)
  2081. GiveawayGUI.Visible = false
  2082.  
  2083. TextLabel_42.Parent = GiveawayGUI
  2084. TextLabel_42.BackgroundColor3 = Color3.new(1, 1, 1)
  2085. TextLabel_42.BackgroundTransparency = 1
  2086. TextLabel_42.Position = UDim2.new(0, 189, 0, 0)
  2087. TextLabel_42.Size = UDim2.new(0, 127, 0, 31)
  2088. TextLabel_42.Font = Enum.Font.Cartoon
  2089. TextLabel_42.FontSize = Enum.FontSize.Size24
  2090. TextLabel_42.Text = "Unjailbreak"
  2091. TextLabel_42.TextColor3 = Color3.new(1, 1, 1)
  2092. TextLabel_42.TextSize = 20
  2093.  
  2094. TextLabel_43.Parent = GiveawayGUI
  2095. TextLabel_43.BackgroundColor3 = Color3.new(1, 1, 1)
  2096. TextLabel_43.BackgroundTransparency = 1
  2097. TextLabel_43.Position = UDim2.new(0, 189, 0, 333)
  2098. TextLabel_43.Size = UDim2.new(0, 127, 0, 28)
  2099. TextLabel_43.Font = Enum.Font.Cartoon
  2100. TextLabel_43.FontSize = Enum.FontSize.Size24
  2101. TextLabel_43.Text = "Created By Unlisting"
  2102. TextLabel_43.TextColor3 = Color3.new(1, 1, 1)
  2103. TextLabel_43.TextSize = 20
  2104.  
  2105. TextLabel_44.Parent = GiveawayGUI
  2106. TextLabel_44.BackgroundColor3 = Color3.new(1, 1, 1)
  2107. TextLabel_44.BackgroundTransparency = 1
  2108. TextLabel_44.Position = UDim2.new(0, 465, 0, 0)
  2109. TextLabel_44.Size = UDim2.new(0, 40, 0, 29)
  2110. TextLabel_44.Font = Enum.Font.Cartoon
  2111. TextLabel_44.FontSize = Enum.FontSize.Size24
  2112. TextLabel_44.Text = "v0.6"
  2113. TextLabel_44.TextColor3 = Color3.new(1, 1, 1)
  2114. TextLabel_44.TextSize = 20
  2115.  
  2116. Back7.Name = "Back7"
  2117. Back7.Parent = GiveawayGUI
  2118. Back7.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2119. Back7.BackgroundTransparency = 1
  2120. Back7.BorderSizePixel = 0
  2121. Back7.Position = UDim2.new(0, 208, 0, 308)
  2122. Back7.Size = UDim2.new(0, 90, 0, 25)
  2123. Back7.Font = Enum.Font.Cartoon
  2124. Back7.FontSize = Enum.FontSize.Size18
  2125. Back7.Text = "Back"
  2126. Back7.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2127. Back7.TextSize = 17
  2128. Back7.TextStrokeColor3 = Color3.new(1, 1, 0)
  2129.  
  2130. CloseButton7.Name = "CloseButton7"
  2131. CloseButton7.Parent = GiveawayGUI
  2132. CloseButton7.BackgroundColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2133. CloseButton7.BackgroundTransparency = 1
  2134. CloseButton7.BorderSizePixel = 0
  2135. CloseButton7.Position = UDim2.new(0, 322, 0, 0)
  2136. CloseButton7.Size = UDim2.new(0, 127, 0, 31)
  2137. CloseButton7.Font = Enum.Font.Cartoon
  2138. CloseButton7.FontSize = Enum.FontSize.Size24
  2139. CloseButton7.Text = "Close"
  2140. CloseButton7.TextColor3 = Color3.new(0, 0.666667, 1)
  2141. CloseButton7.TextSize = 20
  2142.  
  2143. TextLabel_45.Parent = GiveawayGUI
  2144. TextLabel_45.BackgroundColor3 = Color3.new(1, 1, 1)
  2145. TextLabel_45.BackgroundTransparency = 1
  2146. TextLabel_45.Position = UDim2.new(0, 189, 0, 82)
  2147. TextLabel_45.Size = UDim2.new(0, 127, 0, 28)
  2148. TextLabel_45.Font = Enum.Font.Cartoon
  2149. TextLabel_45.FontSize = Enum.FontSize.Size24
  2150. TextLabel_45.Text = "Every New Update There Will Be Suprises From Now On!"
  2151. TextLabel_45.TextColor3 = Color3.new(1, 1, 1)
  2152. TextLabel_45.TextSize = 20
  2153.  
  2154. TextLabel_46.Parent = GiveawayGUI
  2155. TextLabel_46.BackgroundColor3 = Color3.new(1, 1, 1)
  2156. TextLabel_46.BackgroundTransparency = 1
  2157. TextLabel_46.Position = UDim2.new(0, 189, 0, 109)
  2158. TextLabel_46.Size = UDim2.new(0, 127, 0, 28)
  2159. TextLabel_46.Font = Enum.Font.Cartoon
  2160. TextLabel_46.FontSize = Enum.FontSize.Size24
  2161. TextLabel_46.Text = "Check Back Here Every Update For Giveaways!"
  2162. TextLabel_46.TextColor3 = Color3.new(1, 1, 1)
  2163. TextLabel_46.TextSize = 20
  2164.  
  2165. TextLabel_47.Parent = GiveawayGUI
  2166. TextLabel_47.BackgroundColor3 = Color3.new(1, 1, 1)
  2167. TextLabel_47.BackgroundTransparency = 1
  2168. TextLabel_47.Position = UDim2.new(0, 189, 0, 153)
  2169. TextLabel_47.Size = UDim2.new(0, 127, 0, 28)
  2170. TextLabel_47.Font = Enum.Font.Cartoon
  2171. TextLabel_47.FontSize = Enum.FontSize.Size24
  2172. TextLabel_47.Text = "Unjailbreak v0.6 Giveaways:"
  2173. TextLabel_47.TextColor3 = Color3.new(1, 1, 1)
  2174. TextLabel_47.TextSize = 20
  2175.  
  2176. TextLabel_48.Parent = GiveawayGUI
  2177. TextLabel_48.BackgroundColor3 = Color3.new(1, 1, 1)
  2178. TextLabel_48.BackgroundTransparency = 1
  2179. TextLabel_48.Position = UDim2.new(0, 189, 0, 181)
  2180. TextLabel_48.Size = UDim2.new(0, 127, 0, 28)
  2181. TextLabel_48.Font = Enum.Font.Cartoon
  2182. TextLabel_48.FontSize = Enum.FontSize.Size24
  2183. TextLabel_48.Text = "Jailbreak 50k Cash For 3 Users On Website Below!"
  2184. TextLabel_48.TextColor3 = Color3.new(1, 1, 1)
  2185. TextLabel_48.TextSize = 20
  2186.  
  2187. TextLabel_49.Parent = GiveawayGUI
  2188. TextLabel_49.BackgroundColor3 = Color3.new(1, 1, 1)
  2189. TextLabel_49.BackgroundTransparency = 1
  2190. TextLabel_49.Position = UDim2.new(0, 189, 0, 202)
  2191. TextLabel_49.Size = UDim2.new(0, 127, 0, 28)
  2192. TextLabel_49.Font = Enum.Font.Cartoon
  2193. TextLabel_49.FontSize = Enum.FontSize.Size24
  2194. TextLabel_49.Text = "gleam.io/SId7c/jailbreak-50k-cash-giveaway-for-3-users"
  2195. TextLabel_49.TextColor3 = Color3.new(1, 1, 1)
  2196. TextLabel_49.TextSize = 20
  2197.  
  2198. OpenGUI.Name = "OpenGUI"
  2199. OpenGUI.Parent = Motherboard
  2200. OpenGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  2201. OpenGUI.BorderSizePixel = 0
  2202. OpenGUI.Position = UDim2.new(0, -120, 0, 671)
  2203. OpenGUI.Size = UDim2.new(0, 104, 0, 38)
  2204.  
  2205. OpenButton.Name = "OpenButton"
  2206. OpenButton.Parent = OpenGUI
  2207. OpenButton.BackgroundColor3 = Color3.new(1, 1, 1)
  2208. OpenButton.BackgroundTransparency = 1
  2209. OpenButton.Size = UDim2.new(0, 104, 0, 38)
  2210. OpenButton.Font = Enum.Font.Cartoon
  2211. OpenButton.FontSize = Enum.FontSize.Size24
  2212. OpenButton.Text = "Open"
  2213. OpenButton.TextColor3 = Color3.new(0, 0.666667, 1)
  2214. OpenButton.TextSize = 20
  2215.  
  2216. ChangeLogGUI.Name = "ChangeLogGUI"
  2217. ChangeLogGUI.Parent = Motherboard
  2218. ChangeLogGUI.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  2219. ChangeLogGUI.BorderSizePixel = 0
  2220. ChangeLogGUI.Position = UDim2.new(0, 1920, 0, 640)
  2221. ChangeLogGUI.Size = UDim2.new(0, 159, 0, 273)
  2222.  
  2223. TextLabel_50.Parent = ChangeLogGUI
  2224. TextLabel_50.BackgroundColor3 = Color3.new(1, 1, 1)
  2225. TextLabel_50.BackgroundTransparency = 1
  2226. TextLabel_50.Size = UDim2.new(0, 159, 0, 33)
  2227. TextLabel_50.Font = Enum.Font.Cartoon
  2228. TextLabel_50.FontSize = Enum.FontSize.Size24
  2229. TextLabel_50.Text = " ChangeLog:"
  2230. TextLabel_50.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2231. TextLabel_50.TextSize = 20
  2232. TextLabel_50.TextXAlignment = Enum.TextXAlignment.Left
  2233.  
  2234. TextLabel_51.Parent = ChangeLogGUI
  2235. TextLabel_51.BackgroundColor3 = Color3.new(1, 1, 1)
  2236. TextLabel_51.BackgroundTransparency = 1
  2237. TextLabel_51.Position = UDim2.new(0, 0, 0, 30)
  2238. TextLabel_51.Size = UDim2.new(0, 159, 0, 33)
  2239. TextLabel_51.Font = Enum.Font.Cartoon
  2240. TextLabel_51.FontSize = Enum.FontSize.Size24
  2241. TextLabel_51.Text = " - Added Giveaway"
  2242. TextLabel_51.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2243. TextLabel_51.TextSize = 20
  2244. TextLabel_51.TextXAlignment = Enum.TextXAlignment.Left
  2245.  
  2246. TextLabel_52.Parent = ChangeLogGUI
  2247. TextLabel_52.BackgroundColor3 = Color3.new(1, 1, 1)
  2248. TextLabel_52.BackgroundTransparency = 1
  2249. TextLabel_52.Position = UDim2.new(0, 0, 0, 50)
  2250. TextLabel_52.Size = UDim2.new(0, 159, 0, 33)
  2251. TextLabel_52.Font = Enum.Font.Cartoon
  2252. TextLabel_52.FontSize = Enum.FontSize.Size24
  2253. TextLabel_52.Text = " - Added Spawning"
  2254. TextLabel_52.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2255. TextLabel_52.TextSize = 20
  2256. TextLabel_52.TextXAlignment = Enum.TextXAlignment.Left
  2257.  
  2258. TextLabel_53.Parent = ChangeLogGUI
  2259. TextLabel_53.BackgroundColor3 = Color3.new(1, 1, 1)
  2260. TextLabel_53.BackgroundTransparency = 1
  2261. TextLabel_53.Position = UDim2.new(0, 0, 0, 85)
  2262. TextLabel_53.Size = UDim2.new(0, 159, 0, 33)
  2263. TextLabel_53.Font = Enum.Font.Cartoon
  2264. TextLabel_53.FontSize = Enum.FontSize.Size24
  2265. TextLabel_53.Text = " - Fixed Annoy"
  2266. TextLabel_53.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2267. TextLabel_53.TextSize = 20
  2268. TextLabel_53.TextXAlignment = Enum.TextXAlignment.Left
  2269.  
  2270. TextLabel_54.Parent = ChangeLogGUI
  2271. TextLabel_54.BackgroundColor3 = Color3.new(1, 1, 1)
  2272. TextLabel_54.BackgroundTransparency = 1
  2273. TextLabel_54.Position = UDim2.new(0, 0, 0, 136)
  2274. TextLabel_54.Size = UDim2.new(0, 159, 0, 40)
  2275. TextLabel_54.Font = Enum.Font.Cartoon
  2276. TextLabel_54.FontSize = Enum.FontSize.Size24
  2277. TextLabel_54.Text = " KeyBinds:"
  2278. TextLabel_54.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2279. TextLabel_54.TextSize = 20
  2280. TextLabel_54.TextXAlignment = Enum.TextXAlignment.Left
  2281.  
  2282. TextLabel_55.Parent = ChangeLogGUI
  2283. TextLabel_55.BackgroundColor3 = Color3.new(1, 1, 1)
  2284. TextLabel_55.BackgroundTransparency = 1
  2285. TextLabel_55.Position = UDim2.new(0, 0, 0, 167)
  2286. TextLabel_55.Size = UDim2.new(0, 159, 0, 16)
  2287. TextLabel_55.Font = Enum.Font.Cartoon
  2288. TextLabel_55.FontSize = Enum.FontSize.Size24
  2289. TextLabel_55.Text = "-Keybinds Moved To"
  2290. TextLabel_55.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2291. TextLabel_55.TextSize = 20
  2292. TextLabel_55.TextXAlignment = Enum.TextXAlignment.Left
  2293.  
  2294. TextLabel_56.Parent = ChangeLogGUI
  2295. TextLabel_56.BackgroundColor3 = Color3.new(1, 1, 1)
  2296. TextLabel_56.BackgroundTransparency = 1
  2297. TextLabel_56.Position = UDim2.new(0, 0, 0, 186)
  2298. TextLabel_56.Size = UDim2.new(0, 159, 0, 17)
  2299. TextLabel_56.Font = Enum.Font.Cartoon
  2300. TextLabel_56.FontSize = Enum.FontSize.Size24
  2301. TextLabel_56.Text = "Settings For"
  2302. TextLabel_56.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2303. TextLabel_56.TextSize = 20
  2304.  
  2305. TextLabel_57.Parent = ChangeLogGUI
  2306. TextLabel_57.BackgroundColor3 = Color3.new(1, 1, 1)
  2307. TextLabel_57.BackgroundTransparency = 1
  2308. TextLabel_57.Position = UDim2.new(0, 0, 0, 203)
  2309. TextLabel_57.Size = UDim2.new(0, 159, 0, 20)
  2310. TextLabel_57.Font = Enum.Font.Cartoon
  2311. TextLabel_57.FontSize = Enum.FontSize.Size24
  2312. TextLabel_57.Text = "Customization"
  2313. TextLabel_57.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2314. TextLabel_57.TextSize = 20
  2315.  
  2316. ChangeLogClose.Name = "ChangeLogClose"
  2317. ChangeLogClose.Parent = ChangeLogGUI
  2318. ChangeLogClose.BackgroundColor3 = Color3.new(0.160784, 0.160784, 0.160784)
  2319. ChangeLogClose.BorderSizePixel = 0
  2320. ChangeLogClose.Position = UDim2.new(0, 30, 0, 230)
  2321. ChangeLogClose.Size = UDim2.new(0, 100, 0, 28)
  2322. ChangeLogClose.Font = Enum.Font.Cartoon
  2323. ChangeLogClose.FontSize = Enum.FontSize.Size24
  2324. ChangeLogClose.Text = "Close"
  2325. ChangeLogClose.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2326. ChangeLogClose.TextSize = 20
  2327.  
  2328. TextLabel_58.Parent = ChangeLogGUI
  2329. TextLabel_58.BackgroundColor3 = Color3.new(1, 1, 1)
  2330. TextLabel_58.BackgroundTransparency = 1
  2331. TextLabel_58.Position = UDim2.new(0, 0, 0, 65)
  2332. TextLabel_58.Size = UDim2.new(0, 159, 0, 33)
  2333. TextLabel_58.Font = Enum.Font.Cartoon
  2334. TextLabel_58.FontSize = Enum.FontSize.Size24
  2335. TextLabel_58.Text = " Section+"
  2336. TextLabel_58.TextColor3 = Color3.new(0.176471, 0.623529, 0.784314)
  2337. TextLabel_58.TextSize = 20
  2338. TextLabel_58.TextXAlignment = Enum.TextXAlignment.Left
  2339.  
  2340. JNotifierOpen.Name = "JNotifierOpen"
  2341. JNotifierOpen.Parent = Motherboard
  2342. JNotifierOpen.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  2343. JNotifierOpen.BorderSizePixel = 0
  2344. JNotifierOpen.Position = UDim2.new(0, 1950, 0, 657)
  2345. JNotifierOpen.Size = UDim2.new(0, 202, 0, 73)
  2346.  
  2347. TextLabel_59.Parent = JNotifierOpen
  2348. TextLabel_59.BackgroundColor3 = Color3.new(1, 1, 1)
  2349. TextLabel_59.BackgroundTransparency = 1
  2350. TextLabel_59.Size = UDim2.new(0, 202, 0, 37)
  2351. TextLabel_59.Font = Enum.Font.Cartoon
  2352. TextLabel_59.FontSize = Enum.FontSize.Size24
  2353. TextLabel_59.Text = "Jewelry Store Is Open!"
  2354. TextLabel_59.TextColor3 = Color3.new(0, 0.666667, 1)
  2355. TextLabel_59.TextSize = 20
  2356.  
  2357. GotoJewelry.Name = "GotoJewelry"
  2358. GotoJewelry.Parent = JNotifierOpen
  2359. GotoJewelry.BackgroundColor3 = Color3.new(0.160784, 0.160784, 0.160784)
  2360. GotoJewelry.BorderSizePixel = 0
  2361. GotoJewelry.Position = UDim2.new(0, 51, 0, 37)
  2362. GotoJewelry.Size = UDim2.new(0, 99, 0, 36)
  2363. GotoJewelry.Font = Enum.Font.Cartoon
  2364. GotoJewelry.FontSize = Enum.FontSize.Size24
  2365. GotoJewelry.Text = "Goto"
  2366. GotoJewelry.TextColor3 = Color3.new(0, 0.666667, 1)
  2367. GotoJewelry.TextSize = 20
  2368.  
  2369. BNotifierOpen.Name = "BNotifierOpen"
  2370. BNotifierOpen.Parent = Motherboard
  2371. BNotifierOpen.BackgroundColor3 = Color3.new(0.239216, 0.239216, 0.239216)
  2372. BNotifierOpen.BorderSizePixel = 0
  2373. BNotifierOpen.Position = UDim2.new(0, 1950, 0, 578)
  2374. BNotifierOpen.Size = UDim2.new(0, 202, 0, 73)
  2375.  
  2376. TextLabel_60.Parent = BNotifierOpen
  2377. TextLabel_60.BackgroundColor3 = Color3.new(1, 1, 1)
  2378. TextLabel_60.BackgroundTransparency = 1
  2379. TextLabel_60.Size = UDim2.new(0, 202, 0, 45)
  2380. TextLabel_60.Font = Enum.Font.Cartoon
  2381. TextLabel_60.FontSize = Enum.FontSize.Size24
  2382. TextLabel_60.Text = "Bank Is Now Open!"
  2383. TextLabel_60.TextColor3 = Color3.new(0, 0.666667, 1)
  2384. TextLabel_60.TextSize = 20
  2385.  
  2386. GotoBank.Name = "GotoBank"
  2387. GotoBank.Parent = BNotifierOpen
  2388. GotoBank.BackgroundColor3 = Color3.new(0.160784, 0.160784, 0.160784)
  2389. GotoBank.BorderSizePixel = 0
  2390. GotoBank.Position = UDim2.new(0, 51, 0, 37)
  2391. GotoBank.Size = UDim2.new(0, 99, 0, 36)
  2392. GotoBank.Font = Enum.Font.Cartoon
  2393. GotoBank.FontSize = Enum.FontSize.Size24
  2394. GotoBank.Text = "Goto"
  2395. GotoBank.TextColor3 = Color3.new(0, 0.666667, 1)
  2396. GotoBank.TextSize = 20
  2397.  
  2398. wait(0.1)
  2399. game.CoreGui.Motherboard.BypassJailbreakGUI:TweenPosition(UDim2.new(0, 835, 0, 331), 'Out', 'Bounce', 2, true)
  2400.  
  2401. local number = 2
  2402. for i=1,number do
  2403. wait(0.5)
  2404. game.CoreGui.Motherboard.BypassJailbreakGUI.TryingToBypass.Text = "Trying To Bypass Jailbreak"
  2405. wait(0.5)
  2406. game.CoreGui.Motherboard.BypassJailbreakGUI.TryingToBypass.Text = "Trying To Bypass Jailbreak."
  2407. wait(0.5)
  2408. game.CoreGui.Motherboard.BypassJailbreakGUI.TryingToBypass.Text = "Trying To Bypass Jailbreak.."
  2409. wait(0.5)
  2410. game.CoreGui.Motherboard.BypassJailbreakGUI.TryingToBypass.Text = "Trying To Bypass Jailbreak..."
  2411. end
  2412.  
  2413. wait(0.5)
  2414. game.CoreGui.Motherboard.BypassJailbreakGUI.TryingToBypass.Text = "Jailbreak Has Been Bypassed"
  2415. game.CoreGui.Motherboard.BypassJailbreakGUI.TryingToBypass.TextColor = BrickColor.new(85, 255, 0)
  2416.  
  2417. wait(3)
  2418. game.CoreGui.Motherboard.BypassJailbreakGUI:TweenPosition(UDim2.new(0, 835, 0, -331), 'Out', 'Quart', 1, true)
  2419.  
  2420. wait(1)
  2421. game.CoreGui.Motherboard.MainGUI:TweenPosition(UDim2.new(0, 708, 0, 307), 'Out', 'Bounce', 1, true)
  2422. game.CoreGui.Motherboard.ChangeLogGUI:TweenPosition(UDim2.new(0, 1761, 0, 640), 'Out', 'Quint', 1, true)
  2423.  
  2424. ChangeLogClose.MouseButton1Down:connect(function()
  2425. warn'test'
  2426. game.CoreGui.Motherboard.ChangeLogGUI:TweenPosition(UDim2.new(0, 1917, 0, 640), 'Out', 'Quint', 1, true)
  2427.  
  2428. wait(0.5)
  2429. game.CoreGui.Motherboard.ChangeLogGUI:Remove()
  2430. end)
  2431.  
  2432. CloseButton.MouseButton1Down:connect(function()
  2433. wait(0.01)
  2434. game.CoreGui.Motherboard.MainGUI:TweenPosition(UDim2.new(0, 702, 0, 1200),"Out","Quart",2,true)
  2435. game.CoreGui.Motherboard.OpenGUI:TweenPosition(UDim2.new(0, 0, 0, 639),"Out","Quart",2,true)
  2436. end)
  2437.  
  2438. CloseButton1.MouseButton1Down:connect(function()
  2439. wait(0.01)
  2440. game.CoreGui.Motherboard.MainGUI:TweenPosition(UDim2.new(0, 702, 0, 1200),"Out","Quart",2,true)
  2441. game.CoreGui.Motherboard.OpenGUI:TweenPosition(UDim2.new(0, 0, 0, 639),"Out","Quart",2,true)
  2442. end)
  2443.  
  2444. CloseButton2.MouseButton1Down:connect(function()
  2445. wait(0.01)
  2446. game.CoreGui.Motherboard.MainGUI:TweenPosition(UDim2.new(0, 702, 0, 1200),"Out","Quart",2,true)
  2447. game.CoreGui.Motherboard.OpenGUI:TweenPosition(UDim2.new(0, 0, 0, 639),"Out","Quart",2,true)
  2448. end)
  2449.  
  2450. CloseButton3.MouseButton1Down:connect(function()
  2451. wait(0.01)
  2452. game.CoreGui.Motherboard.MainGUI:TweenPosition(UDim2.new(0, 702, 0, 1200),"Out","Quart",2,true)
  2453. game.CoreGui.Motherboard.OpenGUI:TweenPosition(UDim2.new(0, 0, 0, 639),"Out","Quart",2,true)
  2454. end)
  2455.  
  2456. CloseButton4.MouseButton1Down:connect(function()
  2457. wait(0.01)
  2458. game.CoreGui.Motherboard.MainGUI:TweenPosition(UDim2.new(0, 702, 0, 1200),"Out","Quart",2,true)
  2459. game.CoreGui.Motherboard.OpenGUI:TweenPosition(UDim2.new(0, 0, 0, 639),"Out","Quart",2,true)
  2460. end)
  2461.  
  2462. CloseButton5.MouseButton1Down:connect(function()
  2463. wait(0.01)
  2464. game.CoreGui.Motherboard.MainGUI:TweenPosition(UDim2.new(0, 702, 0, 1200),"Out","Quart",2,true)
  2465. game.CoreGui.Motherboard.OpenGUI:TweenPosition(UDim2.new(0, 0, 0, 639),"Out","Quart",2,true)
  2466. end)
  2467.  
  2468. CloseButton6.MouseButton1Down:connect(function()
  2469. wait(0.01)
  2470. game.CoreGui.Motherboard.MainGUI:TweenPosition(UDim2.new(0, 702, 0, 1200),"Out","Quart",2,true)
  2471. game.CoreGui.Motherboard.OpenGUI:TweenPosition(UDim2.new(0, 0, 0, 639),"Out","Quart",2,true)
  2472. end)
  2473.  
  2474. CloseButton7.MouseButton1Down:connect(function()
  2475. wait(0.01)
  2476. game.CoreGui.Motherboard.MainGUI:TweenPosition(UDim2.new(0, 702, 0, 1200),"Out","Quart",2,true)
  2477. game.CoreGui.Motherboard.OpenGUI:TweenPosition(UDim2.new(0, 0, 0, 639),"Out","Quart",2,true)
  2478. end)
  2479.  
  2480. CloseButton8.MouseButton1Down:connect(function()
  2481. wait(0.01)
  2482. game.CoreGui.Motherboard.MainGUI:TweenPosition(UDim2.new(0, 702, 0, 1200),"Out","Quart",2,true)
  2483. game.CoreGui.Motherboard.OpenGUI:TweenPosition(UDim2.new(0, 0, 0, 639),"Out","Quart",2,true)
  2484. end)
  2485.  
  2486. OpenButton.MouseButton1Down:connect(function()
  2487. wait(0.01)
  2488. game.CoreGui.Motherboard.MainGUI:TweenPosition(UDim2.new(0, 702, 0, 307),"Out","Quart",2,true)
  2489. game.CoreGui.Motherboard.OpenGUI:TweenPosition(UDim2.new(0, -200, 0, 639),"Out","Quart",2,true)
  2490. end)
  2491.  
  2492. Teleporting.MouseButton1Down:connect(function()
  2493. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.Visible = true
  2494. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2495. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2496. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2497. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2498. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2499. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2500. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2501. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2502. end)
  2503.  
  2504. CarTeleporting.MouseButton1Down:connect(function()
  2505. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.Visible = true
  2506. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2507. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2508. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2509. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2510. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2511. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2512. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2513. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2514. end)
  2515.  
  2516. LocalPlayerFunctions.MouseButton1Down:connect(function()
  2517. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.Visible = true
  2518. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2519. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2520. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2521. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2522. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2523. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2524. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2525. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2526. end)
  2527.  
  2528. GameFunctions.MouseButton1Down:connect(function()
  2529. game.CoreGui.Motherboard.MainGUI.GameGUI.Visible = true
  2530. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2531. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2532. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2533. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2534. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2535. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2536. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2537. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2538. end)
  2539.  
  2540. CreditsButton.MouseButton1Down:connect(function()
  2541. game.CoreGui.Motherboard.MainGUI.CreditsGUI.Visible = true
  2542. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2543. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2544. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2545. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2546. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2547. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2548. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2549. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2550. end)
  2551.  
  2552. Spawning.MouseButton1Down:connect(function()
  2553. game.CoreGui.Motherboard.MainGUI.SpawningGUI.Visible = true
  2554. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2555. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2556. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2557. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2558. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2559. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2560. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2561. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2562. end)
  2563.  
  2564. Giveaways.MouseButton1Down:connect(function()
  2565. game.CoreGui.Motherboard.MainGUI.GiveawayGUI.Visible = true
  2566. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2567. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2568. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2569. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2570. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2571. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2572. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2573. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2574. end)
  2575.  
  2576. Settings.MouseButton1Down:connect(function()
  2577. game.CoreGui.Motherboard.MainGUI.SettingsGUI.Visible = true
  2578. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2579. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2580. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2581. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2582. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2583. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2584. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2585. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2586. end)
  2587.  
  2588. FastTeleport.MouseButton1Down:connect(function()
  2589. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.Visible = true
  2590. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.Visible = false
  2591. game.CoreGui.Motherboard.MainGUI.GameGUI.Visible = false
  2592. game.CoreGui.Motherboard.MainGUI.CreditsGUI.Visible = false
  2593. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2594. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2595. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2596. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2597. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.Visible = false
  2598. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2599. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2600. game.CoreGui.Motherboard.MainGUI.SettingsGUI.Visible = false
  2601. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2602. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2603. game.CoreGui.Motherboard.MainGUI.SpawningGUI.Visible = false
  2604. game.CoreGui.Motherboard.MainGUI.GiveawayGUI.Visible = false
  2605. end)
  2606.  
  2607. FastCarTeleporting.MouseButton1Down:connect(function()
  2608. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.Visible = false
  2609. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.Visible = false
  2610. game.CoreGui.Motherboard.MainGUI.GameGUI.Visible = false
  2611. game.CoreGui.Motherboard.MainGUI.CreditsGUI.Visible = false
  2612. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.Visible = false
  2613. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2614. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2615. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2616. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2617. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.Visible = true
  2618. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2619. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2620. game.CoreGui.Motherboard.MainGUI.SettingsGUI.Visible = false
  2621. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2622. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2623. game.CoreGui.Motherboard.MainGUI.SpawningGUI.Visible = false
  2624. game.CoreGui.Motherboard.MainGUI.GiveawayGUI.Visible = false
  2625. end)
  2626.  
  2627. FastSettings.MouseButton1Down:connect(function()
  2628. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.Visible = false
  2629. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.Visible = false
  2630. game.CoreGui.Motherboard.MainGUI.GameGUI.Visible = false
  2631. game.CoreGui.Motherboard.MainGUI.CreditsGUI.Visible = false
  2632. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.Visible = false
  2633. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2634. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2635. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2636. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2637. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.Visible = false
  2638. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2639. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2640. game.CoreGui.Motherboard.MainGUI.SettingsGUI.Visible = true
  2641. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2642. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2643. game.CoreGui.Motherboard.MainGUI.SpawningGUI.Visible = false
  2644. game.CoreGui.Motherboard.MainGUI.GiveawayGUI.Visible = false
  2645. end)
  2646.  
  2647. FastLocalPlayer.MouseButton1Down:connect(function()
  2648. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.Visible = false
  2649. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.Visible = true
  2650. game.CoreGui.Motherboard.MainGUI.GameGUI.Visible = false
  2651. game.CoreGui.Motherboard.MainGUI.CreditsGUI.Visible = false
  2652. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2653. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2654. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2655. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2656. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.Visible = false
  2657. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2658. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2659. game.CoreGui.Motherboard.MainGUI.SettingsGUI.Visible = false
  2660. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2661. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2662. game.CoreGui.Motherboard.MainGUI.SpawningGUI.Visible = false
  2663. game.CoreGui.Motherboard.MainGUI.GiveawayGUI.Visible = false
  2664. end)
  2665.  
  2666. FastGame.MouseButton1Down:connect(function()
  2667. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.Visible = false
  2668. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.Visible = false
  2669. game.CoreGui.Motherboard.MainGUI.GameGUI.Visible = true
  2670. game.CoreGui.Motherboard.MainGUI.CreditsGUI.Visible = false
  2671. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2672. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2673. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2674. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2675. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.Visible = false
  2676. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2677. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2678. game.CoreGui.Motherboard.MainGUI.SettingsGUI.Visible = false
  2679. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2680. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2681. game.CoreGui.Motherboard.MainGUI.SpawningGUI.Visible = false
  2682. game.CoreGui.Motherboard.MainGUI.GiveawayGUI.Visible = false
  2683. end)
  2684.  
  2685. FastCredits.MouseButton1Down:connect(function()
  2686. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.Visible = false
  2687. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.Visible = false
  2688. game.CoreGui.Motherboard.MainGUI.GameGUI.Visible = false
  2689. game.CoreGui.Motherboard.MainGUI.CreditsGUI.Visible = true
  2690. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2691. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2692. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2693. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2694. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.Visible = false
  2695. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2696. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2697. game.CoreGui.Motherboard.MainGUI.SettingsGUI.Visible = false
  2698. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2699. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2700. game.CoreGui.Motherboard.MainGUI.SpawningGUI.Visible = false
  2701. game.CoreGui.Motherboard.MainGUI.GiveawayGUI.Visible = false
  2702. end)
  2703.  
  2704. FastSpawning.MouseButton1Down:connect(function()
  2705. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.Visible = false
  2706. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.Visible = false
  2707. game.CoreGui.Motherboard.MainGUI.GameGUI.Visible = false
  2708. game.CoreGui.Motherboard.MainGUI.CreditsGUI.Visible = false
  2709. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = false
  2710. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = false
  2711. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = false
  2712. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = false
  2713. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.Visible = false
  2714. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = false
  2715. game.CoreGui.Motherboard.MainGUI.Settings.Visible = false
  2716. game.CoreGui.Motherboard.MainGUI.SettingsGUI.Visible = false
  2717. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = false
  2718. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = false
  2719. game.CoreGui.Motherboard.MainGUI.SpawningGUI.Visible = true
  2720. game.CoreGui.Motherboard.MainGUI.GiveawayGUI.Visible = false
  2721. end)
  2722.  
  2723. Back1.MouseButton1Down:connect(function()
  2724. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.Visible = false
  2725. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = true
  2726. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = true
  2727. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = true
  2728. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = true
  2729. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = true
  2730. game.CoreGui.Motherboard.MainGUI.Settings.Visible = true
  2731. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = true
  2732. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = true
  2733. end)
  2734.  
  2735. Back2.MouseButton1Down:connect(function()
  2736. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.Visible = false
  2737. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = true
  2738. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = true
  2739. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = true
  2740. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = true
  2741. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = true
  2742. game.CoreGui.Motherboard.MainGUI.Settings.Visible = true
  2743. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = true
  2744. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = true
  2745. end)
  2746.  
  2747. Back3.MouseButton1Down:connect(function()
  2748. game.CoreGui.Motherboard.MainGUI.GameGUI.Visible = false
  2749. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = true
  2750. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = true
  2751. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = true
  2752. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = true
  2753. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = true
  2754. game.CoreGui.Motherboard.MainGUI.Settings.Visible = true
  2755. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = true
  2756. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = true
  2757. end)
  2758.  
  2759. Back4.MouseButton1Down:connect(function()
  2760. game.CoreGui.Motherboard.MainGUI.CreditsGUI.Visible = false
  2761. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = true
  2762. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = true
  2763. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = true
  2764. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = true
  2765. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = true
  2766. game.CoreGui.Motherboard.MainGUI.Settings.Visible = true
  2767. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = true
  2768. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = true
  2769. end)
  2770.  
  2771. Back5.MouseButton1Down:connect(function()
  2772. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.Visible = false
  2773. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = true
  2774. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = true
  2775. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = true
  2776. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = true
  2777. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = true
  2778. game.CoreGui.Motherboard.MainGUI.Settings.Visible = true
  2779. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = true
  2780. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = true
  2781. end)
  2782.  
  2783. Back6.MouseButton1Down:connect(function()
  2784. game.CoreGui.Motherboard.MainGUI.SettingsGUI.Visible = false
  2785. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = true
  2786. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = true
  2787. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = true
  2788. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = true
  2789. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = true
  2790. game.CoreGui.Motherboard.MainGUI.Settings.Visible = true
  2791. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = true
  2792. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = true
  2793. end)
  2794.  
  2795. Back7.MouseButton1Down:connect(function()
  2796. game.CoreGui.Motherboard.MainGUI.GiveawayGUI.Visible = false
  2797. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = true
  2798. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = true
  2799. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = true
  2800. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = true
  2801. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = true
  2802. game.CoreGui.Motherboard.MainGUI.Settings.Visible = true
  2803. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = true
  2804. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = true
  2805. end)
  2806.  
  2807. Back8.MouseButton1Down:connect(function()
  2808. game.CoreGui.Motherboard.MainGUI.SpawningGUI.Visible = false
  2809. game.CoreGui.Motherboard.MainGUI.GameFunctions.Visible = true
  2810. game.CoreGui.Motherboard.MainGUI.Teleporting.Visible = true
  2811. game.CoreGui.Motherboard.MainGUI.LocalPlayerFunctions.Visible = true
  2812. game.CoreGui.Motherboard.MainGUI.CreditsButton.Visible = true
  2813. game.CoreGui.Motherboard.MainGUI.CarTeleporting.Visible = true
  2814. game.CoreGui.Motherboard.MainGUI.Settings.Visible = true
  2815. game.CoreGui.Motherboard.MainGUI.Spawning.Visible = true
  2816. game.CoreGui.Motherboard.MainGUI.Giveaways.Visible = true
  2817. end)
  2818.  
  2819. FastTravel.MouseButton1Down:connect(function()
  2820. game.CoreGui.Motherboard.MainGUI.FastTravelGUI:TweenSize(UDim2.new(0, 100, 0, 223), 'Out', 'Bounce', 1, false)
  2821. game.CoreGui.Motherboard.MainGUI.FastTravel.Visible = false
  2822.  
  2823. wait(1)
  2824. game.CoreGui.Motherboard.MainGUI.FastTravelGUI.FastTeleport.Visible = true
  2825. game.CoreGui.Motherboard.MainGUI.FastTravelGUI.FastLocalPlayer.Visible = true
  2826. game.CoreGui.Motherboard.MainGUI.FastTravelGUI.FastGame.Visible = true
  2827. game.CoreGui.Motherboard.MainGUI.FastTravelGUI.FastCredits.Visible = true
  2828. game.CoreGui.Motherboard.MainGUI.FastTravelGUI.FastTravelLabel.Visible = true
  2829. game.CoreGui.Motherboard.MainGUI.FastTravelGUI.FastCarTeleporting.Visible = true
  2830. game.CoreGui.Motherboard.MainGUI.FastTravelGUI.FastSettings.Visible = true
  2831. game.CoreGui.Motherboard.MainGUI.FastTravelGUI.FastSpawning.Visible = true
  2832. end)
  2833.  
  2834. for i, v in pairs(game:GetService("Workspace").Banks:GetChildren()) do
  2835. spawn(function()
  2836. while wait(0.1) do
  2837. if v.Extra.Light.SurfaceLight.Enabled == true then
  2838. game.CoreGui.Motherboard.BNotifierOpen:TweenPosition(UDim2.new(0, 1718,0, 578),"Out","Quint",2,true)
  2839. else
  2840. game.CoreGui.Motherboard.BNotifierOpen:TweenPosition(UDim2.new(0, 1950,0, 578),"Out","Quint",2,true)
  2841. end
  2842. end
  2843. end)
  2844. end
  2845.  
  2846. for i, v in pairs(game:GetService("Workspace").Jewelrys:GetChildren()) do
  2847. spawn(function()
  2848. while wait(0.1) do
  2849. if v.Extra.Light.SurfaceLight.Enabled == true then
  2850. game.CoreGui.Motherboard.JNotifierOpen:TweenPosition(UDim2.new(0, 1718,0, 657),"Out","Quint",2,true)
  2851. else
  2852. game.CoreGui.Motherboard.JNotifierOpen:TweenPosition(UDim2.new(0, 1950,0, 657),"Out","Quint",2,true)
  2853. end
  2854. end
  2855. end)
  2856. end
  2857.  
  2858. Keycard.MouseButton1Down:connect(function()
  2859. game:GetService("Players").LocalPlayer.TeamValue.Value= "Police"
  2860. end)
  2861.  
  2862. local PLR = game:GetService("Players").LocalPlayer
  2863.  
  2864. local Players = game:GetService("Players"):GetPlayers()
  2865.  
  2866. local Selected1 = game.CoreGui.Motherboard.MainGUI.TeleportsGUI.SPlayer
  2867.  
  2868. val.Name = "Selected"
  2869.  
  2870. function alphabetize(p1, p2)
  2871. local Player1 = p1.Name:lower()
  2872. local P1 = Player1:sub(1, 1):byte()
  2873. local Player2 = p2.Name:lower()
  2874. local P2 = Player2:sub(1, 1):byte()
  2875.  
  2876.  
  2877. if P1 < P2 then return true else return false end
  2878. end
  2879. table.sort(Players, alphabetize)
  2880.  
  2881. for i = 1, #Players do
  2882. local p = Players[i]
  2883. if p ~= PLR then
  2884. local btn = Instance.new("TextButton", sframe)
  2885. btn.Name = p.Name
  2886. btn.Text = p.Name
  2887. btn.Size = UDim2.new(0, 260, 0, 25)
  2888. btn.Font = Enum.Font.Highway
  2889. btn.FontSize = Enum.FontSize.Size14
  2890. btn.TextColor3 = Color3.new(255, 255, 255)
  2891. btn.BackgroundTransparency = 1
  2892. btn.Position = UDim2.new(0, 0, 0, (i * 25) - 25)
  2893. sframe.CanvasSize = UDim2.new(0, 0, 0, (#Players * 25) - 25)
  2894. btn.MouseButton1Click:connect(function()
  2895. val.Value = p
  2896. Selected1.Text = "Player: "..p.Name
  2897. end)
  2898.  
  2899. end
  2900. end
  2901.  
  2902. function update()
  2903.  
  2904. for i, btn in ipairs(sframe:GetChildren()) do if btn:IsA("TextButton") then btn:Destroy() end end
  2905.  
  2906. local plrs = game:GetService("Players"):GetPlayers()
  2907. table.sort(plrs, alphabetize)
  2908.  
  2909. for i = 1, #plrs do
  2910.  
  2911. local p = plrs[i]
  2912. if p ~= PLR then
  2913.  
  2914. local btn = Instance.new("TextButton", sframe)
  2915. btn.Text = p.Name
  2916. btn.Size = UDim2.new(0, 260, 0, 25)
  2917. btn.Font = Enum.Font.Highway
  2918. btn.FontSize = Enum.FontSize.Size14
  2919. btn.TextColor3 = Color3.new(255, 255, 255)
  2920. btn.BackgroundTransparency = 1
  2921. btn.Position = UDim2.new(0, 0, 0, (i * 25) - 25)
  2922.  
  2923. sframe.CanvasSize = UDim2.new(0, 0, 0, (#Players * 25) - 25)
  2924.  
  2925. btn.MouseButton1Click:connect(function()
  2926. val.Value = p
  2927. SPlayer.Text = "Player: "..p.Name
  2928. end)
  2929.  
  2930. end
  2931. end
  2932.  
  2933. end
  2934. game:GetService("Players").PlayerAdded:connect(update)
  2935. game:GetService("Players").PlayerRemoving:connect(update)
  2936.  
  2937. function getPlayer()
  2938. if val.Value:IsA("Player") and val.Value.Character:FindFirstChild("HumanoidRootPart") then return val.Value else return nil end
  2939. end
  2940.  
  2941. VehichleSpeed.MouseButton1Down:connect(function()
  2942. loadstring(game:GetObjects("rbxassetid://1079982436")[1].Source)()
  2943. end)
  2944.  
  2945. GotoBank.MouseButton1Down:connect(function()
  2946. for i=1,12 do
  2947. wait()
  2948. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-11.036747, 17.9193821, 797.971521) + Vector3.new(1,0,0)
  2949. end
  2950. end)
  2951.  
  2952. JumpPower1.MouseButton1Down:connect(function()
  2953. if Jump == true then
  2954. Jump = false
  2955. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = 50
  2956. else
  2957. Jump = true
  2958. game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = 100
  2959. end
  2960. end)
  2961.  
  2962. GotoJewelry.MouseButton1Down:connect(function()
  2963. for i=1,12 do
  2964. wait()
  2965. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(137.325, 17.878, 1320.123) + Vector3.new(1,0,0)
  2966. end
  2967. end)
  2968.  
  2969. Gravity1.MouseButton1Down:connect(function()
  2970. if Gravity == true then
  2971. Gravity = false
  2972. game:GetService("Workspace").Gravity = 196.2
  2973. else
  2974. Gravity = true
  2975. game:GetService("Workspace").Gravity = 45
  2976. end
  2977. end)
  2978.  
  2979. Coordinates.MouseButton1Down:connect(function()
  2980. print(game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position)
  2981. end)
  2982.  
  2983. WalkSpeed1.MouseButton1Down:connect(function()
  2984. down = false
  2985. velocity = Instance.new("BodyVelocity")
  2986. velocity.maxForce = Vector3.new(100000, 0, 100000)
  2987. local speed = 150
  2988. gyro = Instance.new("BodyGyro")
  2989. gyro.maxTorque = Vector3.new(100000, 0, 100000)
  2990.  
  2991. local hum = game:GetService("Players").LocalPlayer.Character.Humanoid
  2992.  
  2993. function onButton1Down(mouse)
  2994. down = true
  2995. velocity.Parent = game:GetService("Players").LocalPlayer.Character.UpperTorso
  2996. velocity.velocity = (hum.MoveDirection) * speed
  2997. gyro.Parent = game:GetService("Players").LocalPlayer.Character.UpperTorso
  2998. while down do
  2999. if not down then break end
  3000. velocity.velocity = (hum.MoveDirection) * speed
  3001. local refpos = gyro.Parent.Position + (gyro.Parent.Position - workspace.CurrentCamera.CoordinateFrame.p).unit * 5
  3002. gyro.cframe = CFrame.new(gyro.Parent.Position, Vector3.new(refpos.x, gyro.Parent.Position.y, refpos.z))
  3003. wait(0.1)
  3004. end
  3005. end
  3006.  
  3007. function onButton1Up(mouse)
  3008. velocity.Parent = nil
  3009. gyro.Parent = nil
  3010. down = false
  3011. end
  3012.  
  3013. function onSelected(mouse)
  3014. mouse.KeyDown:connect(function(k) if k:lower()=="q"then onButton1Down(mouse)end end)
  3015. mouse.KeyUp:connect(function(k) if k:lower()=="q"then onButton1Up(mouse)end end)
  3016. end
  3017.  
  3018. onSelected(game:GetService("Players").LocalPlayer:GetMouse())
  3019. end)
  3020.  
  3021. noclip = false
  3022. game:GetService('RunService').Stepped:connect(function()
  3023. if noclip then
  3024. game:GetService("Players").LocalPlayer.Character.Humanoid:ChangeState(11)
  3025. end
  3026. end)
  3027.  
  3028. Noclipp.MouseButton1Down:connect(function()
  3029. noclip = not noclip
  3030. if Noclipp.Text == "Noclip ON" then
  3031. Noclipp.Text = "Noclip OFF"
  3032. else
  3033. Noclipp.Text = "Noclip ON"
  3034. end
  3035. end)
  3036.  
  3037. SpamArrest.MouseButton1Down:connect(function()
  3038. local Player = game:GetService("Players").LocalPlayer
  3039. wait(0.5)
  3040. for i,v in pairs(game.Teams.Criminal:GetPlayers()) do
  3041. repeat
  3042. wait()
  3043. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  3044. until v.Team.Name ~= "Criminal"
  3045. end
  3046. end)
  3047.  
  3048. GoTo.MouseButton1Down:connect(function()
  3049. local p = getPlayer()
  3050. if p then
  3051. for i=1,20 do
  3052. wait()
  3053. PLR.Character.HumanoidRootPart.CFrame = p.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  3054. end
  3055. else
  3056. GoTo.Text = "Retry"; wait(1); GoTo.Text = "GoTo" end
  3057. end)
  3058.  
  3059. CrimBaseKey.MouseButton1Down:connect(function()
  3060. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  3061. mouse1.KeyDown:connect(function(key)
  3062. if key == CrimBaseKeyBox.Text then
  3063. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
  3064. end
  3065. end)
  3066. end)
  3067.  
  3068. JewelryKey.MouseButton1Down:connect(function()
  3069. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  3070. mouse1.KeyDown:connect(function(key)
  3071. if key == JewelryKeyBox.Text then
  3072. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(137.325, 17.878, 1320.123) + Vector3.new(1,0,0)
  3073. end
  3074. end)
  3075. end)
  3076.  
  3077. BankKey.MouseButton1Down:connect(function()
  3078. local mouse1 = game:GetService("Players").LocalPlayer:GetMouse()
  3079. mouse1.KeyDown:connect(function(key)
  3080. if key == BankKeyBox.Text then
  3081. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-11.036747, 17.9193821, 797.971521) + Vector3.new(1,0,0)
  3082. end
  3083. end)
  3084. end)
  3085.  
  3086. Transparent1.MouseButton1Down:connect(function()
  3087. game.CoreGui.Motherboard.MainGUI.BackgroundTransparency = 0.5
  3088. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.BackgroundTransparency = 0.5
  3089. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.BackgroundTransparency = 0.5
  3090. game.CoreGui.Motherboard.MainGUI.GameGUI.BackgroundTransparency = 0.5
  3091. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.BackgroundTransparency = 0.5
  3092. game.CoreGui.Motherboard.MainGUI.SettingsGUI.BackgroundTransparency = 0.5
  3093. game.CoreGui.Motherboard.MainGUI.FastTravelGUI.BackgroundTransparency = 0.5
  3094. end)
  3095.  
  3096. Transparent2.MouseButton1Down:connect(function()
  3097. game.CoreGui.Motherboard.MainGUI.BackgroundTransparency = 0
  3098. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.BackgroundTransparency = 0
  3099. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.BackgroundTransparency = 0
  3100. game.CoreGui.Motherboard.MainGUI.GameGUI.BackgroundTransparency = 0
  3101. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.BackgroundTransparency = 0
  3102. game.CoreGui.Motherboard.MainGUI.SettingsGUI.BackgroundTransparency = 0
  3103. game.CoreGui.Motherboard.MainGUI.FastTravelGUI.BackgroundTransparency = 0
  3104. end)
  3105.  
  3106. ClickTP.MouseButton1Down:connect(function()
  3107. local UIS = game:GetService("UserInputService")
  3108.  
  3109. local Player = game:GetService("Players").LocalPlayer
  3110. local Mouse = Player:GetMouse()
  3111.  
  3112.  
  3113. function GetCharacter()
  3114. return Player.Character
  3115. end
  3116.  
  3117. function Teleport(pos)
  3118. local Char = GetCharacter()
  3119. if Char then
  3120. for i=1,20 do
  3121. wait()
  3122. Char:MoveTo(pos)
  3123. end
  3124. end
  3125. end
  3126.  
  3127.  
  3128. UIS.InputBegan:Connect(function(input)
  3129. if input.UserInputType == Enum.UserInputType.MouseButton1 and UIS:IsKeyDown(Enum.KeyCode.LeftControl) then
  3130. Teleport(Mouse.Hit.p)
  3131. end
  3132. end)
  3133. end)
  3134.  
  3135. InfiniteAmmo.MouseButton1Down:connect(function()
  3136. game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui.Ammo.MagSize.Name = "lol"
  3137. end)
  3138.  
  3139. Prison.MouseButton1Down:connect(function()
  3140. for i=1,20 do
  3141. wait()
  3142. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1138.66, 18.009, -1430.01) + Vector3.new(1,0,0)
  3143. end
  3144. end)
  3145.  
  3146. CrimBase1.MouseButton1Down:connect(function()
  3147. for i=1,20 do
  3148. wait()
  3149. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
  3150. end
  3151. end)
  3152.  
  3153. CrimBase2.MouseButton1Down:connect(function()
  3154. for i=1,20 do
  3155. wait()
  3156. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1579.4823, 49.787693, -1759.61438) + Vector3.new(1,0,0)
  3157. end
  3158. end)
  3159.  
  3160. PoliceHQ1.MouseButton1Click:connect(function()
  3161. for i=1,20 do
  3162. wait()
  3163. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1130.11426, 17.950058, -1593.09766) + Vector3.new(1,0,0)
  3164. end
  3165. end)
  3166.  
  3167. PoliceHQ2.MouseButton1Down:connect(function()
  3168. for i=1,20 do
  3169. wait()
  3170. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(736.232239, 38.1125107, 1130.04456) + Vector3.new(1,0,0)
  3171. end
  3172. end)
  3173.  
  3174. BankFront.MouseButton1Down:connect(function()
  3175. for i=1,20 do
  3176. wait()
  3177. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-11.036747, 17.9193821, 797.971521) + Vector3.new(1,0,0)
  3178. end
  3179. end)
  3180.  
  3181. Garage.MouseButton1Click:connect(function()
  3182. for i=1,20 do
  3183. wait()
  3184. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-341.0529, 19.644, 1182.502) + Vector3.new(1,0,0)
  3185. end
  3186. end)
  3187.  
  3188. BankVault.MouseButton1Down:connect(function()
  3189. for i=1,20 do
  3190. wait()
  3191. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(32.214, 2.67609, 818.648926) + Vector3.new(1,0,0)
  3192. end
  3193. end)
  3194.  
  3195. JewelryIn.MouseButton1Down:connect(function()
  3196. for i=1,20 do
  3197. wait()
  3198. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(137.325, 17.878, 1320.123) + Vector3.new(1,0,0)
  3199. end
  3200. end)
  3201.  
  3202. JewelryOut.MouseButton1Down:connect(function()
  3203. for i=1,20 do
  3204. wait()
  3205. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(137.325, 17.878, 1355.123) + Vector3.new(1,0,0)
  3206. end
  3207. end)
  3208.  
  3209. GasStation.MouseButton1Click:connect(function()
  3210. for i=1,20 do
  3211. wait()
  3212. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1548.20093, 17.7475166, 701.546997) + Vector3.new(1,0,0)
  3213. end
  3214. end)
  3215.  
  3216. DonutShop.MouseButton1Down:connect(function()
  3217. for i=1,20 do
  3218. wait()
  3219. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(267.315552, 17.6180038, -1796.33093) + Vector3.new(1,0,0)
  3220. end
  3221. end)
  3222.  
  3223. Lambo.MouseButton1Down:connect(function()
  3224. for i=1,20 do
  3225. wait()
  3226. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(144.794067, 17.6189003, 768.572693) + Vector3.new(1,0,0)
  3227. end
  3228. end)
  3229.  
  3230. Bugatti.MouseButton1Down:connect(function()
  3231. for i=1,20 do
  3232. wait()
  3233. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(245.938766, 17.6064777, 1372.15076) + Vector3.new(1,0,0)
  3234. end
  3235. end)
  3236.  
  3237. SWATVan.MouseButton1Down:connect(function()
  3238. for i=1,20 do
  3239. wait()
  3240. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1355.2417, 18, -1531.86047) + Vector3.new(1,0,0)
  3241. end
  3242. end)
  3243.  
  3244. DuneBuggy.MouseButton1Down:connect(function()
  3245. for i=1,20 do
  3246. wait()
  3247. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(571.526733, 16.66436, -470.50943) + Vector3.new(1,0,0)
  3248. end
  3249. end)
  3250.  
  3251. PickUpTruck.MouseButton1Down:connect(function()
  3252. for i=1,20 do
  3253. wait()
  3254. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1541.10388, 17.746624, 729) + Vector3.new(1,0,0)
  3255. end
  3256. end)
  3257.  
  3258. DirtBike.MouseButton1Down:connect(function()
  3259. for i=1,20 do
  3260. wait()
  3261. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1313.71118, 17.3656254, 370.085327) + Vector3.new(1,0,0)
  3262. end
  3263. end)
  3264.  
  3265. Porsche.MouseButton1Down:connect(function()
  3266. for i=1,20 do
  3267. wait()
  3268. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1112.11475, 101.16069, 1290.57654) + Vector3.new(1,0,0)
  3269. end
  3270. end)
  3271.  
  3272. Camaro.MouseButton1Down:connect(function()
  3273. for i=1,20 do
  3274. wait()
  3275. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-956.153564, 19.8500576, -1451.23572) + Vector3.new(1,0,0)
  3276. end
  3277. end)
  3278.  
  3279. PoliceCar.MouseButton1Down:connect(function()
  3280. for i=1,20 do
  3281. wait()
  3282. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1088.1095, 19.8500576, -1504.74512) + Vector3.new(1,0,0)
  3283. end
  3284. end)
  3285.  
  3286. MiniCooper.MouseButton1Down:connect(function()
  3287. for i=1,20 do
  3288. wait()
  3289. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(767.823242, 17.3656254, -1216.83643) + Vector3.new(1,0,0)
  3290. end
  3291. end)
  3292.  
  3293. Tesla3.MouseButton1Down:connect(function()
  3294. for i=1,20 do
  3295. wait()
  3296. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-111.571999, 17.6169529, 541.515747) + Vector3.new(1,0,0)
  3297. end
  3298. end)
  3299.  
  3300. GodMode1.MouseButton1Down:connect(function()
  3301. game:GetService("Players").LocalPlayer.Character.Humanoid.Name = 1
  3302. local l = game:GetService("Players").LocalPlayer.Character["1"]:Clone()
  3303. l.Parent = game:GetService("Players").LocalPlayer.Character
  3304. l.Name = "Humanoid"
  3305. wait(0.1)
  3306. game:GetService("Players").LocalPlayer.Character["1"]:Destroy()
  3307. game:GetService("Workspace").CurrentCamera.CameraSubject = game:GetService("Players").LocalPlayer.Character
  3308. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = true
  3309. wait(0.1)
  3310. game:GetService("Players").LocalPlayer.Character.Animate.Disabled = false
  3311. game:GetService("Players").LocalPlayer.Character.Humanoid.DisplayDistanceType = "None"
  3312. end)
  3313.  
  3314. Btools.MouseButton1Down:connect(function()
  3315. StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  3316. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  3317. if child.ClassName == "Part" then
  3318. child.Locked = false
  3319. end
  3320. if child.ClassName == "MeshPart" then
  3321. child.Locked = false
  3322. end
  3323. if child.ClassName == "UnionOperation" then
  3324. child.Locked = false
  3325. end
  3326. if child.ClassName == "Model" then
  3327. for index, chil in pairs(child:GetChildren()) do
  3328. if chil.ClassName == "Part" then
  3329. chil.Locked = false
  3330. end
  3331. if chil.ClassName == "MeshPart" then
  3332. chil.Locked = false
  3333. end
  3334. if chil.ClassName == "UnionOperation" then
  3335. chil.Locked = false
  3336. end
  3337. if chil.ClassName == "Model" then
  3338. for index, childe in pairs(chil:GetChildren()) do
  3339. if childe.ClassName == "Part" then
  3340. childe.Locked = false
  3341. end
  3342. if childe.ClassName == "MeshPart" then
  3343. childe.Locked = false
  3344. end
  3345. if childe.ClassName == "UnionOperation" then
  3346. childe.Locked = false
  3347. end
  3348. if childe.ClassName == "Model" then
  3349. for index, childeo in pairs(childe:GetChildren()) do
  3350. if childeo.ClassName == "Part" then
  3351. childeo.Locked = false
  3352. end
  3353. if childeo.ClassName == "MeshPart" then
  3354. childeo.Locked = false
  3355. end
  3356. if childeo.ClassName == "UnionOperation" then
  3357. childeo.Locked = false
  3358. end
  3359. if childeo.ClassName == "Model" then
  3360. end
  3361. end
  3362. end
  3363. end
  3364. end
  3365. end
  3366. end
  3367. end
  3368. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  3369. c.BinType = Enum.BinType.Hammer
  3370. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  3371. c.BinType = Enum.BinType.Clone
  3372. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  3373. c.BinType = Enum.BinType.Grab
  3374. end)
  3375.  
  3376. RemoveAllDoorsAndLasers.MouseButton1Down:connect(function()
  3377. for i, v in pairs(game:GetService("Workspace").Jewelrys:GetChildren()) do
  3378. v.Lasers:Remove()
  3379. v.Cameras:Remove()
  3380. v.FloorLasers:Remove()
  3381. end
  3382. game:GetService("Workspace").Cells:Remove()
  3383. game:GetService("Workspace").Doors:Remove()
  3384. game:GetService("Workspace").EscapeRoutes.ExplodeWall:Destroy()
  3385. game:GetService("Workspace").EscapeRoutes.LiftGate:Remove()
  3386. for i, v in pairs(game:GetService("Workspace").Banks:GetChildren()) do
  3387. v.Door:Destroy()
  3388. v.TriggerDoor:Destroy()
  3389. v.Lasers:Remove()
  3390. end
  3391. end)
  3392.  
  3393. Pistol.MouseButton1Down:connect(function()
  3394. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3395.  
  3396. a = Instance.new("Part", workspace)
  3397. a.Anchored = true
  3398. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3399. a.CanCollide = false
  3400.  
  3401. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  3402. if v.Name == "Station" then
  3403. for a, b in pairs(v:GetChildren()) do
  3404. if b:IsA("StringValue") then
  3405. if b.Value == "Pistol" then
  3406. v.CFrame = CFrame.new(hit)
  3407. end
  3408. end
  3409. end
  3410. end
  3411. end
  3412. end)
  3413.  
  3414. AK47.MouseButton1Down:connect(function()
  3415. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3416.  
  3417. a = Instance.new("Part", workspace)
  3418. a.Anchored = true
  3419. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3420. a.CanCollide = false
  3421.  
  3422. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  3423. if v.Name == "ShootingRange" then
  3424. for a, b in pairs(v:GetChildren()) do
  3425. if b:IsA("StringValue") then
  3426. if b.Value == "AK47" then
  3427. v.CFrame = CFrame.new(hit)
  3428. end
  3429. end
  3430. end
  3431. end
  3432. end
  3433. end)
  3434.  
  3435. Shotgun.MouseButton1Down:connect(function()
  3436. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3437.  
  3438. a = Instance.new("Part", workspace)
  3439. a.Anchored = true
  3440. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3441. a.CanCollide = false
  3442.  
  3443. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  3444. if v.Name == "Station" then
  3445. for a, b in pairs(v:GetChildren()) do
  3446. if b:IsA("StringValue") then
  3447. if b.Value == "Shotgun" then
  3448. v.CFrame = CFrame.new(hit)
  3449. end
  3450. end
  3451. end
  3452. end
  3453. end
  3454. end)
  3455.  
  3456. Flashlight.MouseButton1Down:connect(function()
  3457. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3458.  
  3459. a = Instance.new("Part", workspace)
  3460. a.Anchored = true
  3461. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3462. a.CanCollide = false
  3463.  
  3464. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  3465. if v.Name == "Station" then
  3466. for a, b in pairs(v:GetChildren()) do
  3467. if b:IsA("StringValue") then
  3468. if b.Value == "Flashlight" then
  3469. v.CFrame = CFrame.new(hit)
  3470. end
  3471. end
  3472. end
  3473. end
  3474. end
  3475. end)
  3476.  
  3477. M4A4.MouseButton1Down:connect(function()
  3478. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3479.  
  3480. a = Instance.new("Part", workspace)
  3481. a.Anchored = true
  3482. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3483. a.CanCollide = false
  3484.  
  3485. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  3486. if v.Name == "Station" then
  3487. for a, b in pairs(v:GetChildren()) do
  3488. if b:IsA("StringValue") then
  3489. if b.Value == "RifleSWAT" then
  3490. v.CFrame = CFrame.new(hit)
  3491. end
  3492. end
  3493. end
  3494. end
  3495. end
  3496. end)
  3497.  
  3498. PoliceShirt.MouseButton1Down:connect(function()
  3499. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3500.  
  3501. a = Instance.new("Part", workspace)
  3502. a.Anchored = true
  3503. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3504. a.CanCollide = false
  3505.  
  3506. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  3507. if v.Name == "Station" then
  3508. for a, b in pairs(v:GetChildren()) do
  3509. if b:IsA("StringValue") then
  3510. if b.Value == "ShirtPolice" then
  3511. v.CFrame = CFrame.new(hit)
  3512. end
  3513. end
  3514. end
  3515. end
  3516. end
  3517. end)
  3518.  
  3519. PolicePants.MouseButton1Down:connect(function()
  3520. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3521.  
  3522. a = Instance.new("Part", workspace)
  3523. a.Anchored = true
  3524. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3525. a.CanCollide = false
  3526.  
  3527. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  3528. if v.Name == "Station" then
  3529. for a, b in pairs(v:GetChildren()) do
  3530. if b:IsA("StringValue") then
  3531. if b.Value == "PantsPolice" then
  3532. v.CFrame = CFrame.new(hit)
  3533. end
  3534. end
  3535. end
  3536. end
  3537. end
  3538. end)
  3539.  
  3540. PoliceHat.MouseButton1Down:connect(function()
  3541. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3542.  
  3543. a = Instance.new("Part", workspace)
  3544. a.Anchored = true
  3545. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3546. a.CanCollide = false
  3547.  
  3548. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  3549. if v.Name == "Station" then
  3550. for a, b in pairs(v:GetChildren()) do
  3551. if b:IsA("StringValue") then
  3552. if b.Value == "HatPolice" then
  3553. v.CFrame = CFrame.new(hit)
  3554. end
  3555. end
  3556. end
  3557. end
  3558. end
  3559. end)
  3560.  
  3561. SWATShirt.MouseButton1Down:connect(function()
  3562. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3563.  
  3564. a = Instance.new("Part", workspace)
  3565. a.Anchored = true
  3566. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3567. a.CanCollide = false
  3568.  
  3569. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  3570. if v.Name == "Station" then
  3571. for a, b in pairs(v:GetChildren()) do
  3572. if b:IsA("StringValue") then
  3573. if b.Value == "ShirtSWAT" then
  3574. v.CFrame = CFrame.new(hit)
  3575. end
  3576. end
  3577. end
  3578. end
  3579. end
  3580. end)
  3581.  
  3582. SWATPants.MouseButton1Down:connect(function()
  3583. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3584.  
  3585. a = Instance.new("Part", workspace)
  3586. a.Anchored = true
  3587. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3588. a.CanCollide = false
  3589.  
  3590. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  3591. if v.Name == "Station" then
  3592. for a, b in pairs(v:GetChildren()) do
  3593. if b:IsA("StringValue") then
  3594. if b.Value == "PantsSWAT" then
  3595. v.CFrame = CFrame.new(hit)
  3596. end
  3597. end
  3598. end
  3599. end
  3600. end
  3601. end)
  3602.  
  3603. SWATHat.MouseButton1Down:connect(function()
  3604. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3605.  
  3606. a = Instance.new("Part", workspace)
  3607. a.Anchored = true
  3608. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3609. a.CanCollide = false
  3610.  
  3611. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  3612. if v.Name == "Station" then
  3613. for a, b in pairs(v:GetChildren()) do
  3614. if b:IsA("StringValue") then
  3615. if b.Value == "HatSWAT" then
  3616. v.CFrame = CFrame.new(hit)
  3617. end
  3618. end
  3619. end
  3620. end
  3621. end
  3622. end)
  3623.  
  3624. SWATMask.MouseButton1Down:connect(function()
  3625. local hit = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3626.  
  3627. a = Instance.new("Part", workspace)
  3628. a.Anchored = true
  3629. a.Position = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,0,-3)
  3630. a.CanCollide = false
  3631.  
  3632. for i, v in pairs(game:GetService("Workspace").Givers:GetChildren()) do
  3633. if v.Name == "Station" then
  3634. for a, b in pairs(v:GetChildren()) do
  3635. if b:IsA("StringValue") then
  3636. if b.Value == "MaskSWAT" then
  3637. v.CFrame = CFrame.new(hit)
  3638. end
  3639. end
  3640. end
  3641. end
  3642. end
  3643. end)
  3644.  
  3645. AnnoyServer.MouseButton1Down:connect(function()
  3646. while wait(0.2) do
  3647. for _,plr in pairs(game:GetService("Players"):GetPlayers()) do
  3648. pcall(function()
  3649. for _,obj in pairs(plr.Character.Head:GetChildren()) do
  3650. if obj:IsA("Sound") then
  3651. obj:Play()
  3652. end
  3653. end
  3654. end)
  3655. end
  3656. end
  3657. end)
  3658.  
  3659. StopAnnoy.MouseButton1Down:connect(function()
  3660. while wait(0.001) do
  3661. for _,plr in pairs(game:GetService("Players"):GetPlayers()) do
  3662. pcall(function()
  3663. for _,obj in pairs(plr.Character.Head:GetChildren()) do
  3664. if obj:IsA("Sound") then
  3665. obj:Stop()
  3666. end
  3667. end
  3668. end)
  3669. end
  3670. end
  3671. end)
  3672.  
  3673. SetCustomTransparency.MouseButton1Down:connect(function()
  3674. game.CoreGui.Motherboard.MainGUI.BackgroundTransparency = CustomTransparency.Text
  3675. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.BackgroundTransparency = CustomTransparency.Text
  3676. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.BackgroundTransparency = CustomTransparency.Text
  3677. game.CoreGui.Motherboard.MainGUI.GameGUI.BackgroundTransparency = CustomTransparency.Text
  3678. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.BackgroundTransparency = CustomTransparency.Text
  3679. game.CoreGui.Motherboard.MainGUI.SettingsGUI.BackgroundTransparency = CustomTransparency.Text
  3680. game.CoreGui.Motherboard.MainGUI.FastTravelGUI.BackgroundTransparency = CustomTransparency.Text
  3681.  
  3682. if game.CoreGui.Motherboard.MainGUI.SettingsGUI.CustomTransparency.Text == "1" then
  3683. game.CoreGui.Motherboard.MainGUI.BackgroundTransparency = 0
  3684. game.CoreGui.Motherboard.MainGUI.TeleportsGUI.BackgroundTransparency = 0
  3685. game.CoreGui.Motherboard.MainGUI.CarTeleportingGUI.BackgroundTransparency = 0
  3686. game.CoreGui.Motherboard.MainGUI.GameGUI.BackgroundTransparency = 0
  3687. game.CoreGui.Motherboard.MainGUI.LocalPlayerGUI.BackgroundTransparency = 0
  3688. game.CoreGui.Motherboard.MainGUI.SettingsGUI.BackgroundTransparency = 0
  3689. game.CoreGui.Motherboard.MainGUI.FastTravelGUI.BackgroundTransparency = 0
  3690. end
  3691. end)
  3692.  
  3693.  
  3694.  
  3695. warn("Unjailbreak v0.6 Has Loaded")
  3696. warn("Created By Unlisting")
  3697. end)
  3698.  
  3699. PLgui.Name = "PLgui"
  3700. PLgui.Parent = main
  3701. PLgui.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3702. PLgui.BorderSizePixel = 5
  3703. PLgui.Position = UDim2.new(0.147368416, 0, 0.704402447, 0)
  3704. PLgui.Size = UDim2.new(0, 200, 0, 50)
  3705. PLgui.Font = Enum.Font.SourceSansBold
  3706. PLgui.Text = "Prison Life GUI"
  3707. PLgui.TextColor3 = Color3.new(1, 1, 1)
  3708. PLgui.TextSize = 14
  3709. PLgui.MouseButton1Down:connect(function()
  3710. wait(1)
  3711.  
  3712. -- Local Player
  3713. local p = game.Players.LocalPlayer
  3714.  
  3715. -- Instance Objects
  3716. local gui = Instance.new('ScreenGui',p.PlayerGui)
  3717. local frame = Instance.new('ScrollingFrame',gui)
  3718. local open = Instance.new('TextButton',gui)
  3719. local name = Instance.new('TextLabel',frame)
  3720. local arrest = Instance.new('TextButton',frame)
  3721. local btools = Instance.new('TextButton',frame)
  3722. local escape = Instance.new('TextButton',frame)
  3723. local exit = Instance.new('TextButton',frame)
  3724. local killaura = Instance.new('TextButton',frame)
  3725. local melee = Instance.new('TextButton',frame)
  3726. local removedoors = Instance.new('TextButton',frame)
  3727. local tools = Instance.new('TextButton',frame)
  3728.  
  3729. -- Name object
  3730. gui.Name = "Prison Life v2.0 GUI"
  3731. frame.Name = "Commands"
  3732. open.Name = "Open"
  3733. name.Name = "Name"
  3734. arrest.Name = "ArrestButton"
  3735. btools.Name = "BtoolsButton"
  3736. escape.Name = "EscapeButton"
  3737. exit.Name = "ExitButton"
  3738. killaura.Name = "KillauraButton"
  3739. melee.Name = "MeleeButton"
  3740. removedoors.Name = "RemoveDoorsButton"
  3741. tools.Name = "ToolsButton"
  3742.  
  3743. -- Object Visible
  3744. frame.Visible = true
  3745. open.Visible = false
  3746. name.Visible = true
  3747. arrest.Visible = true
  3748. btools.Visible = true
  3749. escape.Visible = true
  3750. exit.Visible = true
  3751. killaura.Visible = true
  3752. melee.Visible = true
  3753. removedoors.Visible = true
  3754. tools.Visible = true
  3755.  
  3756. -- Background Color
  3757. frame.BackgroundColor3 = Color3.new(255,255,255)
  3758. open.BackgroundColor3 = Color3.new(0,255,255)
  3759. name.BackgroundColor3 = Color3.new(255,255,255)
  3760. arrest.BackgroundColor3 = Color3.new(0,0,255)
  3761. btools.BackgroundColor3 = Color3.new(0,0,255)
  3762. escape.BackgroundColor3 = Color3.new(0,0,255)
  3763. exit.BackgroundColor3 = Color3.new(255,0,0)
  3764. killaura.BackgroundColor3 = Color3.new(0,0,255)
  3765. melee.BackgroundColor3 = Color3.new(0,0,255)
  3766. removedoors.BackgroundColor3 = Color3.new(0,0,255)
  3767. tools.BackgroundColor3 = Color3.new(0,0,255)
  3768.  
  3769. -- Background Transparency
  3770. frame.BackgroundTransparency = 0.5
  3771. open.BackgroundTransparency = 0
  3772. name.BackgroundTransparency = 0.6
  3773. arrest.BackgroundTransparency = 0
  3774. btools.BackgroundTransparency = 0
  3775. escape.BackgroundTransparency = 0
  3776. exit.BackgroundTransparency = 0
  3777. killaura.BackgroundTransparency = 0
  3778. melee.BackgroundTransparency = 0
  3779. removedoors.BackgroundTransparency = 0
  3780. tools.BackgroundTransparency = 0
  3781.  
  3782. -- Objects Size
  3783. frame.Size = UDim2.new(0,250,0,300)
  3784. open.Size = UDim2.new(0,80,0,30)
  3785. name.Size = UDim2.new(0,180,0,40)
  3786. arrest.Size = UDim2.new(0.9,12,0,30)
  3787. btools.Size = UDim2.new(0.9,12,0,30)
  3788. escape.Size = UDim2.new(0.9,12,0,30)
  3789. exit.Size = UDim2.new(0,50,0,40)
  3790. killaura.Size = UDim2.new(0.9,12,0,30)
  3791. melee.Size = UDim2.new(0.9,12,0,30)
  3792. removedoors.Size = UDim2.new(0.9,12,0,30)
  3793. tools.Size = UDim2.new(0.9,12,0,30)
  3794.  
  3795. -- Objects Position
  3796. frame.Position = UDim2.new(0,5,0.4,0)
  3797. open.Position = UDim2.new(0,0,0,0)
  3798. name.Position = UDim2.new(0,0,0,0)
  3799. arrest.Position = UDim2.new(0,0,0,320)
  3800. btools.Position = UDim2.new(0,0,0,185)
  3801. escape.Position = UDim2.new(0,0,0,230)
  3802. exit.Position = UDim2.new(0,184,0,0)
  3803. killaura.Position = UDim2.new(0,0,0,275)
  3804. melee.Position = UDim2.new(0,0,0,140)
  3805. removedoors.Position = UDim2.new(0,0,0,50)
  3806. tools.Position = UDim2.new(0,0,0,95)
  3807.  
  3808. -- Objects Text Color
  3809. open.TextColor3 = Color3.new(0,0,0)
  3810. name.TextColor3 = Color3.new(0,255,255)
  3811. arrest.TextColor3 = Color3.new(0,0,0)
  3812. btools.TextColor3 = Color3.new(0,0,0)
  3813. escape.TextColor3 = Color3.new(0,0,0)
  3814. exit.TextColor3 = Color3.new(0,0,0)
  3815. killaura.TextColor3 = Color3.new(0,0,0)
  3816. melee.TextColor3 = Color3.new(0,0,0)
  3817. removedoors.TextColor3 = Color3.new(0,0,0)
  3818. tools.TextColor3 = Color3.new(0,0,0)
  3819.  
  3820. -- Object Font
  3821. name.Font = 'Fantasy'
  3822.  
  3823. -- Object Text
  3824. open.Text = 'Open'
  3825. name.Text = 'Prison Life v2.0 Commands'
  3826. arrest.Text = 'Arrest [Cops Only]'
  3827. btools.Text = 'Give Btools'
  3828. escape.Text = 'Escape The Prison'
  3829. exit.Text = 'Exit'
  3830. killaura.Text = 'Kill Aura [Danger]'
  3831. melee.Text = 'Give Melee'
  3832. removedoors.Text = 'Remove Doors'
  3833. tools.Text = 'Give Guns'
  3834.  
  3835. -- Object Text Scaled
  3836. open.TextScaled = true
  3837. name.TextScaled = true
  3838. arrest.TextScaled = true
  3839. btools.TextScaled = true
  3840. escape.TextScaled = true
  3841. exit.TextScaled = true
  3842. killaura.TextScaled = true
  3843. melee.TextScaled = true
  3844. removedoors.TextScaled = true
  3845. tools.TextScaled = true
  3846.  
  3847. -- Frame Moveable
  3848. frame.Active = true
  3849. frame.Draggable = true
  3850.  
  3851. -- Open Function
  3852. open.MouseButton1Down:connect(function()
  3853. frame.Visible = true
  3854. frame:TweenPosition(UDim2.new(0,5,0.4,0), "Out", "Bounce",1 ,true)
  3855. open.Visible = false
  3856. open.Position = UDim2.new(0,0,0,0)
  3857. end)
  3858.  
  3859. -- Close/Exit Function
  3860. exit.MouseButton1Down:connect(function()
  3861. frame:TweenPosition(UDim2.new(0.1,-400,0.4,0) , "Out", "Quad", 1, true)
  3862. wait(1)
  3863. frame.Visible = false
  3864. wait(.1)
  3865. open.Visible = true
  3866. open:TweenPosition(UDim2.new(0,2,0.8,15), "Out", "Bounce",1 ,true)
  3867. end)
  3868.  
  3869. -- Remove Doors Function
  3870. removedoors.MouseButton1Down:connect(function()
  3871. game.Workspace.Doors:Destroy()
  3872. local hint = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  3873. hint.Text = "[ Unique'S PRISON LIFE COMMANDS ]: SUCCESSFULLY REMOVED COP DOORS"
  3874. hint.Name = game.JobId
  3875. wait(3)
  3876. hint:Destroy()
  3877. end)
  3878.  
  3879. -- Guns Function
  3880. tools.MouseButton1Down:connect(function()
  3881. local weapons = {"Remington 870", "M9", "AK-47", "M4A1", "Riot Shield"}
  3882. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  3883. for j, k in pairs(weapons) do
  3884. if v.Name == k then
  3885. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  3886. end
  3887. end
  3888. end
  3889. local hint = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  3890. hint.Text = "[ Unique'S PRISON LIFE COMMANDS ]: SUCCESSFULLY SENT TOOLS TO LOCALPLAYER"
  3891. hint.Name = game.JobId
  3892. wait(3)
  3893. hint:Destroy()
  3894. end)
  3895.  
  3896. -- Melee Function
  3897. melee.MouseButton1Down:connect(function()
  3898. local weapons = {"Crude Knife", "Sharpened stick", "Extendo mirror"}
  3899. for i, v in pairs(game.ReplicatedStorage.Tools:GetChildren()) do
  3900. for j, k in pairs(weapons) do
  3901. if v.Name == k then
  3902. v:Clone().Parent = game.Players.LocalPlayer.Backpack
  3903. end
  3904. end
  3905. end
  3906. local hint = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  3907. hint.Text = "[ Unique'S PRISON LIFE COMMANDS ]: SUCCESSFULLY SENT MELEE TOOLS TO LOCALPLAYER"
  3908. hint.Name = game.JobId
  3909. wait(3)
  3910. hint:Destroy()
  3911. end)
  3912.  
  3913. -- Btools Function
  3914. btools.MouseButton1Down:connect(function()
  3915. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 2
  3916. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 3
  3917. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 4
  3918. loadstring(game:GetObjects('rbxassetid://552440069')[1].Source)()
  3919. end)
  3920.  
  3921. -- Escape Function
  3922. escape.MouseButton1Down:connect(function()
  3923. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(283, 72, 2213)
  3924. local hint = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  3925. hint.Text = "[ Unique'S PRISON LIFE COMMANDS ]: SUCCESSFULLY ESCAPED LOCALPLAYER"
  3926. hint.Name = game.JobId
  3927. wait(3)
  3928. hint:Destroy()
  3929. end)
  3930.  
  3931. -- Kill Aura Function
  3932. killaura.MouseButton1Down:connect(function()
  3933. while wait(0.1) do
  3934. for i, plr in pairs(game.Players:GetChildren()) do
  3935. if plr.Name ~= game.Players.LocalPlayer.Name then
  3936. for i = 1, 10 do
  3937. game.ReplicatedStorage.meleeEvent:FireServer(plr)
  3938. end
  3939. end
  3940. end
  3941. end
  3942. end)
  3943.  
  3944. -- Arrest Function
  3945. local mouse = game.Players.LocalPlayer:GetMouse()
  3946. local arrestEvent = game.Workspace.Remote.arrest
  3947. mouse.Button1Down:connect(function()
  3948. local obj = mouse.Target
  3949. local response = arrestEvent:InvokeServer(obj)
  3950. end)
  3951. end)
  3952.  
  3953. credits.Name = "credits"
  3954. credits.Parent = main
  3955. credits.BackgroundColor3 = Color3.new(0.054902, 0.054902, 0.054902)
  3956. credits.BorderSizePixel = 0
  3957. credits.Position = UDim2.new(0, 0, 0.955974817, 0)
  3958. credits.Size = UDim2.new(0, 95, 0, 14)
  3959. credits.Font = Enum.Font.SourceSans
  3960. credits.Text = "Made By Me Bruh"
  3961. credits.TextColor3 = Color3.new(1, 1, 1)
  3962. credits.TextSize = 14
  3963.  
  3964. close.Name = "close"
  3965. close.Parent = main
  3966. close.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3967. close.BorderSizePixel = 0
  3968. close.Position = UDim2.new(0.887719274, 0, 0, 0)
  3969. close.Size = UDim2.new(0, 32, 0, 18)
  3970. close.Font = Enum.Font.SourceSansBold
  3971. close.Text = "X"
  3972. close.TextColor3 = Color3.new(1, 1, 1)
  3973. close.TextSize = 14
  3974.  
  3975. frame.Name = "frame"
  3976. frame.Parent = alpha
  3977. frame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  3978. frame.BorderSizePixel = 0
  3979. frame.Position = UDim2.new(0, 0, 0.622641504, 0)
  3980. frame.Size = UDim2.new(0, 100, 0, 21)
  3981.  
  3982. open.Name = "open"
  3983. open.Parent = frame
  3984. open.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  3985. open.BorderSizePixel = 0
  3986. open.Position = UDim2.new(0.0700000003, 0, 0, 0)
  3987. open.Size = UDim2.new(0, 86, 0, 21)
  3988. open.Font = Enum.Font.SourceSansBold
  3989. open.Text = "Open"
  3990. open.TextColor3 = Color3.new(1, 1, 1)
  3991. open.TextSize = 14
  3992. open.MouseButton1Down:connect(function()
  3993. main.Visible = true
  3994. frame.Visible = false
  3995. end)
  3996. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement