Theskyler900

Jailbreak hack gui (created by Draconix)

Aug 29th, 2017
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.85 KB | None | 0 0
  1. local Extraction = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local ExtractionL = Instance.new("TextLabel")
  4. local TeleportsB = Instance.new("TextButton")
  5. local ToggleablesB = Instance.new("TextButton")
  6. local Home = Instance.new("Frame")
  7. local Welcome1 = Instance.new("TextLabel")
  8. local Welcome2 = Instance.new("TextLabel")
  9. local Welcome3 = Instance.new("TextLabel")
  10. local Close = Instance.new("TextButton")
  11. local TeleportsF = Instance.new("Frame")
  12. local BankFrontB = Instance.new("TextButton")
  13. local BankVaultB = Instance.new("TextButton")
  14. local Prison = Instance.new("TextButton")
  15. local CrimBase1B = Instance.new("TextButton")
  16. local CrimBase2B = Instance.new("TextButton")
  17. local Jewl1B = Instance.new("TextButton")
  18. local Jewl2B = Instance.new("TextButton")
  19. local Jewl3B = Instance.new("TextButton")
  20. local GunStoreB = Instance.new("TextButton")
  21. local GarageB = Instance.new("TextButton")
  22. local DShopB = Instance.new("TextButton")
  23. local PoliceBaseB = Instance.new("TextButton")
  24. local PoliceBase2B = Instance.new("TextButton")
  25. local HeliB = Instance.new("TextButton")
  26. local PoliceCarsB = Instance.new("TextButton")
  27. local GasStationB = Instance.new("TextButton")
  28. local ToggleablesF = Instance.new("Frame")
  29. local WalkSpeedB = Instance.new("TextButton")
  30. local JumpPowerB = Instance.new("TextButton")
  31. local GravityB = Instance.new("TextButton")
  32. local AutoArrestB = Instance.new("TextButton")
  33. local InfAmmoB = Instance.new("TextButton")
  34. local RemoveablesB = Instance.new("TextButton")
  35. local RemoveablesF = Instance.new("Frame")
  36. local DoorsB = Instance.new("TextButton")
  37. local BankB = Instance.new("TextButton")
  38. local JewelryB = Instance.new("TextButton")
  39. local CellB = Instance.new("TextButton")
  40. local Open = Instance.new("TextButton")
  41. local Player = game.Players.LocalPlayer
  42.  
  43. Extraction.Name = "Extraction"
  44. Extraction.Parent = game.CoreGui
  45. Extraction.ResetOnSpawn = false
  46. Walk = false
  47. Jump = false
  48. Gravity = false
  49. Arrest = false
  50. InfAmmo = false
  51.  
  52. Main.Name = "Main"
  53. Main.Parent = Extraction
  54. Main.Active = true
  55. Main.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  56. Main.BorderSizePixel = 0
  57. Main.Draggable = true
  58. Main.Position = UDim2.new(0.300000012, 0, 0.300000012, 0)
  59. Main.Size = UDim2.new(0, 145, 0, 225)
  60. Main.Visible = false
  61.  
  62. ExtractionL.Name = "ExtractionL"
  63. ExtractionL.Parent = Main
  64. ExtractionL.BackgroundColor3 = Color3.new(55, 0, 102)
  65. ExtractionL.BackgroundTransparency = 1
  66. ExtractionL.BorderSizePixel = 0
  67. ExtractionL.Size = UDim2.new(0, 145, 0, 25)
  68. ExtractionL.Font = Enum.Font.SourceSansBold
  69. ExtractionL.FontSize = Enum.FontSize.Size18
  70. ExtractionL.Text = "Extraction v2.0"
  71. ExtractionL.TextColor3 = Color3.new(1, 1, 1)
  72. ExtractionL.TextSize = 18
  73.  
  74. TeleportsB.Name = "TeleportsB"
  75. TeleportsB.Parent = Main
  76. TeleportsB.BackgroundColor3 = Color3.new(55, 0, 102)
  77. TeleportsB.BorderSizePixel = 0
  78. TeleportsB.Position = UDim2.new(0, 10, 0, 35)
  79. TeleportsB.Size = UDim2.new(0, 125, 0, 25)
  80. TeleportsB.Font = Enum.Font.SourceSansBold
  81. TeleportsB.FontSize = Enum.FontSize.Size18
  82. TeleportsB.Text = "Teleports"
  83. TeleportsB.TextColor3 = Color3.new(1, 1, 1)
  84. TeleportsB.TextSize = 16
  85. TeleportsB.MouseButton1Down:connect(function()
  86. Home.Visible = false
  87. TeleportsF.Visible = true
  88. ToggleablesF.Visible = false
  89. RemoveablesF.Visible = false
  90. end)
  91.  
  92. ToggleablesB.Name = "ToggleablesB"
  93. ToggleablesB.Parent = Main
  94. ToggleablesB.BackgroundColor3 = Color3.new(55, 0, 102)
  95. ToggleablesB.BorderSizePixel = 0
  96. ToggleablesB.Position = UDim2.new(0, 10, 0, 70)
  97. ToggleablesB.Size = UDim2.new(0, 125, 0, 25)
  98. ToggleablesB.Font = Enum.Font.SourceSansBold
  99. ToggleablesB.FontSize = Enum.FontSize.Size18
  100. ToggleablesB.Text = "Toggleables"
  101. ToggleablesB.TextColor3 = Color3.new(1, 1, 1)
  102. ToggleablesB.TextSize = 16
  103. ToggleablesB.MouseButton1Down:connect(function()
  104. Home.Visible = false
  105. TeleportsF.Visible = false
  106. ToggleablesF.Visible = true
  107. RemoveablesF.Visible = false
  108. end)
  109.  
  110. Home.Name = "Home"
  111. Home.Parent = Main
  112. Home.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  113. Home.BorderSizePixel = 0
  114. Home.Position = UDim2.new(0, 145, 0, 0)
  115. Home.Size = UDim2.new(0, 415, 0, 225)
  116.  
  117. Welcome1.Name = "Welcome1"
  118. Welcome1.Parent = Home
  119. Welcome1.BackgroundColor3 = Color3.new(55, 0, 102)
  120. Welcome1.BackgroundTransparency = 1
  121. Welcome1.BorderSizePixel = 0
  122. Welcome1.Size = UDim2.new(0, 415, 0, 25)
  123. Welcome1.Font = Enum.Font.SourceSansBold
  124. Welcome1.FontSize = Enum.FontSize.Size18
  125. Welcome1.Text = "Welcome To Extraction v2.0!"
  126. Welcome1.TextColor3 = Color3.new(1, 1, 1)
  127. Welcome1.TextSize = 16
  128.  
  129. Welcome2.Name = "Welcome2"
  130. Welcome2.Parent = Home
  131. Welcome2.BackgroundColor3 = Color3.new(55, 0, 102)
  132. Welcome2.BackgroundTransparency = 1
  133. Welcome2.BorderSizePixel = 0
  134. Welcome2.Position = UDim2.new(0, 0, 0, 25)
  135. Welcome2.Size = UDim2.new(0, 415, 0, 25)
  136. Welcome2.Font = Enum.Font.SourceSansBold
  137. Welcome2.FontSize = Enum.FontSize.Size18
  138. Welcome2.Text = "Made by Draconix"
  139. Welcome2.TextColor3 = Color3.new(1, 1, 1)
  140. Welcome2.TextSize = 16
  141.  
  142. Welcome3.Name = "Welcome3"
  143. Welcome3.Parent = Home
  144. Welcome3.BackgroundColor3 = Color3.new(55, 0, 102)
  145. Welcome3.BackgroundTransparency = 1
  146. Welcome3.BorderSizePixel = 0
  147. Welcome3.Position = UDim2.new(0, 0, 0, 50)
  148. Welcome3.Size = UDim2.new(0, 415, 0, 25)
  149. Welcome3.Font = Enum.Font.SourceSansBold
  150. Welcome3.FontSize = Enum.FontSize.Size18
  151. Welcome3.Text = "Discord: [YT] Draconix#6754"
  152. Welcome3.TextColor3 = Color3.new(1, 1, 1)
  153. Welcome3.TextSize = 16
  154.  
  155. Close.Name = "Close"
  156. Close.Parent = Main
  157. Close.BackgroundColor3 = Color3.new(55, 0, 102)
  158. Close.BorderSizePixel = 0
  159. Close.Position = UDim2.new(0, 10, 0, 190)
  160. Close.Size = UDim2.new(0, 125, 0, 25)
  161. Close.Font = Enum.Font.SourceSansBold
  162. Close.FontSize = Enum.FontSize.Size18
  163. Close.Text = "Close"
  164. Close.TextColor3 = Color3.new(1, 1, 1)
  165. Close.TextSize = 16
  166. Close.MouseButton1Down:connect(function()
  167. Main.Visible = false
  168. Open.Visible = true
  169. end)
  170.  
  171. TeleportsF.Name = "TeleportsF"
  172. TeleportsF.Parent = Main
  173. TeleportsF.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  174. TeleportsF.BorderSizePixel = 0
  175. TeleportsF.Position = UDim2.new(0, 145, 0, 0)
  176. TeleportsF.Size = UDim2.new(0, 415, 0, 225)
  177. TeleportsF.Visible = false
  178.  
  179. BankFrontB.Name = "BankFrontB"
  180. BankFrontB.Parent = TeleportsF
  181. BankFrontB.BackgroundColor3 = Color3.new(55, 0, 102)
  182. BankFrontB.BorderSizePixel = 0
  183. BankFrontB.Position = UDim2.new(0, 10, 0, 10)
  184. BankFrontB.Size = UDim2.new(0, 125, 0, 25)
  185. BankFrontB.Font = Enum.Font.SourceSansBold
  186. BankFrontB.FontSize = Enum.FontSize.Size18
  187. BankFrontB.Text = "Bank Front"
  188. BankFrontB.TextColor3 = Color3.new(1, 1, 1)
  189. BankFrontB.TextSize = 16
  190. BankFrontB.MouseButton1Down:connect(function()
  191. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(9.92591476, 17.8639755, 786.788147) + Vector3.new(1,0,0)
  192. end)
  193.  
  194. BankVaultB.Name = "BankVaultB"
  195. BankVaultB.Parent = TeleportsF
  196. BankVaultB.BackgroundColor3 = Color3.new(55, 0, 102)
  197. BankVaultB.BorderSizePixel = 0
  198. BankVaultB.Position = UDim2.new(0, 10, 0, 45)
  199. BankVaultB.Size = UDim2.new(0, 125, 0, 25)
  200. BankVaultB.Font = Enum.Font.SourceSansBold
  201. BankVaultB.FontSize = Enum.FontSize.Size18
  202. BankVaultB.Text = "Bank Vault"
  203. BankVaultB.TextColor3 = Color3.new(1, 1, 1)
  204. BankVaultB.TextSize = 16
  205. BankVaultB.MouseButton1Click:connect(function()
  206. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(33.3059082,-1.67172456,803.200806) + Vector3.new(1,0,0)
  207. end)
  208.  
  209. CrimBase1B.Name = "CrimBase1B"
  210. CrimBase1B.Parent = TeleportsF
  211. CrimBase1B.BackgroundColor3 = Color3.new(55, 0, 102)
  212. CrimBase1B.BorderSizePixel = 0
  213. CrimBase1B.Position = UDim2.new(0, 280, 0, 10)
  214. CrimBase1B.Size = UDim2.new(0, 125, 0, 25)
  215. CrimBase1B.Font = Enum.Font.SourceSansBold
  216. CrimBase1B.FontSize = Enum.FontSize.Size18
  217. CrimBase1B.Text = "Small Criminal Base"
  218. CrimBase1B.TextColor3 = Color3.new(1, 1, 1)
  219. CrimBase1B.TextSize = 16
  220. CrimBase1B.MouseButton1Click:connect(function()
  221. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
  222. end)
  223.  
  224. CrimBase2B.Name = "CrimBase2B"
  225. CrimBase2B.Parent = TeleportsF
  226. CrimBase2B.BackgroundColor3 = Color3.new(55, 0, 102)
  227. CrimBase2B.BorderSizePixel = 0
  228. CrimBase2B.Position = UDim2.new(0, 280, 0, 45)
  229. CrimBase2B.Size = UDim2.new(0, 125, 0, 25)
  230. CrimBase2B.Font = Enum.Font.SourceSansBold
  231. CrimBase2B.FontSize = Enum.FontSize.Size18
  232. CrimBase2B.Text = "Big Criminal Base"
  233. CrimBase2B.TextColor3 = Color3.new(1, 1, 1)
  234. CrimBase2B.TextSize = 16
  235. CrimBase2B.MouseButton1Click:connect(function()
  236. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1818, 49, -1657.4) + Vector3.new(1,0,0)
  237. end)
  238.  
  239. Jewl1B.Name = "Jewl1B"
  240. Jewl1B.Parent = TeleportsF
  241. Jewl1B.BackgroundColor3 = Color3.new(55, 0, 102)
  242. Jewl1B.BorderSizePixel = 0
  243. Jewl1B.Position = UDim2.new(0, 145, 0, 10)
  244. Jewl1B.Size = UDim2.new(0, 125, 0, 25)
  245. Jewl1B.Font = Enum.Font.SourceSansBold
  246. Jewl1B.FontSize = Enum.FontSize.Size18
  247. Jewl1B.Text = "Jewelry Store Roof"
  248. Jewl1B.TextColor3 = Color3.new(1, 1, 1)
  249. Jewl1B.TextSize = 16
  250. Jewl1B.MouseButton1Click:connect(function()
  251. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(101.211128, 98.6576996, 1310.54175) + Vector3.new(1,0,0)
  252. end)
  253.  
  254. Jewl2B.Name = "Jewl2B"
  255. Jewl2B.Parent = TeleportsF
  256. Jewl2B.BackgroundColor3 = Color3.new(55, 0, 102)
  257. Jewl2B.BorderSizePixel = 0
  258. Jewl2B.Position = UDim2.new(0, 145, 0, 45)
  259. Jewl2B.Size = UDim2.new(0, 125, 0, 25)
  260. Jewl2B.Font = Enum.Font.SourceSansBold
  261. Jewl2B.FontSize = Enum.FontSize.Size18
  262. Jewl2B.Text = "Jewelry Store Inside"
  263. Jewl2B.TextColor3 = Color3.new(1, 1, 1)
  264. Jewl2B.TextSize = 16
  265. Jewl2B.MouseButton1Click:connect(function()
  266. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(124.339157,17.9125443,1318.82336) + Vector3.new(1,0,0)
  267. end)
  268.  
  269. Jewl3B.Name = "Jewl3B"
  270. Jewl3B.Parent = TeleportsF
  271. Jewl3B.BackgroundColor3 = Color3.new(55, 0, 102)
  272. Jewl3B.BorderSizePixel = 0
  273. Jewl3B.Position = UDim2.new(0, 145, 0, 80)
  274. Jewl3B.Size = UDim2.new(0, 125, 0, 25)
  275. Jewl3B.Font = Enum.Font.SourceSansBold
  276. Jewl3B.FontSize = Enum.FontSize.Size18
  277. Jewl3B.Text = "Jewelry Store Exit"
  278. Jewl3B.TextColor3 = Color3.new(1, 1, 1)
  279. Jewl3B.TextSize = 16
  280. Jewl3B.MouseButton1Click:connect(function()
  281. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(105,85,1322) + Vector3.new(1,0,0)
  282. end)
  283.  
  284. GunStoreB.Name = "GunStoreB"
  285. GunStoreB.Parent = TeleportsF
  286. GunStoreB.BackgroundColor3 = Color3.new(55, 0, 102)
  287. GunStoreB.BorderSizePixel = 0
  288. GunStoreB.Position = UDim2.new(0, 10, 0, 80)
  289. GunStoreB.Size = UDim2.new(0, 125, 0, 25)
  290. GunStoreB.Font = Enum.Font.SourceSansBold
  291. GunStoreB.FontSize = Enum.FontSize.Size18
  292. GunStoreB.Text = "Gun Store"
  293. GunStoreB.TextColor3 = Color3.new(1, 1, 1)
  294. GunStoreB.TextSize = 16
  295. GunStoreB.MouseButton1Click:connect(function()
  296. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-24.4, 18, -1763) + Vector3.new(1,0,0)
  297. end)
  298.  
  299. GarageB.Name = "GarageB"
  300. GarageB.Parent = TeleportsF
  301. GarageB.BackgroundColor3 = Color3.new(55, 0, 102)
  302. GarageB.BorderSizePixel = 0
  303. GarageB.Position = UDim2.new(0, 145, 0, 150)
  304. GarageB.Size = UDim2.new(0, 125, 0, 25)
  305. GarageB.Font = Enum.Font.SourceSansBold
  306. GarageB.FontSize = Enum.FontSize.Size18
  307. GarageB.Text = "Garage"
  308. GarageB.TextColor3 = Color3.new(1, 1, 1)
  309. GarageB.TextSize = 16
  310. GarageB.MouseButton1Click:connect(function()
  311. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-342.130798, 19.3135223, 1182.73669) + Vector3.new(1,0,0)
  312. end)
  313.  
  314. DShopB.Name = "DShopB"
  315. DShopB.Parent = TeleportsF
  316. DShopB.BackgroundColor3 = Color3.new(55, 0, 102)
  317. DShopB.BorderSizePixel = 0
  318. DShopB.Position = UDim2.new(0, 280, 0, 80)
  319. DShopB.Size = UDim2.new(0, 125, 0, 25)
  320. DShopB.Font = Enum.Font.SourceSansBold
  321. DShopB.FontSize = Enum.FontSize.Size18
  322. DShopB.Text = "Donut Shop"
  323. DShopB.TextColor3 = Color3.new(1, 1, 1)
  324. DShopB.TextSize = 16
  325. DShopB.MouseButton1Click:connect(function()
  326. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(273, 18, -1807) + Vector3.new(1,0,0)
  327. end)
  328.  
  329. PoliceBaseB.Name = "PoliceBaseB"
  330. PoliceBaseB.Parent = TeleportsF
  331. PoliceBaseB.BackgroundColor3 = Color3.new(55, 0, 102)
  332. PoliceBaseB.BorderSizePixel = 0
  333. PoliceBaseB.Position = UDim2.new(0, 10, 0, 115)
  334. PoliceBaseB.Size = UDim2.new(0, 125, 0, 25)
  335. PoliceBaseB.Font = Enum.Font.SourceSansBold
  336. PoliceBaseB.FontSize = Enum.FontSize.Size18
  337. PoliceBaseB.Text = "Big Police Base"
  338. PoliceBaseB.TextColor3 = Color3.new(1, 1, 1)
  339. PoliceBaseB.TextSize = 16
  340. PoliceBaseB.MouseButton1Click:connect(function()
  341. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1130.11426, 17.950058, -1593.09766) + Vector3.new(1,0,0)
  342. end)
  343.  
  344. PoliceBase2B.Name = "PoliceBase2B"
  345. PoliceBase2B.Parent = TeleportsF
  346. PoliceBase2B.BackgroundColor3 = Color3.new(55, 0, 102)
  347. PoliceBase2B.BorderSizePixel = 0
  348. PoliceBase2B.Position = UDim2.new(0, 10, 0, 150)
  349. PoliceBase2B.Size = UDim2.new(0, 125, 0, 25)
  350. PoliceBase2B.Font = Enum.Font.SourceSansBold
  351. PoliceBase2B.FontSize = Enum.FontSize.Size18
  352. PoliceBase2B.Text = "Small Police Base"
  353. PoliceBase2B.TextColor3 = Color3.new(1, 1, 1)
  354. PoliceBase2B.TextSize = 16
  355. PoliceBase2B.MouseButton1Click:connect(function()
  356. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(744.981506, 38.1523933, 1132.73462) + Vector3.new(1,0,0)
  357. end)
  358.  
  359. HeliB.Name = "HeliB"
  360. HeliB.Parent = TeleportsF
  361. HeliB.BackgroundColor3 = Color3.new(55, 0, 102)
  362. HeliB.BorderSizePixel = 0
  363. HeliB.Position = UDim2.new(0, 145, 0, 115)
  364. HeliB.Size = UDim2.new(0, 125, 0, 25)
  365. HeliB.Font = Enum.Font.SourceSansBold
  366. HeliB.FontSize = Enum.FontSize.Size18
  367. HeliB.Text = "Helicopter Pad"
  368. HeliB.TextColor3 = Color3.new(1, 1, 1)
  369. HeliB.TextSize = 16
  370. HeliB.MouseButton1Click:connect(function()
  371. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1176.4231, 59.7911148, -1572.6908) + Vector3.new(1,0,0)
  372. end)
  373.  
  374. PoliceCarsB.Name = "PoliceCarsB"
  375. PoliceCarsB.Parent = TeleportsF
  376. PoliceCarsB.BackgroundColor3 = Color3.new(55, 0, 102)
  377. PoliceCarsB.BorderSizePixel = 0
  378. PoliceCarsB.Position = UDim2.new(0, 280, 0, 115)
  379. PoliceCarsB.Size = UDim2.new(0, 125, 0, 25)
  380. PoliceCarsB.Font = Enum.Font.SourceSansBold
  381. PoliceCarsB.FontSize = Enum.FontSize.Size18
  382. PoliceCarsB.Text = "Police Cars"
  383. PoliceCarsB.TextColor3 = Color3.new(1, 1, 1)
  384. PoliceCarsB.TextSize = 16
  385. PoliceCarsB.MouseButton1Click:connect(function()
  386. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1100.4469, 17.7500038, -1493.18286) + Vector3.new(1,0,0)
  387. end)
  388.  
  389. GasStationB.Name = "GasStationB"
  390. GasStationB.Parent = TeleportsF
  391. GasStationB.BackgroundColor3 = Color3.new(55, 0, 102)
  392. GasStationB.BorderSizePixel = 0
  393. GasStationB.Position = UDim2.new(0, 280, 0, 150)
  394. GasStationB.Size = UDim2.new(0, 125, 0, 25)
  395. GasStationB.Font = Enum.Font.SourceSansBold
  396. GasStationB.FontSize = Enum.FontSize.Size18
  397. GasStationB.Text = "Gas Station"
  398. GasStationB.TextColor3 = Color3.new(1, 1, 1)
  399. GasStationB.TextSize = 16
  400. GasStationB.MouseButton1Click:connect(function()
  401. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1558.97131, 17.7477856, 704.680176) + Vector3.new(1,0,0)
  402. end)
  403.  
  404. ToggleablesF.Name = "ToggleablesF"
  405. ToggleablesF.Parent = Main
  406. ToggleablesF.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  407. ToggleablesF.BorderSizePixel = 0
  408. ToggleablesF.Position = UDim2.new(0, 145, 0, 0)
  409. ToggleablesF.Size = UDim2.new(0, 415, 0, 225)
  410. ToggleablesF.Visible = false
  411.  
  412. WalkSpeedB.Name = "WalkSpeedB"
  413. WalkSpeedB.Parent = ToggleablesF
  414. WalkSpeedB.BackgroundColor3 = Color3.new(55, 0, 102)
  415. WalkSpeedB.BorderSizePixel = 0
  416. WalkSpeedB.Position = UDim2.new(0, 10, 0, 10)
  417. WalkSpeedB.Size = UDim2.new(0, 125, 0, 25)
  418. WalkSpeedB.Font = Enum.Font.SourceSansBold
  419. WalkSpeedB.FontSize = Enum.FontSize.Size18
  420. WalkSpeedB.Text = "WalkSpeed"
  421. WalkSpeedB.TextColor3 = Color3.new(1, 1, 1)
  422. WalkSpeedB.TextSize = 16
  423. WalkSpeedB.MouseButton1Down:connect(function()
  424. if Walk == true then
  425. Walk = false
  426. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  427. else
  428. Walk = true
  429. end
  430. end)
  431.  
  432. JumpPowerB.Name = "JumpPowerB"
  433. JumpPowerB.Parent = ToggleablesF
  434. JumpPowerB.BackgroundColor3 = Color3.new(55, 0, 102)
  435. JumpPowerB.BorderSizePixel = 0
  436. JumpPowerB.Position = UDim2.new(0, 145, 0, 10)
  437. JumpPowerB.Size = UDim2.new(0, 125, 0, 25)
  438. JumpPowerB.Font = Enum.Font.SourceSansBold
  439. JumpPowerB.FontSize = Enum.FontSize.Size18
  440. JumpPowerB.Text = "JumpPower"
  441. JumpPowerB.TextColor3 = Color3.new(1, 1, 1)
  442. JumpPowerB.TextSize = 16
  443. JumpPowerB.MouseButton1Down:connect(function()
  444. if Jump == true then
  445. Jump = false
  446. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  447. else
  448. Jump = true
  449. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
  450. end
  451. end)
  452.  
  453. GravityB.Name = "GravityB"
  454. GravityB.Parent = ToggleablesF
  455. GravityB.BackgroundColor3 = Color3.new(55, 0, 102)
  456. GravityB.BorderSizePixel = 0
  457. GravityB.Position = UDim2.new(0, 280, 0, 10)
  458. GravityB.Size = UDim2.new(0, 125, 0, 25)
  459. GravityB.Font = Enum.Font.SourceSansBold
  460. GravityB.FontSize = Enum.FontSize.Size18
  461. GravityB.Text = "Gravity"
  462. GravityB.TextColor3 = Color3.new(1, 1, 1)
  463. GravityB.TextSize = 16
  464. GravityB.MouseButton1Down:connect(function()
  465. if Gravity == true then
  466. Gravity = false
  467. game.workspace.Gravity = 196.2
  468. else
  469. Gravity = true
  470. game.workspace.Gravity = 45
  471. end
  472. end)
  473.  
  474. AutoArrestB.Name = "AutoArrestB"
  475. AutoArrestB.Parent = ToggleablesF
  476. AutoArrestB.BackgroundColor3 = Color3.new(55, 0, 102)
  477. AutoArrestB.BorderSizePixel = 0
  478. AutoArrestB.Position = UDim2.new(0, 10, 0, 45)
  479. AutoArrestB.Size = UDim2.new(0, 125, 0, 25)
  480. AutoArrestB.Font = Enum.Font.SourceSansBold
  481. AutoArrestB.FontSize = Enum.FontSize.Size18
  482. AutoArrestB.Text = "Auto Arrest"
  483. AutoArrestB.TextColor3 = Color3.new(1, 1, 1)
  484. AutoArrestB.TextSize = 16
  485. AutoArrestB.MouseButton1Down:connect(function()
  486. if Arrest == true then
  487. Arrest = false
  488. else
  489. Arrest = true
  490. end
  491. end)
  492.  
  493. InfAmmoB.Name = "InfAmmoB"
  494. InfAmmoB.Parent = ToggleablesF
  495. InfAmmoB.BackgroundColor3 = Color3.new(55, 0, 102)
  496. InfAmmoB.BorderSizePixel = 0
  497. InfAmmoB.Position = UDim2.new(0, 145, 0, 45)
  498. InfAmmoB.Size = UDim2.new(0, 125, 0, 25)
  499. InfAmmoB.Font = Enum.Font.SourceSansBold
  500. InfAmmoB.FontSize = Enum.FontSize.Size18
  501. InfAmmoB.Text = "Inf Ammo"
  502. InfAmmoB.TextColor3 = Color3.new(1, 1, 1)
  503. InfAmmoB.TextSize = 16
  504. InfAmmoB.MouseButton1Down:connect(function()
  505. if InfAmmo == true then
  506. InfAmmo = false
  507. else
  508. InfAmmo = true
  509. game.Players.LocalPlayer.PlayerGui.ScreenGui.Ammo.MagSize.Name = "Draconix"
  510. end
  511. end)
  512.  
  513. RemoveablesB.Name = "RemoveablesB"
  514. RemoveablesB.Parent = Main
  515. RemoveablesB.BackgroundColor3 = Color3.new(55, 0, 102)
  516. RemoveablesB.BorderSizePixel = 0
  517. RemoveablesB.Position = UDim2.new(0, 10, 0, 105)
  518. RemoveablesB.Size = UDim2.new(0, 125, 0, 25)
  519. RemoveablesB.Font = Enum.Font.SourceSansBold
  520. RemoveablesB.FontSize = Enum.FontSize.Size18
  521. RemoveablesB.Text = "Removeables"
  522. RemoveablesB.TextColor3 = Color3.new(1, 1, 1)
  523. RemoveablesB.TextSize = 16
  524. RemoveablesB.TextSize = 16
  525. RemoveablesB.MouseButton1Down:connect(function()
  526. Home.Visible = false
  527. TeleportsF.Visible = false
  528. ToggleablesF.Visible = false
  529. RemoveablesF.Visible = true
  530. end)
  531.  
  532. RemoveablesF.Name = "RemoveablesF"
  533. RemoveablesF.Parent = Main
  534. RemoveablesF.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  535. RemoveablesF.BorderSizePixel = 0
  536. RemoveablesF.Position = UDim2.new(0, 145, 0, 0)
  537. RemoveablesF.Size = UDim2.new(0, 415, 0, 225)
  538. RemoveablesF.Visible = false
  539.  
  540. DoorsB.Name = "DoorsB"
  541. DoorsB.Parent = RemoveablesF
  542. DoorsB.BackgroundColor3 = Color3.new(55, 0, 102)
  543. DoorsB.BorderSizePixel = 0
  544. DoorsB.Position = UDim2.new(0, 10, 0, 10)
  545. DoorsB.Size = UDim2.new(0, 125, 0, 25)
  546. DoorsB.Font = Enum.Font.SourceSansBold
  547. DoorsB.FontSize = Enum.FontSize.Size18
  548. DoorsB.Text = "Doors"
  549. DoorsB.TextColor3 = Color3.new(1, 1, 1)
  550. DoorsB.TextSize = 16
  551. DoorsB.MouseButton1Down:connect(function()
  552. game.Workspace.Doors:Remove()
  553. end)
  554.  
  555. BankB.Name = "BankB"
  556. BankB.Parent = RemoveablesF
  557. BankB.BackgroundColor3 = Color3.new(55, 0, 102)
  558. BankB.BorderSizePixel = 0
  559. BankB.Position = UDim2.new(0, 145, 0, 10)
  560. BankB.Size = UDim2.new(0, 125, 0, 25)
  561. BankB.Font = Enum.Font.SourceSansBold
  562. BankB.FontSize = Enum.FontSize.Size18
  563. BankB.Text = "Bank Lasers"
  564. BankB.TextColor3 = Color3.new(1, 1, 1)
  565. BankB.TextSize = 16
  566. BankB.MouseButton1Down:connect(function()
  567. game.Workspace.Banks.Bank.Lasers:Remove()
  568. end)
  569.  
  570. JewelryB.Name = "JewelryB"
  571. JewelryB.Parent = RemoveablesF
  572. JewelryB.BackgroundColor3 = Color3.new(55, 0, 102)
  573. JewelryB.BorderSizePixel = 0
  574. JewelryB.Position = UDim2.new(0, 280, 0, 10)
  575. JewelryB.Size = UDim2.new(0, 125, 0, 25)
  576. JewelryB.Font = Enum.Font.SourceSansBold
  577. JewelryB.FontSize = Enum.FontSize.Size18
  578. JewelryB.Text = "Jewelry Store Lasers"
  579. JewelryB.TextColor3 = Color3.new(1, 1, 1)
  580. JewelryB.TextSize = 16
  581. JewelryB.MouseButton1Down:connect(function()
  582. game.Workspace.Jewelrys.Jewelry.Lasers:Remove()
  583. game.Workspace.Jewelrys.Jewelry.Cameras:Remove()
  584. game.Workspace.Jewelrys.Jewelry.FloorLasers:Remove()
  585. end)
  586.  
  587. CellB.Name = "CellB"
  588. CellB.Parent = RemoveablesF
  589. CellB.BackgroundColor3 = Color3.new(55, 0, 102)
  590. CellB.BorderSizePixel = 0
  591. CellB.Position = UDim2.new(0, 10, 0, 45)
  592. CellB.Size = UDim2.new(0, 125, 0, 25)
  593. CellB.Font = Enum.Font.SourceSansBold
  594. CellB.FontSize = Enum.FontSize.Size18
  595. CellB.Text = "Cell Bars"
  596. CellB.TextColor3 = Color3.new(1, 1, 1)
  597. CellB.TextSize = 16
  598. CellB.MouseButton1Down:connect(function()
  599. game.Workspace.Cells:Remove()
  600. end)
  601.  
  602. Open.Name = "Open"
  603. Open.Parent = Extraction
  604. Open.BackgroundColor3 = Color3.new(55, 0, 102)
  605. Open.BorderSizePixel = 0
  606. Open.Position = UDim2.new(0, 0, 0.270000024, 0)
  607. Open.Size = UDim2.new(0, 125, 0, 25)
  608. Open.Font = Enum.Font.SourceSansBold
  609. Open.FontSize = Enum.FontSize.Size18
  610. Open.Text = "Open Extraction"
  611. Open.TextColor3 = Color3.new(1, 1, 1)
  612. Open.TextSize = 16
  613. Open.MouseButton1Down:connect(function()
  614. Main.Visible = true
  615. Open.Visible = false
  616. end)
  617. while true do
  618. wait()
  619. if Arrest == true then
  620. local Player = game.Players.LocalPlayer
  621. for i,v in pairs(game.Teams.Criminal:GetPlayers()) do
  622. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  623. end
  624. elseif Walk == true then
  625. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  626. end
  627. end
Add Comment
Please, Sign In to add comment