Advertisement
Guest User

Untitled

a guest
May 24th, 2018
585
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 43.14 KB | None | 0 0
  1. -- Objects
  2.  
  3. local JailbreakTPgui = Instance.new("ScreenGui")
  4. local Topframe = Instance.new("Frame")
  5. local Mainframe = Instance.new("Frame")
  6. local PlacesTab = Instance.new("TextButton")
  7. local MorePlacesTab = Instance.new("TextButton")
  8. local VehiclesTab = Instance.new("TextButton")
  9. local ExtraTab = Instance.new("TextButton")
  10. local PlacesFrame = Instance.new("Frame")
  11. local Cells = Instance.new("TextButton")
  12. local CriminalBase = Instance.new("TextButton")
  13. local JewelryTop = Instance.new("TextButton")
  14. local PrisonYard = Instance.new("TextButton")
  15. local BankOutside = Instance.new("TextButton")
  16. local GunStore = Instance.new("TextButton")
  17. local PrisonCafe = Instance.new("TextButton")
  18. local BankInside = Instance.new("TextButton")
  19. local ParaglideStore = Instance.new("TextButton")
  20. local SecurityCenter = Instance.new("TextButton")
  21. local BankTop = Instance.new("TextButton")
  22. local Garage1 = Instance.new("TextButton")
  23. local PoliceHQ1 = Instance.new("TextButton")
  24. local Vault = Instance.new("TextButton")
  25. local Garage2 = Instance.new("TextButton")
  26. local PoliceHQ2 = Instance.new("TextButton")
  27. local JewelryOutside = Instance.new("TextButton")
  28. local RadioTower = Instance.new("TextButton")
  29. local CiminalHQ = Instance.new("TextButton")
  30. local JewelryInside = Instance.new("TextButton")
  31. local RadioTowerTop = Instance.new("TextButton")
  32. local MorePlacesFrame = Instance.new("Frame")
  33. local GasStation = Instance.new("TextButton")
  34. local DonutShop = Instance.new("TextButton")
  35. local TrainStation = Instance.new("TextButton")
  36. local PrisonFront = Instance.new("TextButton")
  37. local PrisonTop = Instance.new("TextButton")
  38. local TrainStation2 = Instance.new("TextButton")
  39. local Suburbs = Instance.new("TextButton")
  40. local SpaceZ = Instance.new("TextButton")
  41. local Apartment1 = Instance.new("TextButton")
  42. local Apartment2 = Instance.new("TextButton")
  43. local Apartment3 = Instance.new("TextButton")
  44. local Apartment4 = Instance.new("TextButton")
  45. local Apartment5 = Instance.new("TextButton")
  46. local PoliceCamp = Instance.new("TextButton")
  47. local Sewers = Instance.new("TextButton")
  48. local VehiclesFrame = Instance.new("Frame")
  49. local Helicopter1 = Instance.new("TextButton")
  50. local Helicopter2 = Instance.new("TextButton")
  51. local PoliceCar = Instance.new("TextButton")
  52. local PoliceExplorer = Instance.new("TextButton")
  53. local SwatCar = Instance.new("TextButton")
  54. local StartingCar = Instance.new("TextButton")
  55. local Truck = Instance.new("TextButton")
  56. local MonsterTruck = Instance.new("TextButton")
  57. local UFO = Instance.new("TextButton")
  58. local DuneBuggy = Instance.new("TextButton")
  59. local Bike = Instance.new("TextButton")
  60. local Ferarri = Instance.new("TextButton")
  61. local ExtraFrame = Instance.new("Frame")
  62. local RemoveDoors = Instance.new("TextButton")
  63. local RemoveTrees = Instance.new("TextButton")
  64. local RemoveBuildings = Instance.new("TextButton")
  65. local TextLabel = Instance.new("TextLabel")
  66. local TextLabel_2 = Instance.new("TextLabel")
  67. local TextLabel_3 = Instance.new("TextLabel")
  68. local TextLabel_4 = Instance.new("TextLabel")
  69. local TextLabel_5 = Instance.new("TextLabel")
  70. local TextLabel_6 = Instance.new("TextLabel")
  71. local TextLabel_7 = Instance.new("TextLabel")
  72. local TextLabel_8 = Instance.new("TextLabel")
  73. local CtrlClickDestroy = Instance.new("TextButton")
  74. local TextLabel_9 = Instance.new("TextLabel")
  75.  
  76. -- Properties
  77.  
  78. JailbreakTPgui.Name = "JailbreakTPgui"
  79. JailbreakTPgui.Parent = game.CoreGui
  80.  
  81. Topframe.Name = "Topframe"
  82. Topframe.Parent = JailbreakTPgui
  83. Topframe.BackgroundColor3 = Color3.new(0, 0, 0)
  84. Topframe.BorderColor3 = Color3.new(0, 0, 0)
  85. Topframe.Position = UDim2.new(0.609184623, 0, 0.133086875, 0)
  86. Topframe.Size = UDim2.new(0, 406, 0, 23)
  87. Topframe.Active = true
  88. Topframe.Draggable = true
  89.  
  90. Mainframe.Name = "Mainframe"
  91. Mainframe.Parent = Topframe
  92. Mainframe.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  93. Mainframe.BorderColor3 = Color3.new(0.129412, 0.129412, 0.129412)
  94. Mainframe.Position = UDim2.new(0, 0, 1, 0)
  95. Mainframe.Size = UDim2.new(0, 406, 0, 220)
  96.  
  97. PlacesTab.Name = "PlacesTab"
  98. PlacesTab.Parent = Mainframe
  99. PlacesTab.BackgroundColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  100. PlacesTab.BorderColor3 = Color3.new(0, 0, 0)
  101. PlacesTab.Size = UDim2.new(0, 101, 0, 17)
  102. PlacesTab.Font = Enum.Font.SourceSans
  103. PlacesTab.Text = "Places"
  104. PlacesTab.TextColor3 = Color3.new(0, 0, 0)
  105. PlacesTab.TextSize = 14
  106. PlacesTab.TextWrapped = true
  107.  
  108. PlacesTab.MouseButton1Click:Connect(function()
  109. PlacesFrame.Visible = true
  110. MorePlacesFrame.Visible = false
  111. VehiclesFrame.Visible = false
  112. ExtraFrame.Visible = false
  113. end)
  114.  
  115. MorePlacesTab.Name = "MorePlacesTab"
  116. MorePlacesTab.Parent = Mainframe
  117. MorePlacesTab.BackgroundColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  118. MorePlacesTab.BorderColor3 = Color3.new(0, 0, 0)
  119. MorePlacesTab.Position = UDim2.new(0.248768479, 0, 0, 0)
  120. MorePlacesTab.Size = UDim2.new(0, 101, 0, 17)
  121. MorePlacesTab.Font = Enum.Font.SourceSans
  122. MorePlacesTab.Text = "More Places"
  123. MorePlacesTab.TextColor3 = Color3.new(0, 0, 0)
  124. MorePlacesTab.TextSize = 14
  125. MorePlacesTab.TextWrapped = true
  126.  
  127. MorePlacesTab.MouseButton1Click:Connect(function()
  128. PlacesFrame.Visible = false
  129. MorePlacesFrame.Visible = true
  130. VehiclesFrame.Visible = false
  131. ExtraFrame.Visible = false
  132. end)
  133.  
  134. VehiclesTab.Name = "VehiclesTab"
  135. VehiclesTab.Parent = Mainframe
  136. VehiclesTab.BackgroundColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  137. VehiclesTab.BorderColor3 = Color3.new(0, 0, 0)
  138. VehiclesTab.Position = UDim2.new(0.497536957, 0, 0, 0)
  139. VehiclesTab.Size = UDim2.new(0, 101, 0, 17)
  140. VehiclesTab.Font = Enum.Font.SourceSans
  141. VehiclesTab.Text = "Vehicles"
  142. VehiclesTab.TextColor3 = Color3.new(0, 0, 0)
  143. VehiclesTab.TextSize = 14
  144. VehiclesTab.TextWrapped = true
  145.  
  146. VehiclesTab.MouseButton1Click:Connect(function()
  147. PlacesFrame.Visible = false
  148. MorePlacesFrame.Visible = false
  149. VehiclesFrame.Visible = true
  150. ExtraFrame.Visible = false
  151. end)
  152.  
  153. ExtraTab.Name = "ExtraTab"
  154. ExtraTab.Parent = Mainframe
  155. ExtraTab.BackgroundColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  156. ExtraTab.BorderColor3 = Color3.new(0, 0, 0)
  157. ExtraTab.Position = UDim2.new(0.746305406, 0, 0, 0)
  158. ExtraTab.Size = UDim2.new(0, 103, 0, 17)
  159. ExtraTab.Font = Enum.Font.SourceSans
  160. ExtraTab.Text = "Extra stuff"
  161. ExtraTab.TextColor3 = Color3.new(0, 0, 0)
  162. ExtraTab.TextSize = 14
  163. ExtraTab.TextWrapped = true
  164.  
  165. ExtraTab.MouseButton1Click:Connect(function()
  166. PlacesFrame.Visible = false
  167. MorePlacesFrame.Visible = false
  168. VehiclesFrame.Visible = false
  169. ExtraFrame.Visible = true
  170. end)
  171.  
  172. PlacesFrame.Name = "PlacesFrame"
  173. PlacesFrame.Parent = Mainframe
  174. PlacesFrame.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  175. PlacesFrame.BorderColor3 = Color3.new(0, 0, 0)
  176. PlacesFrame.Position = UDim2.new(0, 0, 0.0772727281, 0)
  177. PlacesFrame.Size = UDim2.new(0, 406, 0, 203)
  178.  
  179. Cells.Name = "Cells"
  180. Cells.Parent = PlacesFrame
  181. Cells.BackgroundColor3 = Color3.new(0, 0, 0)
  182. Cells.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  183. Cells.Position = UDim2.new(0.0160098523, 0, 0.0344827585, 0)
  184. Cells.Size = UDim2.new(0, 124, 0, 21)
  185. Cells.Font = Enum.Font.SourceSans
  186. Cells.Text = "Cells"
  187. Cells.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  188. Cells.TextSize = 14
  189. Cells.MouseButton1Click:Connect(function()
  190. loadstring(game:HttpGet(('https://hastebin.com/raw/hubuliciza.css'),true))()
  191. end)
  192.  
  193. CriminalBase.Name = "CriminalBase"
  194. CriminalBase.Parent = PlacesFrame
  195. CriminalBase.BackgroundColor3 = Color3.new(0, 0, 0)
  196. CriminalBase.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  197. CriminalBase.Position = UDim2.new(0.346059084, 0, 0.0344827585, 0)
  198. CriminalBase.Size = UDim2.new(0, 124, 0, 21)
  199. CriminalBase.Font = Enum.Font.SourceSans
  200. CriminalBase.Text = "Criminal Base"
  201. CriminalBase.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  202. CriminalBase.TextSize = 14
  203. CriminalBase.MouseButton1Click:Connect(function()
  204. loadstring(game:HttpGet(('https://hastebin.com/raw/uyipiqaziv.css'),true))()
  205. end)
  206.  
  207. JewelryTop.Name = "JewelryTop"
  208. JewelryTop.Parent = PlacesFrame
  209. JewelryTop.BackgroundColor3 = Color3.new(0, 0, 0)
  210. JewelryTop.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  211. JewelryTop.Position = UDim2.new(0.677339911, 0, 0.0344827585, 0)
  212. JewelryTop.Size = UDim2.new(0, 124, 0, 21)
  213. JewelryTop.Font = Enum.Font.SourceSans
  214. JewelryTop.Text = "Jewelry Top"
  215. JewelryTop.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  216. JewelryTop.TextSize = 14
  217. JewelryTop.MouseButton1Click:Connect(function()
  218. loadstring(game:HttpGet(('https://hastebin.com/raw/tahexebago.css'),true))()
  219. end)
  220.  
  221. PrisonYard.Name = "PrisonYard"
  222. PrisonYard.Parent = PlacesFrame
  223. PrisonYard.BackgroundColor3 = Color3.new(0, 0, 0)
  224. PrisonYard.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  225. PrisonYard.Position = UDim2.new(0.0160098523, 0, 0.167487681, 0)
  226. PrisonYard.Size = UDim2.new(0, 124, 0, 21)
  227. PrisonYard.Font = Enum.Font.SourceSans
  228. PrisonYard.Text = "Prison Yard"
  229. PrisonYard.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  230. PrisonYard.TextSize = 14
  231. PrisonYard.MouseButton1Click:Connect(function()
  232. loadstring(game:HttpGet(('https://hastebin.com/raw/lemekagiqa.css'),true))()
  233. end)
  234.  
  235. BankOutside.Name = "BankOutside"
  236. BankOutside.Parent = PlacesFrame
  237. BankOutside.BackgroundColor3 = Color3.new(0, 0, 0)
  238. BankOutside.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  239. BankOutside.Position = UDim2.new(0.346059084, 0, 0.167487681, 0)
  240. BankOutside.Size = UDim2.new(0, 124, 0, 21)
  241. BankOutside.Font = Enum.Font.SourceSans
  242. BankOutside.Text = "Bank Outside"
  243. BankOutside.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  244. BankOutside.TextSize = 14
  245. BankOutside.MouseButton1Click:Connect(function()
  246. loadstring(game:HttpGet(('https://hastebin.com/raw/iyiloracuf.css'),true))()
  247. end)
  248.  
  249. GunStore.Name = "GunStore"
  250. GunStore.Parent = PlacesFrame
  251. GunStore.BackgroundColor3 = Color3.new(0, 0, 0)
  252. GunStore.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  253. GunStore.Position = UDim2.new(0.677339911, 0, 0.167487681, 0)
  254. GunStore.Size = UDim2.new(0, 124, 0, 21)
  255. GunStore.Font = Enum.Font.SourceSans
  256. GunStore.Text = "Gun Store"
  257. GunStore.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  258. GunStore.TextSize = 14
  259. GunStore.MouseButton1Click:Connect(function()
  260. loadstring(game:HttpGet(('https://hastebin.com/raw/sazamavoso.css'),true))()
  261. end)
  262.  
  263. PrisonCafe.Name = "PrisonCafe"
  264. PrisonCafe.Parent = PlacesFrame
  265. PrisonCafe.BackgroundColor3 = Color3.new(0, 0, 0)
  266. PrisonCafe.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  267. PrisonCafe.Position = UDim2.new(0.0160098523, 0, 0.300492585, 0)
  268. PrisonCafe.Size = UDim2.new(0, 124, 0, 21)
  269. PrisonCafe.Font = Enum.Font.SourceSans
  270. PrisonCafe.Text = "Prison Cafe"
  271. PrisonCafe.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  272. PrisonCafe.TextSize = 14
  273. PrisonCafe.MouseButton1Click:Connect(function()
  274. loadstring(game:HttpGet(('https://hastebin.com/raw/buxocagoto.css'),true))()
  275. end)
  276.  
  277. BankInside.Name = "BankInside"
  278. BankInside.Parent = PlacesFrame
  279. BankInside.BackgroundColor3 = Color3.new(0, 0, 0)
  280. BankInside.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  281. BankInside.Position = UDim2.new(0.346059084, 0, 0.300492585, 0)
  282. BankInside.Size = UDim2.new(0, 124, 0, 21)
  283. BankInside.Font = Enum.Font.SourceSans
  284. BankInside.Text = "Bank Inside"
  285. BankInside.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  286. BankInside.TextSize = 14
  287. BankInside.MouseButton1Click:Connect(function()
  288. loadstring(game:HttpGet(('https://hastebin.com/raw/ocasadonet.css'),true))()
  289. end)
  290.  
  291. ParaglideStore.Name = "ParaglideStore"
  292. ParaglideStore.Parent = PlacesFrame
  293. ParaglideStore.BackgroundColor3 = Color3.new(0, 0, 0)
  294. ParaglideStore.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  295. ParaglideStore.Position = UDim2.new(0.677339911, 0, 0.300492585, 0)
  296. ParaglideStore.Size = UDim2.new(0, 124, 0, 21)
  297. ParaglideStore.Font = Enum.Font.SourceSans
  298. ParaglideStore.Text = "Paraglide Store"
  299. ParaglideStore.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  300. ParaglideStore.TextSize = 14
  301. ParaglideStore.MouseButton1Click:Connect(function()
  302. loadstring(game:HttpGet(('https://hastebin.com/raw/lovolezuju.css'),true))()
  303. end)
  304.  
  305. SecurityCenter.Name = "SecurityCenter"
  306. SecurityCenter.Parent = PlacesFrame
  307. SecurityCenter.BackgroundColor3 = Color3.new(0, 0, 0)
  308. SecurityCenter.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  309. SecurityCenter.Position = UDim2.new(0.0160098523, 0, 0.448275834, 0)
  310. SecurityCenter.Size = UDim2.new(0, 124, 0, 21)
  311. SecurityCenter.Font = Enum.Font.SourceSans
  312. SecurityCenter.Text = "Security Center"
  313. SecurityCenter.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  314. SecurityCenter.TextSize = 14
  315. SecurityCenter.MouseButton1Click:Connect(function()
  316. loadstring(game:HttpGet(('https://hastebin.com/raw/zusaqasopi.css'),true))()
  317. end)
  318.  
  319. BankTop.Name = "BankTop"
  320. BankTop.Parent = PlacesFrame
  321. BankTop.BackgroundColor3 = Color3.new(0, 0, 0)
  322. BankTop.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  323. BankTop.Position = UDim2.new(0.346059084, 0, 0.448275834, 0)
  324. BankTop.Size = UDim2.new(0, 124, 0, 21)
  325. BankTop.Font = Enum.Font.SourceSans
  326. BankTop.Text = "Bank Top"
  327. BankTop.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  328. BankTop.TextSize = 14
  329. BankTop.MouseButton1Click:Connect(function()
  330. loadstring(game:HttpGet(('https://hastebin.com/raw/tihicaheku.css'),true))()
  331. end)
  332.  
  333. Garage1.Name = "Garage1"
  334. Garage1.Parent = PlacesFrame
  335. Garage1.BackgroundColor3 = Color3.new(0, 0, 0)
  336. Garage1.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  337. Garage1.Position = UDim2.new(0.677339911, 0, 0.448275834, 0)
  338. Garage1.Size = UDim2.new(0, 124, 0, 21)
  339. Garage1.Font = Enum.Font.SourceSans
  340. Garage1.Text = "Garage 1"
  341. Garage1.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  342. Garage1.TextSize = 14
  343. Garage1.MouseButton1Click:Connect(function()
  344. loadstring(game:HttpGet(('https://hastebin.com/raw/idikucahut.css'),true))()
  345. end)
  346.  
  347. PoliceHQ1.Name = "PoliceHQ1"
  348. PoliceHQ1.Parent = PlacesFrame
  349. PoliceHQ1.BackgroundColor3 = Color3.new(0, 0, 0)
  350. PoliceHQ1.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  351. PoliceHQ1.Position = UDim2.new(0.0160098523, 0, 0.586206853, 0)
  352. PoliceHQ1.Size = UDim2.new(0, 124, 0, 21)
  353. PoliceHQ1.Font = Enum.Font.SourceSans
  354. PoliceHQ1.Text = "Police HQ 1"
  355. PoliceHQ1.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  356. PoliceHQ1.TextSize = 14
  357. PoliceHQ1.MouseButton1Click:Connect(function()
  358. loadstring(game:HttpGet(('https://hastebin.com/raw/nihegezuji.css'),true))()
  359. end)
  360.  
  361. Vault.Name = "Vault"
  362. Vault.Parent = PlacesFrame
  363. Vault.BackgroundColor3 = Color3.new(0, 0, 0)
  364. Vault.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  365. Vault.Position = UDim2.new(0.346059084, 0, 0.586206853, 0)
  366. Vault.Size = UDim2.new(0, 124, 0, 21)
  367. Vault.Font = Enum.Font.SourceSans
  368. Vault.Text = "Vault"
  369. Vault.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  370. Vault.TextSize = 14
  371. Vault.MouseButton1Click:Connect(function()
  372. loadstring(game:HttpGet(('https://hastebin.com/raw/cebohafeqi.css'),true))()
  373. end)
  374.  
  375. Garage2.Name = "Garage2"
  376. Garage2.Parent = PlacesFrame
  377. Garage2.BackgroundColor3 = Color3.new(0, 0, 0)
  378. Garage2.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  379. Garage2.Position = UDim2.new(0.677339911, 0, 0.586206853, 0)
  380. Garage2.Size = UDim2.new(0, 124, 0, 21)
  381. Garage2.Font = Enum.Font.SourceSans
  382. Garage2.Text = "Garage 2"
  383. Garage2.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  384. Garage2.TextSize = 14
  385. Garage2.MouseButton1Click:Connect(function()
  386. loadstring(game:HttpGet(('https://hastebin.com/raw/koxifuleve.css'),true))()
  387. end)
  388.  
  389. PoliceHQ2.Name = "PoliceHQ2"
  390. PoliceHQ2.Parent = PlacesFrame
  391. PoliceHQ2.BackgroundColor3 = Color3.new(0, 0, 0)
  392. PoliceHQ2.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  393. PoliceHQ2.Position = UDim2.new(0.0160098523, 0, 0.719211757, 0)
  394. PoliceHQ2.Size = UDim2.new(0, 124, 0, 21)
  395. PoliceHQ2.Font = Enum.Font.SourceSans
  396. PoliceHQ2.Text = "Police HQ 2"
  397. PoliceHQ2.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  398. PoliceHQ2.TextSize = 14
  399. PoliceHQ2.MouseButton1Click:Connect(function()
  400. loadstring(game:HttpGet(('https://hastebin.com/raw/wonukuvuli.css'),true))()
  401. end)
  402.  
  403. JewelryOutside.Name = "JewelryOutside"
  404. JewelryOutside.Parent = PlacesFrame
  405. JewelryOutside.BackgroundColor3 = Color3.new(0, 0, 0)
  406. JewelryOutside.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  407. JewelryOutside.Position = UDim2.new(0.346059084, 0, 0.719211757, 0)
  408. JewelryOutside.Size = UDim2.new(0, 124, 0, 21)
  409. JewelryOutside.Font = Enum.Font.SourceSans
  410. JewelryOutside.Text = "Jewelry Outside"
  411. JewelryOutside.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  412. JewelryOutside.TextSize = 14
  413. JewelryOutside.MouseButton1Click:Connect(function()
  414. loadstring(game:HttpGet(('https://hastebin.com/raw/ziyahifufe.css'),true))()
  415. end)
  416.  
  417. RadioTower.Name = "RadioTower"
  418. RadioTower.Parent = PlacesFrame
  419. RadioTower.BackgroundColor3 = Color3.new(0, 0, 0)
  420. RadioTower.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  421. RadioTower.Position = UDim2.new(0.677339911, 0, 0.719211757, 0)
  422. RadioTower.Size = UDim2.new(0, 124, 0, 21)
  423. RadioTower.Font = Enum.Font.SourceSans
  424. RadioTower.Text = "Radio Tower"
  425. RadioTower.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  426. RadioTower.TextSize = 14
  427. RadioTower.MouseButton1Click:Connect(function()
  428. loadstring(game:HttpGet(('https://hastebin.com/raw/enunixuhuv.css'),true))()
  429. end)
  430.  
  431. CiminalHQ.Name = "CiminalHQ"
  432. CiminalHQ.Parent = PlacesFrame
  433. CiminalHQ.BackgroundColor3 = Color3.new(0, 0, 0)
  434. CiminalHQ.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  435. CiminalHQ.Position = UDim2.new(0.0160098523, 0, 0.852216661, 0)
  436. CiminalHQ.Size = UDim2.new(0, 124, 0, 21)
  437. CiminalHQ.Font = Enum.Font.SourceSans
  438. CiminalHQ.Text = "Criminal HQ"
  439. CiminalHQ.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  440. CiminalHQ.TextSize = 14
  441. CiminalHQ.MouseButton1Click:Connect(function()
  442. loadstring(game:HttpGet(('https://hastebin.com/raw/xulunuzozu.css'),true))()
  443. end)
  444.  
  445. JewelryInside.Name = "JewelryInside"
  446. JewelryInside.Parent = PlacesFrame
  447. JewelryInside.BackgroundColor3 = Color3.new(0, 0, 0)
  448. JewelryInside.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  449. JewelryInside.Position = UDim2.new(0.346059084, 0, 0.852216661, 0)
  450. JewelryInside.Size = UDim2.new(0, 124, 0, 21)
  451. JewelryInside.Font = Enum.Font.SourceSans
  452. JewelryInside.Text = "Jewelry Inside"
  453. JewelryInside.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  454. JewelryInside.TextSize = 14
  455. JewelryInside.MouseButton1Click:Connect(function()
  456. loadstring(game:HttpGet(('https://hastebin.com/raw/kifuweyata.css'),true))()
  457. end)
  458.  
  459. RadioTowerTop.Name = "RadioTowerTop"
  460. RadioTowerTop.Parent = PlacesFrame
  461. RadioTowerTop.BackgroundColor3 = Color3.new(0, 0, 0)
  462. RadioTowerTop.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  463. RadioTowerTop.Position = UDim2.new(0.677339911, 0, 0.852216661, 0)
  464. RadioTowerTop.Size = UDim2.new(0, 124, 0, 21)
  465. RadioTowerTop.Font = Enum.Font.SourceSans
  466. RadioTowerTop.Text = "Radio Tower Top"
  467. RadioTowerTop.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  468. RadioTowerTop.TextSize = 14
  469. RadioTowerTop.MouseButton1Click:Connect(function()
  470. loadstring(game:HttpGet(('https://hastebin.com/raw/qiqusihugo.css'),true))()
  471. end)
  472.  
  473. MorePlacesFrame.Name = "MorePlacesFrame"
  474. MorePlacesFrame.Parent = Mainframe
  475. MorePlacesFrame.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  476. MorePlacesFrame.BorderColor3 = Color3.new(0, 0, 0)
  477. MorePlacesFrame.Position = UDim2.new(0, 0, 0.0772727132, 0)
  478. MorePlacesFrame.Size = UDim2.new(0, 406, 0, 203)
  479.  
  480. GasStation.Name = "GasStation"
  481. GasStation.Parent = MorePlacesFrame
  482. GasStation.BackgroundColor3 = Color3.new(0, 0, 0)
  483. GasStation.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  484. GasStation.Position = UDim2.new(0.0160098523, 0, 0.0344827585, 0)
  485. GasStation.Size = UDim2.new(0, 124, 0, 21)
  486. GasStation.Font = Enum.Font.SourceSans
  487. GasStation.Text = "Gas Station"
  488. GasStation.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  489. GasStation.TextSize = 14
  490. GasStation.MouseButton1Click:Connect(function()
  491. loadstring(game:HttpGet(('https://hastebin.com/raw/egoduhucad.css'),true))()
  492. end)
  493.  
  494. DonutShop.Name = "DonutShop"
  495. DonutShop.Parent = MorePlacesFrame
  496. DonutShop.BackgroundColor3 = Color3.new(0, 0, 0)
  497. DonutShop.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  498. DonutShop.Position = UDim2.new(0.346059084, 0, 0.0344827585, 0)
  499. DonutShop.Size = UDim2.new(0, 124, 0, 21)
  500. DonutShop.Font = Enum.Font.SourceSans
  501. DonutShop.Text = "Donut Shop"
  502. DonutShop.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  503. DonutShop.TextSize = 14
  504. DonutShop.MouseButton1Click:Connect(function()
  505. loadstring(game:HttpGet(('https://hastebin.com/raw/isituyabon.css'),true))()
  506. end)
  507.  
  508. TrainStation.Name = "TrainStation"
  509. TrainStation.Parent = MorePlacesFrame
  510. TrainStation.BackgroundColor3 = Color3.new(0, 0, 0)
  511. TrainStation.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  512. TrainStation.Position = UDim2.new(0.677339911, 0, 0.0344827585, 0)
  513. TrainStation.Size = UDim2.new(0, 124, 0, 21)
  514. TrainStation.Font = Enum.Font.SourceSans
  515. TrainStation.Text = "Train Station"
  516. TrainStation.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  517. TrainStation.TextSize = 14
  518. TrainStation.MouseButton1Click:Connect(function()
  519. loadstring(game:HttpGet(('https://hastebin.com/raw/akepamaxaq.css'),true))()
  520. end)
  521.  
  522. PrisonFront.Name = "PrisonFront"
  523. PrisonFront.Parent = MorePlacesFrame
  524. PrisonFront.BackgroundColor3 = Color3.new(0, 0, 0)
  525. PrisonFront.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  526. PrisonFront.Position = UDim2.new(0.0160098523, 0, 0.167487681, 0)
  527. PrisonFront.Size = UDim2.new(0, 124, 0, 21)
  528. PrisonFront.Font = Enum.Font.SourceSans
  529. PrisonFront.Text = "Prison Front"
  530. PrisonFront.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  531. PrisonFront.TextSize = 14
  532. PrisonFront.MouseButton1Click:Connect(function()
  533. loadstring(game:HttpGet(('https://hastebin.com/raw/ahasoqawol.css'),true))()
  534. end)
  535.  
  536. PrisonTop.Name = "PrisonTop"
  537. PrisonTop.Parent = MorePlacesFrame
  538. PrisonTop.BackgroundColor3 = Color3.new(0, 0, 0)
  539. PrisonTop.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  540. PrisonTop.Position = UDim2.new(0.346059084, 0, 0.167487681, 0)
  541. PrisonTop.Size = UDim2.new(0, 124, 0, 21)
  542. PrisonTop.Font = Enum.Font.SourceSans
  543. PrisonTop.Text = "Prison Top"
  544. PrisonTop.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  545. PrisonTop.TextSize = 14
  546. PrisonTop.MouseButton1Click:Connect(function()
  547. loadstring(game:HttpGet(('https://hastebin.com/raw/uvomufubut.css'),true))()
  548. end)
  549.  
  550. TrainStation2.Name = "TrainStation2"
  551. TrainStation2.Parent = MorePlacesFrame
  552. TrainStation2.BackgroundColor3 = Color3.new(0, 0, 0)
  553. TrainStation2.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  554. TrainStation2.Position = UDim2.new(0.677339911, 0, 0.167487681, 0)
  555. TrainStation2.Size = UDim2.new(0, 124, 0, 21)
  556. TrainStation2.Font = Enum.Font.SourceSans
  557. TrainStation2.Text = "Train Station 2"
  558. TrainStation2.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  559. TrainStation2.TextSize = 14
  560. TrainStation2.MouseButton1Click:Connect(function()
  561. loadstring(game:HttpGet(('https://hastebin.com/raw/rivifatuxa.css'),true))()
  562. end)
  563.  
  564. Suburbs.Name = "Suburbs"
  565. Suburbs.Parent = MorePlacesFrame
  566. Suburbs.BackgroundColor3 = Color3.new(0, 0, 0)
  567. Suburbs.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  568. Suburbs.Position = UDim2.new(0.0160098523, 0, 0.300492585, 0)
  569. Suburbs.Size = UDim2.new(0, 124, 0, 21)
  570. Suburbs.Font = Enum.Font.SourceSans
  571. Suburbs.Text = "Suburbs"
  572. Suburbs.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  573. Suburbs.TextSize = 14
  574. Suburbs.MouseButton1Click:Connect(function()
  575. loadstring(game:HttpGet(('https://hastebin.com/raw/rugapiwoju.css'),true))()
  576. end)
  577.  
  578. SpaceZ.Name = "SpaceZ"
  579. SpaceZ.Parent = MorePlacesFrame
  580. SpaceZ.BackgroundColor3 = Color3.new(0, 0, 0)
  581. SpaceZ.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  582. SpaceZ.Position = UDim2.new(0.346059084, 0, 0.300492585, 0)
  583. SpaceZ.Size = UDim2.new(0, 124, 0, 21)
  584. SpaceZ.Font = Enum.Font.SourceSans
  585. SpaceZ.Text = "Space Z"
  586. SpaceZ.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  587. SpaceZ.TextSize = 14
  588. SpaceZ.MouseButton1Click:Connect(function()
  589. loadstring(game:HttpGet(('https://hastebin.com/raw/ihositekib.css'),true))()
  590. end)
  591.  
  592. Apartment1.Name = "Apartment1"
  593. Apartment1.Parent = MorePlacesFrame
  594. Apartment1.BackgroundColor3 = Color3.new(0, 0, 0)
  595. Apartment1.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  596. Apartment1.Position = UDim2.new(0.677339911, 0, 0.300492585, 0)
  597. Apartment1.Size = UDim2.new(0, 124, 0, 21)
  598. Apartment1.Font = Enum.Font.SourceSans
  599. Apartment1.Text = "Apartment 1"
  600. Apartment1.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  601. Apartment1.TextSize = 14
  602. Apartment1.MouseButton1Click:Connect(function()
  603. loadstring(game:HttpGet(('https://hastebin.com/raw/ewuruziyom.css'),true))()
  604. end)
  605.  
  606. Apartment2.Name = "Apartment2"
  607. Apartment2.Parent = MorePlacesFrame
  608. Apartment2.BackgroundColor3 = Color3.new(0, 0, 0)
  609. Apartment2.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  610. Apartment2.Position = UDim2.new(0.0160098523, 0, 0.448275834, 0)
  611. Apartment2.Size = UDim2.new(0, 124, 0, 21)
  612. Apartment2.Font = Enum.Font.SourceSans
  613. Apartment2.Text = "Apartment 2"
  614. Apartment2.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  615. Apartment2.TextSize = 14
  616. Apartment2.MouseButton1Click:Connect(function()
  617. loadstring(game:HttpGet(('https://hastebin.com/raw/oradebetek.css'),true))()
  618. end)
  619.  
  620. Apartment3.Name = "Apartment3"
  621. Apartment3.Parent = MorePlacesFrame
  622. Apartment3.BackgroundColor3 = Color3.new(0, 0, 0)
  623. Apartment3.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  624. Apartment3.Position = UDim2.new(0.346059084, 0, 0.448275834, 0)
  625. Apartment3.Size = UDim2.new(0, 124, 0, 21)
  626. Apartment3.Font = Enum.Font.SourceSans
  627. Apartment3.Text = "Apartment 3"
  628. Apartment3.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  629. Apartment3.TextSize = 14
  630. Apartment3.MouseButton1Click:Connect(function()
  631. loadstring(game:HttpGet(('https://hastebin.com/raw/luvozoqeve.css'),true))()
  632. end)
  633.  
  634. Apartment4.Name = "Apartment4"
  635. Apartment4.Parent = MorePlacesFrame
  636. Apartment4.BackgroundColor3 = Color3.new(0, 0, 0)
  637. Apartment4.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  638. Apartment4.Position = UDim2.new(0.677339911, 0, 0.448275834, 0)
  639. Apartment4.Size = UDim2.new(0, 124, 0, 21)
  640. Apartment4.Font = Enum.Font.SourceSans
  641. Apartment4.Text = "Apartment 4"
  642. Apartment4.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  643. Apartment4.TextSize = 14
  644. Apartment4.MouseButton1Click:Connect(function()
  645. loadstring(game:HttpGet(('https://hastebin.com/raw/jebexopidi.css'),true))()
  646. end)
  647.  
  648. Apartment5.Name = "Apartment5"
  649. Apartment5.Parent = MorePlacesFrame
  650. Apartment5.BackgroundColor3 = Color3.new(0, 0, 0)
  651. Apartment5.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  652. Apartment5.Position = UDim2.new(0.0160098523, 0, 0.586206853, 0)
  653. Apartment5.Size = UDim2.new(0, 124, 0, 21)
  654. Apartment5.Font = Enum.Font.SourceSans
  655. Apartment5.Text = "Apartment 5"
  656. Apartment5.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  657. Apartment5.TextSize = 14
  658. Apartment5.MouseButton1Click:Connect(function()
  659. loadstring(game:HttpGet(('https://hastebin.com/raw/ukapejejos.css'),true))()
  660. end)
  661.  
  662. PoliceCamp.Name = "PoliceCamp"
  663. PoliceCamp.Parent = MorePlacesFrame
  664. PoliceCamp.BackgroundColor3 = Color3.new(0, 0, 0)
  665. PoliceCamp.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  666. PoliceCamp.Position = UDim2.new(0.346059084, 0, 0.586206853, 0)
  667. PoliceCamp.Size = UDim2.new(0, 124, 0, 21)
  668. PoliceCamp.Font = Enum.Font.SourceSans
  669. PoliceCamp.Text = "Police Camp"
  670. PoliceCamp.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  671. PoliceCamp.TextSize = 14
  672. PoliceCamp.MouseButton1Click:Connect(function()
  673. loadstring(game:HttpGet(('https://hastebin.com/raw/esipeworuq.css'),true))()
  674. end)
  675.  
  676. Sewers.Name = "Sewers"
  677. Sewers.Parent = MorePlacesFrame
  678. Sewers.BackgroundColor3 = Color3.new(0, 0, 0)
  679. Sewers.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  680. Sewers.Position = UDim2.new(0.677339911, 0, 0.586206853, 0)
  681. Sewers.Size = UDim2.new(0, 124, 0, 21)
  682. Sewers.Font = Enum.Font.SourceSans
  683. Sewers.Text = "Sewers"
  684. Sewers.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  685. Sewers.TextSize = 14
  686. Sewers.MouseButton1Click:Connect(function()
  687. loadstring(game:HttpGet(('https://hastebin.com/raw/ukumijobak.css'),true))()
  688. end)
  689.  
  690. VehiclesFrame.Name = "VehiclesFrame"
  691. VehiclesFrame.Parent = Mainframe
  692. VehiclesFrame.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  693. VehiclesFrame.BorderColor3 = Color3.new(0, 0, 0)
  694. VehiclesFrame.Position = UDim2.new(0, 0, 0.0772727132, 0)
  695. VehiclesFrame.Size = UDim2.new(0, 406, 0, 203)
  696.  
  697. Helicopter1.Name = "Helicopter1"
  698. Helicopter1.Parent = VehiclesFrame
  699. Helicopter1.BackgroundColor3 = Color3.new(0, 0, 0)
  700. Helicopter1.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  701. Helicopter1.Position = UDim2.new(0.0160098523, 0, 0.0344827585, 0)
  702. Helicopter1.Size = UDim2.new(0, 124, 0, 21)
  703. Helicopter1.Font = Enum.Font.SourceSans
  704. Helicopter1.Text = "Helicopter 1"
  705. Helicopter1.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  706. Helicopter1.TextSize = 14
  707. Helicopter1.MouseButton1Click:Connect(function()
  708. loadstring(game:HttpGet(('https://hastebin.com/raw/giqaxahowo.css'),true))()
  709. end)
  710.  
  711. Helicopter2.Name = "Helicopter2"
  712. Helicopter2.Parent = VehiclesFrame
  713. Helicopter2.BackgroundColor3 = Color3.new(0, 0, 0)
  714. Helicopter2.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  715. Helicopter2.Position = UDim2.new(0.346059084, 0, 0.0344827585, 0)
  716. Helicopter2.Size = UDim2.new(0, 124, 0, 21)
  717. Helicopter2.Font = Enum.Font.SourceSans
  718. Helicopter2.Text = "Helicopter 2"
  719. Helicopter2.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  720. Helicopter2.TextSize = 14
  721. Helicopter2.MouseButton1Click:Connect(function()
  722. loadstring(game:HttpGet(('https://hastebin.com/raw/ogebowuqey.css'),true))()
  723. end)
  724.  
  725. PoliceCar.Name = "PoliceCar"
  726. PoliceCar.Parent = VehiclesFrame
  727. PoliceCar.BackgroundColor3 = Color3.new(0, 0, 0)
  728. PoliceCar.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  729. PoliceCar.Position = UDim2.new(0.677339911, 0, 0.0344827585, 0)
  730. PoliceCar.Size = UDim2.new(0, 124, 0, 21)
  731. PoliceCar.Font = Enum.Font.SourceSans
  732. PoliceCar.Text = "Police Car"
  733. PoliceCar.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  734. PoliceCar.TextSize = 14
  735. PoliceCar.MouseButton1Click:Connect(function()
  736. loadstring(game:HttpGet(('https://hastebin.com/raw/asulerekat.css'),true))()
  737. end)
  738.  
  739. PoliceExplorer.Name = "PoliceExplorer"
  740. PoliceExplorer.Parent = VehiclesFrame
  741. PoliceExplorer.BackgroundColor3 = Color3.new(0, 0, 0)
  742. PoliceExplorer.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  743. PoliceExplorer.Position = UDim2.new(0.0160098523, 0, 0.167487681, 0)
  744. PoliceExplorer.Size = UDim2.new(0, 124, 0, 21)
  745. PoliceExplorer.Font = Enum.Font.SourceSans
  746. PoliceExplorer.Text = "Police Explorer"
  747. PoliceExplorer.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  748. PoliceExplorer.TextSize = 14
  749. PoliceExplorer.MouseButton1Click:Connect(function()
  750. loadstring(game:HttpGet(('https://hastebin.com/raw/onanorurir.css'),true))()
  751. end)
  752.  
  753. SwatCar.Name = "SwatCar"
  754. SwatCar.Parent = VehiclesFrame
  755. SwatCar.BackgroundColor3 = Color3.new(0, 0, 0)
  756. SwatCar.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  757. SwatCar.Position = UDim2.new(0.346059084, 0, 0.167487681, 0)
  758. SwatCar.Size = UDim2.new(0, 124, 0, 21)
  759. SwatCar.Font = Enum.Font.SourceSans
  760. SwatCar.Text = "SWAT car"
  761. SwatCar.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  762. SwatCar.TextSize = 14
  763. SwatCar.MouseButton1Click:Connect(function()
  764. loadstring(game:HttpGet(('https://hastebin.com/raw/ihoguvaxom.css'),true))()
  765. end)
  766.  
  767. StartingCar.Name = "StartingCar"
  768. StartingCar.Parent = VehiclesFrame
  769. StartingCar.BackgroundColor3 = Color3.new(0, 0, 0)
  770. StartingCar.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  771. StartingCar.Position = UDim2.new(0.677339911, 0, 0.167487681, 0)
  772. StartingCar.Size = UDim2.new(0, 124, 0, 21)
  773. StartingCar.Font = Enum.Font.SourceSans
  774. StartingCar.Text = "Starting Car"
  775. StartingCar.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  776. StartingCar.TextSize = 14
  777. StartingCar.MouseButton1Click:Connect(function()
  778. loadstring(game:HttpGet(('https://hastebin.com/raw/watadicazi.css'),true))()
  779. end)
  780.  
  781. Truck.Name = "Truck"
  782. Truck.Parent = VehiclesFrame
  783. Truck.BackgroundColor3 = Color3.new(0, 0, 0)
  784. Truck.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  785. Truck.Position = UDim2.new(0.0160098523, 0, 0.300492585, 0)
  786. Truck.Size = UDim2.new(0, 124, 0, 21)
  787. Truck.Font = Enum.Font.SourceSans
  788. Truck.Text = "Truck"
  789. Truck.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  790. Truck.TextSize = 14
  791. Truck.MouseButton1Click:Connect(function()
  792. loadstring(game:HttpGet(('https://hastebin.com/raw/xizuxusewe.css'),true))()
  793. end)
  794.  
  795. MonsterTruck.Name = "MonsterTruck"
  796. MonsterTruck.Parent = VehiclesFrame
  797. MonsterTruck.BackgroundColor3 = Color3.new(0, 0, 0)
  798. MonsterTruck.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  799. MonsterTruck.Position = UDim2.new(0.346059084, 0, 0.300492585, 0)
  800. MonsterTruck.Size = UDim2.new(0, 124, 0, 21)
  801. MonsterTruck.Font = Enum.Font.SourceSans
  802. MonsterTruck.Text = "Monster Truck"
  803. MonsterTruck.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  804. MonsterTruck.TextSize = 14
  805. MonsterTruck.MouseButton1Click:Connect(function()
  806. loadstring(game:HttpGet(('https://hastebin.com/raw/adidudisal.css'),true))()
  807. end)
  808.  
  809. UFO.Name = "UFO"
  810. UFO.Parent = VehiclesFrame
  811. UFO.BackgroundColor3 = Color3.new(0, 0, 0)
  812. UFO.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  813. UFO.Position = UDim2.new(0.677339911, 0, 0.300492585, 0)
  814. UFO.Size = UDim2.new(0, 124, 0, 21)
  815. UFO.Font = Enum.Font.SourceSans
  816. UFO.Text = "UFO"
  817. UFO.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  818. UFO.TextSize = 14
  819. UFO.MouseButton1Click:Connect(function()
  820. loadstring(game:HttpGet(('https://hastebin.com/avoxodidom.css'),true))()
  821. end)
  822.  
  823. DuneBuggy.Name = "DuneBuggy"
  824. DuneBuggy.Parent = VehiclesFrame
  825. DuneBuggy.BackgroundColor3 = Color3.new(0, 0, 0)
  826. DuneBuggy.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  827. DuneBuggy.Position = UDim2.new(0.0160098523, 0, 0.448275834, 0)
  828. DuneBuggy.Size = UDim2.new(0, 124, 0, 21)
  829. DuneBuggy.Font = Enum.Font.SourceSans
  830. DuneBuggy.Text = "Dune Buggy"
  831. DuneBuggy.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  832. DuneBuggy.TextSize = 14
  833. DuneBuggy.MouseButton1Click:Connect(function()
  834. loadstring(game:HttpGet(('https://hastebin.com/raw/kikirumefo.css'),true))()
  835. end)
  836.  
  837. Bike.Name = "Bike"
  838. Bike.Parent = VehiclesFrame
  839. Bike.BackgroundColor3 = Color3.new(0, 0, 0)
  840. Bike.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  841. Bike.Position = UDim2.new(0.346059084, 0, 0.448275834, 0)
  842. Bike.Size = UDim2.new(0, 124, 0, 21)
  843. Bike.Font = Enum.Font.SourceSans
  844. Bike.Text = "Bike"
  845. Bike.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  846. Bike.TextSize = 14
  847. Bike.MouseButton1Click:Connect(function()
  848. loadstring(game:HttpGet(('https://hastebin.com/raw/vakapecedi.css'),true))()
  849. end)
  850.  
  851. Ferarri.Name = "Ferarri"
  852. Ferarri.Parent = VehiclesFrame
  853. Ferarri.BackgroundColor3 = Color3.new(0, 0, 0)
  854. Ferarri.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  855. Ferarri.Position = UDim2.new(0.677339911, 0, 0.448275834, 0)
  856. Ferarri.Size = UDim2.new(0, 124, 0, 21)
  857. Ferarri.Font = Enum.Font.SourceSans
  858. Ferarri.Text = "Ferarri"
  859. Ferarri.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  860. Ferarri.TextSize = 14
  861. Ferarri.MouseButton1Click:Connect(function()
  862. loadstring(game:HttpGet(('https://hastebin.com/raw/jasinedoge.css'),true))()
  863. end)
  864.  
  865. ExtraFrame.Name = "ExtraFrame"
  866. ExtraFrame.Parent = Mainframe
  867. ExtraFrame.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  868. ExtraFrame.BorderColor3 = Color3.new(0, 0, 0)
  869. ExtraFrame.Position = UDim2.new(0, 0, 0.0772727132, 0)
  870. ExtraFrame.Size = UDim2.new(0, 406, 0, 203)
  871.  
  872. RemoveDoors.Name = "RemoveDoors"
  873. RemoveDoors.Parent = ExtraFrame
  874. RemoveDoors.BackgroundColor3 = Color3.new(0, 0, 0)
  875. RemoveDoors.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  876. RemoveDoors.Position = UDim2.new(0.0160098523, 0, 0.0344827585, 0)
  877. RemoveDoors.Size = UDim2.new(0, 124, 0, 21)
  878. RemoveDoors.Font = Enum.Font.SourceSans
  879. RemoveDoors.Text = "Remove Doors"
  880. RemoveDoors.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  881. RemoveDoors.TextSize = 14
  882. RemoveDoors.MouseButton1Click:Connect(function()
  883. workspace.Doors:Remove()
  884. end)
  885.  
  886. RemoveTrees.Name = "RemoveTrees"
  887. RemoveTrees.Parent = ExtraFrame
  888. RemoveTrees.BackgroundColor3 = Color3.new(0, 0, 0)
  889. RemoveTrees.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  890. RemoveTrees.Position = UDim2.new(0.346059084, 0, 0.0344827585, 0)
  891. RemoveTrees.Size = UDim2.new(0, 124, 0, 21)
  892. RemoveTrees.Font = Enum.Font.SourceSans
  893. RemoveTrees.Text = "Remove Trees"
  894. RemoveTrees.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  895. RemoveTrees.TextSize = 14
  896. RemoveTrees.MouseButton1Click:Connect(function()
  897. workspace.Trees:Remove()
  898. end)
  899.  
  900. RemoveBuildings.Name = "RemoveBuildings"
  901. RemoveBuildings.Parent = ExtraFrame
  902. RemoveBuildings.BackgroundColor3 = Color3.new(0, 0, 0)
  903. RemoveBuildings.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  904. RemoveBuildings.Position = UDim2.new(0.677339911, 0, 0.0344827585, 0)
  905. RemoveBuildings.Size = UDim2.new(0, 124, 0, 21)
  906. RemoveBuildings.Font = Enum.Font.SourceSans
  907. RemoveBuildings.Text = "Remove Buildings"
  908. RemoveBuildings.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  909. RemoveBuildings.TextSize = 14
  910. RemoveBuildings.MouseButton1Click:Connect(function()
  911. workspace.Buildings:Remove()
  912. end)
  913.  
  914. TextLabel.Parent = ExtraFrame
  915. TextLabel.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  916. TextLabel.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  917. TextLabel.Position = UDim2.new(0.0172413886, 0, 0.192118213, 0)
  918. TextLabel.Size = UDim2.new(0, 124, 0, 21)
  919. TextLabel.Font = Enum.Font.SourceSans
  920. TextLabel.Text = "P - goto bank"
  921. TextLabel.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  922. TextLabel.TextSize = 14
  923.  
  924. TextLabel_2.Parent = ExtraFrame
  925. TextLabel_2.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  926. TextLabel_2.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  927. TextLabel_2.Position = UDim2.new(0.677339911, 0, 0.192118213, 0)
  928. TextLabel_2.Size = UDim2.new(0, 124, 0, 21)
  929. TextLabel_2.Font = Enum.Font.SourceSans
  930. TextLabel_2.Text = "O - goto jewelry"
  931. TextLabel_2.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  932. TextLabel_2.TextSize = 14
  933.  
  934. TextLabel_3.Parent = ExtraFrame
  935. TextLabel_3.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  936. TextLabel_3.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  937. TextLabel_3.Position = UDim2.new(0.677339911, 0, 0.330049247, 0)
  938. TextLabel_3.Size = UDim2.new(0, 124, 0, 21)
  939. TextLabel_3.Font = Enum.Font.SourceSans
  940. TextLabel_3.Text = "I - goto prison"
  941. TextLabel_3.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  942. TextLabel_3.TextSize = 14
  943.  
  944. TextLabel_4.Parent = ExtraFrame
  945. TextLabel_4.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  946. TextLabel_4.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  947. TextLabel_4.Position = UDim2.new(0.0172413886, 0, 0.330049217, 0)
  948. TextLabel_4.Size = UDim2.new(0, 124, 0, 21)
  949. TextLabel_4.Font = Enum.Font.SourceSans
  950. TextLabel_4.Text = "U - goto train spawn"
  951. TextLabel_4.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  952. TextLabel_4.TextSize = 14
  953.  
  954. TextLabel_5.Parent = ExtraFrame
  955. TextLabel_5.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  956. TextLabel_5.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  957. TextLabel_5.Position = UDim2.new(0.347290635, 0, 0.330049217, 0)
  958. TextLabel_5.Size = UDim2.new(0, 124, 0, 21)
  959. TextLabel_5.Font = Enum.Font.SourceSans
  960. TextLabel_5.Text = "Y - goto Vault"
  961. TextLabel_5.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  962. TextLabel_5.TextSize = 14
  963.  
  964. TextLabel_6.Parent = ExtraFrame
  965. TextLabel_6.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  966. TextLabel_6.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  967. TextLabel_6.Position = UDim2.new(0.0172413792, 0, 0.512315273, 0)
  968. TextLabel_6.Size = UDim2.new(0, 392, 0, 22)
  969. TextLabel_6.Font = Enum.Font.SourceSans
  970. TextLabel_6.Text = "GUI made by: Psykek#3180"
  971. TextLabel_6.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  972. TextLabel_6.TextSize = 14
  973.  
  974. TextLabel_7.Parent = ExtraFrame
  975. TextLabel_7.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  976. TextLabel_7.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  977. TextLabel_7.Position = UDim2.new(0.0172413792, 0, 0.64778316, 0)
  978. TextLabel_7.Size = UDim2.new(0, 392, 0, 22)
  979. TextLabel_7.Font = Enum.Font.SourceSans
  980. TextLabel_7.Text = "https://discord.gg/4syeV3M"
  981. TextLabel_7.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  982. TextLabel_7.TextSize = 14
  983.  
  984. TextLabel_8.Parent = ExtraFrame
  985. TextLabel_8.BackgroundColor3 = Color3.new(0.0627451, 0.0627451, 0.0627451)
  986. TextLabel_8.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  987. TextLabel_8.Position = UDim2.new(0.0160098523, 0, 0.780788064, 0)
  988. TextLabel_8.Size = UDim2.new(0, 392, 0, 22)
  989. TextLabel_8.Font = Enum.Font.SourceSans
  990. TextLabel_8.Text = "Left Control to toggle GUI"
  991. TextLabel_8.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  992. TextLabel_8.TextSize = 14
  993.  
  994. CtrlClickDestroy.Name = "CtrlClickDestroy"
  995. CtrlClickDestroy.Parent = ExtraFrame
  996. CtrlClickDestroy.BackgroundColor3 = Color3.new(0, 0, 0)
  997. CtrlClickDestroy.BorderColor3 = Color3.new(0.376471, 0.0470588, 0.541176)
  998. CtrlClickDestroy.Position = UDim2.new(0.346059084, 0, 0.192118227, 0)
  999. CtrlClickDestroy.Size = UDim2.new(0, 124, 0, 21)
  1000. CtrlClickDestroy.Font = Enum.Font.SourceSans
  1001. CtrlClickDestroy.Text = "Ctrl+Click destroy"
  1002. CtrlClickDestroy.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  1003. CtrlClickDestroy.TextSize = 14
  1004. CtrlClickDestroy.MouseButton1Click:Connect(function()
  1005. local Plr = game:GetService("Players").LocalPlayer
  1006. local Mouse = Plr:GetMouse()
  1007.  
  1008. Mouse.Button1Down:connect(function()
  1009. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  1010. if not Mouse.Target then return end
  1011. Mouse.Target:Destroy()
  1012. end)
  1013. end)
  1014.  
  1015. TextLabel_9.Parent = Topframe
  1016. TextLabel_9.BackgroundColor3 = Color3.new(0, 0, 0)
  1017. TextLabel_9.BorderColor3 = Color3.new(0, 0, 0)
  1018. TextLabel_9.BorderSizePixel = 0
  1019. TextLabel_9.Position = UDim2.new(0.16625616, 0, 0.260869563, 0)
  1020. TextLabel_9.Size = UDim2.new(0, 271, 0, 11)
  1021. TextLabel_9.Font = Enum.Font.SciFi
  1022. TextLabel_9.Text = "Jailbreak TP"
  1023. TextLabel_9.TextColor3 = Color3.new(0.698039, 0.0862745, 1)
  1024. TextLabel_9.TextSize = 14
  1025.  
  1026. function onKeyPress(inputObject, gameProcessedEvent)
  1027. if inputObject.KeyCode == Enum.KeyCode.LeftControl then
  1028. if Topframe.Visible == false then
  1029. Topframe.Visible = true
  1030. else
  1031. Topframe.Visible = false
  1032. end
  1033. end
  1034. end
  1035.  
  1036. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  1037.  
  1038. function onKeyPress(inputObject, gameProcessedEvent)
  1039. if inputObject.KeyCode == Enum.KeyCode.P then
  1040. loadstring(game:HttpGet(('https://hastebin.com/raw/iyiloracuf.css'),true))()
  1041. end
  1042. end
  1043.  
  1044. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  1045.  
  1046. function onKeyPress(inputObject, gameProcessedEvent)
  1047. if inputObject.KeyCode == Enum.KeyCode.O then
  1048. loadstring(game:HttpGet(('https://hastebin.com/raw/ziyahifufe.css'),true))()
  1049. end
  1050. end
  1051.  
  1052. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  1053.  
  1054. function onKeyPress(inputObject, gameProcessedEvent)
  1055. if inputObject.KeyCode == Enum.KeyCode.I then
  1056. loadstring(game:HttpGet(('https://hastebin.com/raw/lemekagiqa.css'),true))()
  1057. end
  1058. end
  1059.  
  1060. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  1061.  
  1062. function onKeyPress(inputObject, gameProcessedEvent)
  1063. if inputObject.KeyCode == Enum.KeyCode.U then
  1064. loadstring(game:HttpGet(('https://hastebin.com/raw/osunoducop.css'),true))()
  1065. end
  1066. end
  1067.  
  1068. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  1069.  
  1070. function onKeyPress(inputObject, gameProcessedEvent)
  1071. if inputObject.KeyCode == Enum.KeyCode.Y then
  1072. loadstring(game:HttpGet(('https://hastebin.com/raw/cebohafeqi.css'),true))()
  1073. end
  1074. end
  1075.  
  1076. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement