Advertisement
Guest User

Untitled

a guest
Jan 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.89 KB | None | 0 0
  1. wait(1)
  2.  
  3. -- Local Player
  4. local p = game.Players.LocalPlayer
  5.  
  6. -- Instance Objects
  7. local gui = Instance.new('ScreenGui',p.PlayerGui)
  8. local frame = Instance.new('ScrollingFrame',gui)
  9. local open = Instance.new('TextButton',gui)
  10. local name = Instance.new('TextLabel',frame)
  11. local arrest = Instance.new('TextButton',frame)
  12. local btools = Instance.new('TextButton',frame)
  13. local escape = Instance.new('TextButton',frame)
  14. local exit = Instance.new('TextButton',frame)
  15. local killaura = Instance.new('TextButton',frame)
  16. local melee = Instance.new('TextButton',frame)
  17. local removedoors = Instance.new('TextButton',frame)
  18. local tools = Instance.new('TextButton',frame)
  19. local speedplus = Instance.new('TextButton',frame)
  20. local speedminus = Instance.new('TextButton',frame)
  21. local jumpplus = Instance.new('TextButton',frame)
  22. local jumpminus = Instance.new('TextButton',frame)
  23. local sedan = Instance.new('TextButton',frame)
  24. local squad = Instance.new('TextButton',frame)
  25. local bypass = Instance.new('TextButton',frame)
  26. local db = Instance.new('TextButton',frame)
  27. local floor = Instance.new('TextButton',frame)
  28.  
  29. -- Name object
  30. gui.Name = "Prison Life v2.0 GUI"
  31. frame.Name = "Commands"
  32. open.Name = "Open"
  33. name.Name = "Name"
  34. arrest.Name = "ArrestButton"
  35. btools.Name = "BtoolsButton"
  36. escape.Name = "EscapeButton"
  37. exit.Name = "ExitButton"
  38. killaura.Name = "KillauraButton"
  39. melee.Name = "MeleeButton"
  40. removedoors.Name = "RemoveDoorsButton"
  41. tools.Name = "ToolsButton"
  42. speedplus.Name = "SpeedAdd"
  43. speedminus.Name = "SpeedReduce"
  44. jumpplus.Name = "JumpAdd"
  45. jumpminus.Name = "JumpReduce"
  46. sedan.Name = "SedanCar"
  47. squad.Name = "SquadCar"
  48. bypass.Name = "Bypass"
  49. db.Name = "DisableBypass"
  50. floor.Name = "Floor"
  51.  
  52. -- Object Visible
  53. frame.Visible = true
  54. open.Visible = false
  55. name.Visible = true
  56. arrest.Visible = true
  57. btools.Visible = true
  58. escape.Visible = true
  59. exit.Visible = true
  60. killaura.Visible = true
  61. melee.Visible = true
  62. removedoors.Visible = true
  63. tools.Visible = true
  64. speedplus.Visible = true
  65. speedminus.Visible = true
  66. jumpplus.Visible = true
  67. jumpminus.Visible = true
  68. sedan.Visible = true
  69. squad.Visible = true
  70. bypass.Visible = true
  71. db.Visible = true
  72. floor.Visible = true
  73.  
  74. -- Background Color
  75. frame.BackgroundColor3 = Color3.new(255,255,255)
  76. open.BackgroundColor3 = Color3.new(0,255,255)
  77. name.BackgroundColor3 = Color3.new(255,255,255)
  78. arrest.BackgroundColor3 = Color3.new(0,0,255)
  79. btools.BackgroundColor3 = Color3.new(0,0,255)
  80. escape.BackgroundColor3 = Color3.new(0,0,255)
  81. exit.BackgroundColor3 = Color3.new(255,0,0)
  82. killaura.BackgroundColor3 = Color3.new(0,0,255)
  83. melee.BackgroundColor3 = Color3.new(0,0,255)
  84. removedoors.BackgroundColor3 = Color3.new(0,0,255)
  85. tools.BackgroundColor3 = Color3.new(0,0,255)
  86. speedplus.BackgroundColor3 = Color3.new(0,0,255)
  87. speedminus.BackgroundColor3 = Color3.new(0,0,255)
  88. jumpplus.BackgroundColor3 = Color3.new(0,0,255)
  89. jumpminus.BackgroundColor3 = Color3.new(0,0,255)
  90. sedan.BackgroundColor3 = Color3.new(0,0,255)
  91. squad.BackgroundColor3 = Color3.new(0,0,255)
  92. bypass.BackgroundColor3 = Color3.new(0,0,255)
  93. db.BackgroundColor3 = Color3.new(0,0,255)
  94. floor.BackgroundColor3 = Color3.new(0,0,255)
  95.  
  96. -- Background Transparency
  97. frame.BackgroundTransparency = 0.5
  98. open.BackgroundTransparency = 0
  99. name.BackgroundTransparency = 0.6
  100. arrest.BackgroundTransparency = 0
  101. btools.BackgroundTransparency = 0
  102. escape.BackgroundTransparency = 0
  103. exit.BackgroundTransparency = 0
  104. killaura.BackgroundTransparency = 0
  105. melee.BackgroundTransparency = 0
  106. removedoors.BackgroundTransparency = 0
  107. tools.BackgroundTransparency = 0
  108. speedplus.BackgroundTransparency = 0
  109. speedminus.BackgroundTransparency = 0
  110. jumpplus.BackgroundTransparency = 0
  111. jumpminus.BackgroundTransparency = 0
  112. sedan.BackgroundTransparency = 0
  113. bypass.BackgroundTransparency = 0
  114. db.BackgroundTransparency = 0
  115. floor.BackgroundTransparency = 0
  116.  
  117. -- Objects Size
  118. frame.Size = UDim2.new(0,250,0,300)
  119. open.Size = UDim2.new(0,80,0,30)
  120. name.Size = UDim2.new(0,180,0,40)
  121. arrest.Size = UDim2.new(0.9,12,0,30)
  122. btools.Size = UDim2.new(0.9,12,0,30)
  123. escape.Size = UDim2.new(0.9,12,0,30)
  124. exit.Size = UDim2.new(0,50,0,40)
  125. killaura.Size = UDim2.new(0.9,12,0,30)
  126. melee.Size = UDim2.new(0.9,12,0,30)
  127. removedoors.Size = UDim2.new(0.9,12,0,30)
  128. tools.Size = UDim2.new(0.9,12,0,30)
  129. speedplus.Size = UDim2.new(0.9,12,0,30)
  130. speedminus.Size = UDim2.new(0.9,12,0,30)
  131. jumpplus.Size = UDim2.new(0.9,12,0,30)
  132. jumpminus.Size = UDim2.new(0.9,12,0,30)
  133. sedan.Size = UDim2.new(0.9,12,0,30)
  134. squad.Size = UDim2.new(0.9,12,0,30)
  135. bypass.Size = UDim2.new(0.9,12,0,30)
  136. db.Size = UDim2.new(0.9,12,0,30)
  137. floor.Size = UDim2.new(0.9,12,0,30)
  138.  
  139. -- Objects Position
  140. frame.Position = UDim2.new(0,5,0.4,0)
  141. open.Position = UDim2.new(0,0,0,0)
  142. name.Position = UDim2.new(0,0,0,0)
  143. arrest.Position = UDim2.new(0,0,0,320)
  144. btools.Position = UDim2.new(0,0,0,185)
  145. escape.Position = UDim2.new(0,0,0,230)
  146. exit.Position = UDim2.new(0,184,0,0)
  147. killaura.Position = UDim2.new(0,0,0,275)
  148. melee.Position = UDim2.new(0,0,0,140)
  149. removedoors.Position = UDim2.new(0,0,0,50)
  150. tools.Position = UDim2.new(0,0,0,95)
  151. speedplus.Position = UDim2.new(0,0,0,365)
  152. speedminus.Position = UDim2.new(0,0,0,410)
  153. jumpplus.Position = UDim2.new(0,0,0,455)
  154. jumpminus.Position = UDim2.new(0,0,0,500)
  155. sedan.Position = UDim2.new(0,0,0,545)
  156. squad.Position = UDim2.new(0,0,0,590)
  157. bypass.Position = UDim2.new(0,0,0,635)
  158. db.Position = UDim2.new(0,0,0,680)
  159. floor.Position = UDim2.new(0,0,0,725)
  160.  
  161. -- Objects Text Color
  162. open.TextColor3 = Color3.new(0,0,0)
  163. name.TextColor3 = Color3.new(0,255,255)
  164. arrest.TextColor3 = Color3.new(0,0,0)
  165. btools.TextColor3 = Color3.new(0,0,0)
  166. escape.TextColor3 = Color3.new(0,0,0)
  167. exit.TextColor3 = Color3.new(0,0,0)
  168. killaura.TextColor3 = Color3.new(0,0,0)
  169. melee.TextColor3 = Color3.new(0,0,0)
  170. removedoors.TextColor3 = Color3.new(0,0,0)
  171. tools.TextColor3 = Color3.new(0,0,0)
  172. speedplus.TextColor3 = Color3.new(0,0,0)
  173. speedminus.TextColor3 = Color3.new(0,0,0)
  174. jumpplus.TextColor3 = Color3.new(0,0,0)
  175. jumpminus.TextColor3 = Color3.new(0,0,0)
  176. sedan.TextColor3 = Color3.new(0,0,0)
  177. squad.TextColor3 = Color3.new(0,0,0)
  178. bypass.TextColor3 = Color3.new(0,0,0)
  179. db.TextColor3 = Color3.new(0,0,0)
  180. floor.TextColor3 = Color3.new(0,0,0)
  181.  
  182. -- Object Font
  183. name.Font = 'Fantasy'
  184.  
  185. -- Object Text
  186. open.Text = 'Open'
  187. name.Text = 'Prison Life v2.0 Commands'
  188. arrest.Text = 'Arrest [Cops Only]'
  189. btools.Text = 'Give Btools'
  190. escape.Text = 'Escape The Prison'
  191. exit.Text = 'Exit'
  192. killaura.Text = 'Kill Aura [Danger]'
  193. melee.Text = 'Give Melee'
  194. removedoors.Text = 'Remove Doors'
  195. tools.Text = 'Give Guns'
  196. speedplus.Text = 'WalkSpeed + 10'
  197. speedminus.Text = 'WalkSpeed - 10'
  198. jumpplus.Text = 'JumpPower + 10'
  199. jumpminus.Text = 'JumpPower - 10'
  200. sedan.Text = 'Teleport Seden [If got]'
  201. squad.Text = 'Teleport Squad [If got]'
  202. bypass.Text = 'Bypass Taser, Arrest [Cannot Punch]'
  203. db.Text = 'Disable Bypass Taser, Arrest'
  204. floor.Text = 'Get Tools on the floor'
  205.  
  206. -- Object Text Scaled
  207. open.TextScaled = true
  208. name.TextScaled = true
  209. arrest.TextScaled = true
  210. btools.TextScaled = true
  211. escape.TextScaled = true
  212. exit.TextScaled = true
  213. killaura.TextScaled = true
  214. melee.TextScaled = true
  215. removedoors.TextScaled = true
  216. tools.TextScaled = true
  217. speedplus.TextScaled = true
  218. speedminus.TextScaled = true
  219. jumpplus.TextScaled = true
  220. jumpminus.TextScaled = true
  221. sedan.TextScaled = true
  222. squad.TextScaled = true
  223. bypass.TextScaled = true
  224. db.TextScaled = true
  225. floor.TextScaled = true
  226.  
  227. -- Frame Moveable
  228. frame.Active = true
  229. frame.Draggable = true
  230.  
  231. -- Open Function
  232. open.MouseButton1Down:connect(function()
  233. frame.Visible = true
  234. frame:TweenPosition(UDim2.new(0,5,0.4,0), "Out", "Bounce",1 ,true)
  235. open.Visible = false
  236. open.Position = UDim2.new(0,0,0,0)
  237. end)
  238.  
  239. -- Close/Exit Function
  240. exit.MouseButton1Down:connect(function()
  241. frame:TweenPosition(UDim2.new(0.1,-400,0.4,0) , "Out", "Quad", 1, true)
  242. wait(1)
  243. frame.Visible = false
  244. wait(.1)
  245. open.Visible = true
  246. open:TweenPosition(UDim2.new(0,2,0.8,15), "Out", "Bounce",1 ,true)
  247. end)
  248.  
  249. -- Remove Doors Function
  250. removedoors.MouseButton1Down:connect(function()
  251. game.Workspace.Doors:Destroy()
  252. end)
  253.  
  254. -- Guns Function
  255. tools.MouseButton1Down:connect(function()
  256. local weapons = {"Remington 870", "M9", "AK-47", "M4A1", "Riot Shield"}
  257. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  258. for j, k in pairs(weapons) do
  259. if v.Name == k then
  260. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  261. end
  262. end
  263. end
  264. end)
  265.  
  266. -- Melee Function
  267. melee.MouseButton1Down:connect(function()
  268. local weapons = {"Crude Knife", "Sharpened stick", "Extendo mirror"}
  269. for i, v in pairs(game.ReplicatedStorage.Tools:GetChildren()) do
  270. for j, k in pairs(weapons) do
  271. if v.Name == k then
  272. v:Clone().Parent = game.Players.LocalPlayer.Backpack
  273. end
  274. end
  275. end
  276. end)
  277.  
  278. -- Btools Function
  279. btools.MouseButton1Down:connect(function()
  280. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 2
  281. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 3
  282. Instance.new('HopperBin', game.Players.LocalPlayer.Backpack).BinType = 4
  283. loadstring(game:GetObjects('rbxassetid://552440069')[1].Source)()
  284. end)
  285.  
  286. -- Escape Function
  287. escape.MouseButton1Down:connect(function()
  288. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(283, 72, 2213)
  289. end)
  290.  
  291. -- Kill Aura Function
  292. killaura.MouseButton1Down:connect(function()
  293. while wait(0.1) do
  294. for i, plr in pairs(game.Players:GetChildren()) do
  295. if plr.Name ~= game.Players.LocalPlayer.Name then
  296. for i = 1, 10 do
  297. game.ReplicatedStorage.meleeEvent:FireServer(plr)
  298. end
  299. end
  300. end
  301. end
  302. end)
  303.  
  304. -- Arrest Function
  305. local mouse = game.Players.LocalPlayer:GetMouse()
  306. local arrestEvent = game.Workspace.Remote.arrest
  307. mouse.Button1Down:connect(function()
  308. local obj = mouse.Target
  309. local response = arrestEvent:InvokeServer(obj)
  310. end)
  311.  
  312. -- WalkSpeed Increase
  313. speedplus.MouseButton1Down:connect(function()
  314. p.Character.Humanoid.WalkSpeed = p.Character.Humanoid.WalkSpeed + 10
  315. end)
  316.  
  317. -- WalkSpeed Decrease
  318. speedminus.MouseButton1Down:connect(function()
  319. p.Character.Humanoid.WalkSpeed = p.Character.Humanoid.WalkSpeed - 10
  320. end)
  321.  
  322. -- JumpPower Increase
  323. jumpplus.MouseButton1Down:connect(function()
  324. p.Character.Humanoid.JumpPower = p.Character.Humanoid.JumpPower + 10
  325. end)
  326.  
  327. -- JumpPower Decrease
  328. jumpminus.MouseButton1Down:connect(function()
  329. p.Character.Humanoid.JumpPower = p.Character.Humanoid.JumpPower - 10
  330. end)
  331.  
  332. -- Seden
  333. sedan.MouseButton1Down:connect(function()
  334. local Cars = {"Sedan"}
  335. for i, v in pairs(game.Workspace["CarContainer"]:GetChildren()) do
  336. for j, k in pairs(Cars) do
  337. if v.Name == k then
  338. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  339. wait(.1)
  340. v.Parent = game.Workspace
  341. elseif not v.Name == k then
  342. sedan.Text = 'No Sedan Founded yet !'
  343. wait(2)
  344. sedan.Text = 'Teleport Seden [If got]'
  345. end
  346. end
  347. end
  348. end)
  349.  
  350. -- Squad
  351. squad.MouseButton1Down:connect(function()
  352. local Cars = {"Squad"}
  353. for i, v in pairs(game.Workspace["CarContainer"]:GetChildren()) do
  354. for j, k in pairs(Cars) do
  355. if v.Name == k then
  356. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  357. wait(.1)
  358. v.Parent = game.Workspace
  359. elseif not v.Name == k then
  360. squad.Text = 'No Squad Founded yet !'
  361. wait(2)
  362. squad.Text = 'Teleport Squad [If got]'
  363. end
  364. end
  365. end
  366. end)
  367.  
  368. -- Bypass Taser , Arrest
  369. bypass.MouseButton1Down:connect(function()
  370. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
  371. game.Players.LocalPlayer.CharacterAdded:connect(function()
  372. game.Workspace:WaitForChild(game.Players.LocalPlayer.Name)
  373. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
  374. end)
  375. local message = Instance.new("Message",game.Workspace)
  376. message.Text = 'Thanks for brack1472 release this script !'
  377. wait(5)
  378. message:Destroy()
  379. end)
  380.  
  381. -- Disable Bypass Taser , Arrest
  382. db.MouseButton1Down:connect(function()
  383. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = false
  384. game.Players.LocalPlayer.CharacterAdded:connect(function()
  385. game.Workspace:WaitForChild(game.Players.LocalPlayer.Name)
  386. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = false
  387. end)
  388. end)
  389.  
  390. -- Get Tools On the Floor
  391. floor.MouseButton1Down:connect(function()
  392. for i, v in pairs(game.Workspace["Prison_ITEMS"].single:GetChildren()) do
  393. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  394. end
  395. end)
  396.  
  397. -- Thanks for using my gui!
  398. -- Made by RoboHaxRoblox on v3rm
  399.  
  400. -- Objects
  401.  
  402. local PrisonLifeHAX = Instance.new("ScreenGui")
  403. local MainUI = Instance.new("Frame")
  404. local guiname = Instance.new("TextLabel")
  405. local Walkspeed = Instance.new("TextButton")
  406. local Jumpower = Instance.new("TextButton")
  407. local SpeedValue = Instance.new("TextBox")
  408. local JumpowerValue = Instance.new("TextBox")
  409. local tools = Instance.new("TextButton")
  410. local melee = Instance.new("TextButton")
  411. local killaura = Instance.new("TextButton")
  412. local bypass = Instance.new("TextButton")
  413. local removedoors = Instance.new("TextButton")
  414. local clickarrest = Instance.new("TextButton")
  415. local teleportlist = Instance.new("TextLabel")
  416. local outside = Instance.new("TextButton")
  417. local criminalbase = Instance.new("TextButton")
  418. local yard = Instance.new("TextButton")
  419. local cafeteria = Instance.new("TextButton")
  420. local cells = Instance.new("TextButton")
  421. local secret = Instance.new("TextButton")
  422. local credits = Instance.new("TextLabel")
  423.  
  424. -- Properties
  425.  
  426. PrisonLifeHAX.Name = "PrisonLifeHAX"
  427. PrisonLifeHAX.Parent = game.CoreGui
  428.  
  429. MainUI.Name = "MainUI"
  430. MainUI.Parent = PrisonLifeHAX
  431. MainUI.BackgroundColor3 = Color3.new(0.262745, 0.262745, 0.262745)
  432. MainUI.BackgroundTransparency = 0.019999999552965
  433. MainUI.Position = UDim2.new(0.24550131, 0, 0.056497179, 0)
  434. MainUI.Size = UDim2.new(0, 470, 0, 304)
  435.  
  436. guiname.Name = "guiname"
  437. guiname.Parent = MainUI
  438. guiname.BackgroundColor3 = Color3.new(0.588235, 0, 0)
  439. guiname.Position = UDim2.new(0, 0, -0.00657894742, 0)
  440. guiname.Size = UDim2.new(0, 470, 0, 38)
  441. guiname.Font = Enum.Font.SciFi
  442. guiname.Text = "PrisonHax"
  443. guiname.TextSize = 40
  444.  
  445. Walkspeed.Name = "Walkspeed"
  446. Walkspeed.Parent = MainUI
  447. Walkspeed.BackgroundColor3 = Color3.new(0.490196, 0, 0)
  448. Walkspeed.Position = UDim2.new(0.0150537631, 0, 0.183050841, 0)
  449. Walkspeed.Size = UDim2.new(0, 97, 0, 30)
  450. Walkspeed.Font = Enum.Font.SciFi
  451. Walkspeed.Text = "Walkspeed"
  452. Walkspeed.TextSize = 19
  453. Walkspeed.TextStrokeTransparency = 2
  454.  
  455. Jumpower.Name = "Jumpower"
  456. Jumpower.Parent = MainUI
  457. Jumpower.BackgroundColor3 = Color3.new(0.490196, 0, 0)
  458. Jumpower.Position = UDim2.new(0.0150537631, 0, 0.311864406, 0)
  459. Jumpower.Size = UDim2.new(0, 97, 0, 30)
  460. Jumpower.Font = Enum.Font.SciFi
  461. Jumpower.Text = "Jumpower"
  462. Jumpower.TextSize = 19
  463. Jumpower.TextStrokeTransparency = 2
  464.  
  465. SpeedValue.Name = "SpeedValue"
  466. SpeedValue.Parent = MainUI
  467. SpeedValue.BackgroundColor3 = Color3.new(0.596078, 0, 0)
  468. SpeedValue.Position = UDim2.new(0.223655909, 0, 0.183050841, 0)
  469. SpeedValue.Size = UDim2.new(0, 97, 0, 30)
  470. SpeedValue.Font = Enum.Font.SciFi
  471. SpeedValue.Text = "Value"
  472. SpeedValue.TextSize = 14
  473.  
  474. JumpowerValue.Name = "JumpowerValue"
  475. JumpowerValue.Parent = MainUI
  476. JumpowerValue.BackgroundColor3 = Color3.new(0.596078, 0, 0)
  477. JumpowerValue.Position = UDim2.new(0.223655909, 0, 0.311864406, 0)
  478. JumpowerValue.Size = UDim2.new(0, 97, 0, 30)
  479. JumpowerValue.Font = Enum.Font.SciFi
  480. JumpowerValue.Text = "Value"
  481. JumpowerValue.TextSize = 14
  482.  
  483. tools.Name = "tools"
  484. tools.Parent = MainUI
  485. tools.BackgroundColor3 = Color3.new(0.490196, 0, 0)
  486. tools.Position = UDim2.new(0.0171814226, 0, 0.710771561, 0)
  487. tools.Size = UDim2.new(0, 97, 0, 30)
  488. tools.Font = Enum.Font.SciFi
  489. tools.Text = "Give Guns"
  490. tools.TextSize = 19
  491. tools.TextStrokeTransparency = 2
  492.  
  493. melee.Name = "melee"
  494. melee.Parent = MainUI
  495. melee.BackgroundColor3 = Color3.new(0.490196, 0, 0)
  496. melee.Position = UDim2.new(0.264516085, 0, 0.710671365, 0)
  497. melee.Size = UDim2.new(0, 97, 0, 30)
  498. melee.Font = Enum.Font.SciFi
  499. melee.Text = "Give melee"
  500. melee.TextSize = 19
  501. melee.TextStrokeTransparency = 2
  502.  
  503. killaura.Name = "killaura"
  504. killaura.Parent = MainUI
  505. killaura.BackgroundColor3 = Color3.new(0.490196, 0, 0)
  506. killaura.Position = UDim2.new(0.0150537193, 0, 0.859322011, 0)
  507. killaura.Size = UDim2.new(0, 97, 0, 30)
  508. killaura.Font = Enum.Font.SciFi
  509. killaura.Text = "Kill aura"
  510. killaura.TextSize = 19
  511. killaura.TextStrokeTransparency = 2
  512.  
  513. bypass.Name = "bypass"
  514. bypass.Parent = MainUI
  515. bypass.BackgroundColor3 = Color3.new(0.490196, 0, 0)
  516. bypass.Position = UDim2.new(0.264516085, 0, 0.859322011, 0)
  517. bypass.Size = UDim2.new(0, 97, 0, 30)
  518. bypass.Font = Enum.Font.SciFi
  519. bypass.Text = "Bypass"
  520. bypass.TextSize = 19
  521. bypass.TextStrokeTransparency = 2
  522.  
  523. removedoors.Name = "removedoors"
  524. removedoors.Parent = MainUI
  525. removedoors.BackgroundColor3 = Color3.new(0.490196, 0, 0)
  526. removedoors.Position = UDim2.new(0.506451607, 0, 0.709076762, 0)
  527. removedoors.Size = UDim2.new(0, 100, 0, 30)
  528. removedoors.Font = Enum.Font.SciFi
  529. removedoors.Text = "Delete doors"
  530. removedoors.TextSize = 19
  531. removedoors.TextStrokeTransparency = 2
  532.  
  533. clickarrest.Name = "clickarrest"
  534. clickarrest.Parent = MainUI
  535. clickarrest.BackgroundColor3 = Color3.new(0.490196, 0, 0)
  536. clickarrest.Position = UDim2.new(0.506520212, 0, 0.859322011, 0)
  537. clickarrest.Size = UDim2.new(0, 97, 0, 30)
  538. clickarrest.Font = Enum.Font.SciFi
  539. clickarrest.Text = "Click arrest"
  540. clickarrest.TextSize = 19
  541. clickarrest.TextStrokeTransparency = 2
  542.  
  543. teleportlist.Name = "teleportlist"
  544. teleportlist.Parent = MainUI
  545. teleportlist.BackgroundColor3 = Color3.new(0.623529, 0, 0)
  546. teleportlist.Position = UDim2.new(0.516129017, 0, 0.162711859, 0)
  547. teleportlist.Size = UDim2.new(0, 201, 0, 20)
  548. teleportlist.Font = Enum.Font.SciFi
  549. teleportlist.Text = "Teleport list"
  550. teleportlist.TextScaled = true
  551. teleportlist.TextSize = 15
  552. teleportlist.TextWrapped = true
  553.  
  554. outside.Name = "outside"
  555. outside.Parent = MainUI
  556. outside.BackgroundColor3 = Color3.new(0.462745, 0, 0)
  557. outside.Position = UDim2.new(0.516129017, 0, 0.284745753, 0)
  558. outside.Size = UDim2.new(0, 101, 0, 20)
  559. outside.Font = Enum.Font.SciFi
  560. outside.Text = "Outside prison"
  561. outside.TextSize = 14
  562.  
  563. criminalbase.Name = "criminalbase"
  564. criminalbase.Parent = MainUI
  565. criminalbase.BackgroundColor3 = Color3.new(0.462745, 0, 0)
  566. criminalbase.Position = UDim2.new(0.750537634, 0, 0.284745753, 0)
  567. criminalbase.Size = UDim2.new(0, 101, 0, 20)
  568. criminalbase.Font = Enum.Font.SciFi
  569. criminalbase.Text = "Criminal base"
  570. criminalbase.TextSize = 14
  571.  
  572. yard.Name = "yard"
  573. yard.Parent = MainUI
  574. yard.BackgroundColor3 = Color3.new(0.462745, 0, 0)
  575. yard.Position = UDim2.new(0.516129017, 0, 0.383050859, 0)
  576. yard.Size = UDim2.new(0, 101, 0, 20)
  577. yard.Font = Enum.Font.SciFi
  578. yard.Text = "Yard"
  579. yard.TextSize = 14
  580.  
  581. cafeteria.Name = "cafeteria"
  582. cafeteria.Parent = MainUI
  583. cafeteria.BackgroundColor3 = Color3.new(0.462745, 0, 0)
  584. cafeteria.Position = UDim2.new(0.750537634, 0, 0.383050859, 0)
  585. cafeteria.Size = UDim2.new(0, 101, 0, 20)
  586. cafeteria.Font = Enum.Font.SciFi
  587. cafeteria.Text = "Cafeteria"
  588. cafeteria.TextSize = 14
  589.  
  590. cells.Name = "cells"
  591. cells.Parent = MainUI
  592. cells.BackgroundColor3 = Color3.new(0.462745, 0, 0)
  593. cells.Position = UDim2.new(0.516129017, 0, 0.488135606, 0)
  594. cells.Size = UDim2.new(0, 101, 0, 20)
  595. cells.Font = Enum.Font.SciFi
  596. cells.Text = "Cells"
  597. cells.TextSize = 14
  598.  
  599. secret.Name = "secret"
  600. secret.Parent = MainUI
  601. secret.BackgroundColor3 = Color3.new(0.462745, 0, 0)
  602. secret.Position = UDim2.new(0.750537634, 0, 0.488135606, 0)
  603. secret.Size = UDim2.new(0, 101, 0, 20)
  604. secret.Font = Enum.Font.SciFi
  605. secret.Text = "Secret room"
  606. secret.TextSize = 14
  607.  
  608. credits.Name = "credits"
  609. credits.Parent = MainUI
  610. credits.BackgroundColor3 = Color3.new(0.513726, 0, 0)
  611. credits.Position = UDim2.new(0, 0, 1, 0)
  612. credits.Size = UDim2.new(0, 470, 0, 27)
  613. credits.Font = Enum.Font.SciFi
  614. credits.Text = "Made by Roboguyplayzroblox1"
  615. credits.TextSize = 19
  616.  
  617. -- Dragable
  618. MainUI.Active = true
  619. MainUI.Draggable = true
  620.  
  621.  
  622. -- All the scripts
  623.  
  624. local p = game.Players.LocalPlayer
  625.  
  626. -- Gives guns
  627. tools.MouseButton1Down:connect(function()
  628. local weapons = {"Remington 870", "M9", "AK-47", "M4A1", "Riot Shield"}
  629. for i, v in pairs(game.Workspace["Prison_ITEMS"].giver:GetChildren()) do
  630. for j, k in pairs(weapons) do
  631. if v.Name == k then
  632. v:MoveTo(game.Players.LocalPlayer.Character.Torso.Position)
  633. end
  634. end
  635. end
  636. end)
  637.  
  638. -- Gives meele tools
  639. melee.MouseButton1Down:connect(function()
  640. local weapons = {"Crude Knife", "Sharpened stick", "Extendo mirror"}
  641. for i, v in pairs(game.ReplicatedStorage.Tools:GetChildren()) do
  642. for j, k in pairs(weapons) do
  643. if v.Name == k then
  644. v:Clone().Parent = game.Players.LocalPlayer.Backpack
  645. end
  646. end
  647. end
  648. end)
  649.  
  650.  
  651. -- removes all doors
  652. removedoors.MouseButton1Down:connect(function()
  653. game.Workspace.Doors:Destroy()
  654. end)
  655.  
  656. -- kill anybody near you
  657. killaura.MouseButton1Down:connect(function()
  658. while wait(0.1) do
  659. for i, plr in pairs(game.Players:GetChildren()) do
  660. if plr.Name ~= game.Players.LocalPlayer.Name then
  661. for i = 1, 10 do
  662. game.ReplicatedStorage.meleeEvent:FireServer(plr)
  663. end
  664. end
  665. end
  666. end
  667. end)
  668.  
  669. -- bypassed taser and arrest
  670.  
  671. bypass.MouseButton1Down:connect(function()
  672. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
  673. game.Players.LocalPlayer.CharacterAdded:connect(function()
  674. game.Workspace:WaitForChild(game.Players.LocalPlayer.Name)
  675. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
  676. end)
  677. local message = Instance.new("Message",game.Workspace)
  678. message.Text = 'This script bypasses taser and arrest!'
  679. wait(3)
  680. message:Destroy()
  681. end)
  682.  
  683.  
  684. -- click arrest
  685. clickarrest.MouseButton1Down:connect(function()
  686. local mouse = game.Players.LocalPlayer:GetMouse()
  687. local arrestEvent = game.Workspace.Remote.arrest
  688. mouse.Button1Down:connect(function()
  689. local obj = mouse.Target
  690. local response = arrestEvent:InvokeServer(obj)
  691. end)
  692. local message = Instance.new("Message",game.Workspace)
  693. message.Text = "This script can only arrest guilty prisoners and criminals!"
  694. wait(2)
  695. message:destroy()
  696. end)
  697.  
  698. --Walkspeed
  699. Walkspeed.MouseButton1Down:connect(function()
  700. p.Character.Humanoid.WalkSpeed = SpeedValue.Text
  701. end)
  702.  
  703. -- Jumpower
  704. Jumpower.MouseButton1Down:connect(function()
  705. p.Character.Humanoid.JumpPower = JumpowerValue.Text
  706. end)
  707.  
  708.  
  709. outside.MouseButton1Down:connect(function()
  710. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(288.452, 69.999, 2206.731)
  711. end)
  712.  
  713.  
  714. criminalbase.MouseButton1Down:connect(function()
  715. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-943.704, 91.632, 2056.925)
  716. end)
  717.  
  718. yard.MouseButton1Down:connect(function()
  719. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(779.092, 96.001, 2451.114)
  720. end)
  721.  
  722. cafeteria.MouseButton1Down:connect(function()
  723. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(930, 97.54, 2291)
  724. end)
  725.  
  726. cells.MouseButton1Down:connect(function()
  727. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(918, 97.73, 2447)
  728. end)
  729.  
  730. secret.MouseButton1Down:connect(function()
  731. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(697, 97.492, 2364)
  732. end)
  733.  
  734. --- End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement