Advertisement
Guest User

Untitled

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