Prison Breaker


SUBMITTED BY: Guest

DATE: Feb. 28, 2021, 8:17 p.m.

FORMAT: Text only

SIZE: 27.5 kB

HITS: 338

  1. -- Made By: Jmuse#3982
  2. -- Full credit to the original script makers
  3. -- Website: https://rbxcheats.github.io/RbxCheats/
  4. -- Make sure to check out the other prison life GUI's I made!
  5. -- Youtube: Jmuse
  6. -- Distributed by: BlueScripts (https://virusdev.wixsite.com/bluescriptz)
  7. local PrisonLife = Instance.new("ScreenGui")
  8. local MainGUI = Instance.new("Frame")
  9. local title = Instance.new("TextLabel")
  10. local credits = Instance.new("TextLabel")
  11. local ScrollingFrame = Instance.new("ScrollingFrame")
  12. local guns = Instance.new("TextButton")
  13. local btools = Instance.new("TextButton")
  14. local clickarrest = Instance.new("TextButton")
  15. local arrestall = Instance.new("TextButton")
  16. local doors = Instance.new("TextButton")
  17. local fences = Instance.new("TextButton")
  18. local taser = Instance.new("TextButton")
  19. local inmate = Instance.new("TextButton")
  20. local crime = Instance.new("TextButton")
  21. local na = Instance.new("TextButton")
  22. local police = Instance.new("TextButton")
  23. local killaura = Instance.new("TextButton")
  24. local killall = Instance.new("TextButton")
  25. local close = Instance.new("TextButton")
  26. local fastm9 = Instance.new("TextButton")
  27. local fastrem = Instance.new("TextButton")
  28. local fastak = Instance.new("TextButton")
  29. local TeleportGUI = Instance.new("Frame")
  30. local PlayerTP_Input = Instance.new("TextBox")
  31. local PlayerTP_Teleport = Instance.new("TextButton")
  32. local OpenGUI = Instance.new("Frame")
  33. local open = Instance.new("TextButton")
  34. --Properties:
  35. PrisonLife.Name = "Prison Life"
  36. PrisonLife.Parent = game.CoreGui
  37. MainGUI.Name = "MainGUI"
  38. MainGUI.Parent = PrisonLife
  39. MainGUI.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  40. MainGUI.BorderColor3 = Color3.new(1, 0.333333, 0)
  41. MainGUI.BorderSizePixel = 5
  42. MainGUI.Position = UDim2.new(0.279383421, 0, 0.121513948, 0)
  43. MainGUI.Size = UDim2.new(0, 458, 0, 380)
  44. MainGUI.Visible = false
  45. MainGUI.Active = true
  46. MainGUI.Draggable = true
  47. title.Name = "title"
  48. title.Parent = MainGUI
  49. title.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  50. title.BorderColor3 = Color3.new(1, 0.333333, 0)
  51. title.Size = UDim2.new(0, 458, 0, 50)
  52. title.Font = Enum.Font.SourceSans
  53. title.Text = "Jmuse's Prison Life GUI v1.4"
  54. title.TextColor3 = Color3.new(1, 1, 1)
  55. title.TextScaled = true
  56. title.TextSize = 14
  57. title.TextWrapped = true
  58. credits.Name = "credits"
  59. credits.Parent = MainGUI
  60. credits.BackgroundColor3 = Color3.new(1, 0.333333, 0)
  61. credits.BorderColor3 = Color3.new(1, 0.333333, 0)
  62. credits.Position = UDim2.new(0, 0, 0.868421078, 0)
  63. credits.Size = UDim2.new(0, 458, 0, 50)
  64. credits.Font = Enum.Font.SourceSans
  65. credits.Text = "Made By: Jmuse#3982"
  66. credits.TextColor3 = Color3.new(1, 1, 1)
  67. credits.TextScaled = true
  68. credits.TextSize = 14
  69. credits.TextWrapped = true
  70. ScrollingFrame.Parent = MainGUI
  71. ScrollingFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  72. ScrollingFrame.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  73. ScrollingFrame.Position = UDim2.new(0.0131004369, 0, 0.150000006, 0)
  74. ScrollingFrame.Size = UDim2.new(0, 229, 0, 266)
  75. guns.Name = "guns"
  76. guns.Parent = ScrollingFrame
  77. guns.BackgroundColor3 = Color3.new(0, 0, 0)
  78. guns.BorderColor3 = Color3.new(0, 0, 0)
  79. guns.Size = UDim2.new(0, 216, 0, 50)
  80. guns.Font = Enum.Font.SourceSans
  81. guns.Text = "All Guns/Keycard"
  82. guns.TextColor3 = Color3.new(1, 1, 1)
  83. guns.TextScaled = true
  84. guns.TextSize = 14
  85. guns.TextWrapped = true
  86. guns.MouseButton1Click:connect(function()
  87. local Weapon = {"M4A1"}
  88. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  89. if v.Name == Weapon[1] then
  90. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  91. end
  92. end
  93. local Weapon = {"AK-47"}
  94. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  95. if v.Name == Weapon[1] then
  96. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  97. end
  98. end
  99. local Weapon = {"M9"}
  100. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  101. if v.Name == Weapon[1] then
  102. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  103. end
  104. end
  105. local Weapon = {"Remington 870"}
  106. for i,v in pairs(workspace.Prison_ITEMS.giver:GetChildren()) do
  107. if v.Name == Weapon[1] then
  108. local lol = workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  109. end
  110. end
  111. local Remote = game.Workspace.Remote['ItemHandler']
  112. local Arguments = {
  113. [1] = Workspace.Prison_ITEMS.single:WaitForChild("Key card").ITEMPICKUP
  114. }
  115. Remote:InvokeServer(unpack(Arguments))
  116. end)
  117. btools.Name = "btools"
  118. btools.Parent = ScrollingFrame
  119. btools.BackgroundColor3 = Color3.new(0, 0, 0)
  120. btools.BorderColor3 = Color3.new(0, 0, 0)
  121. btools.Position = UDim2.new(0, 0, 0.065789476, 0)
  122. btools.Size = UDim2.new(0, 216, 0, 50)
  123. btools.Font = Enum.Font.SourceSans
  124. btools.Text = "Btools"
  125. btools.TextColor3 = Color3.new(1, 1, 1)
  126. btools.TextScaled = true
  127. btools.TextSize = 14
  128. btools.TextWrapped = true
  129. btools.MouseButton1Click:connect(function()
  130. wait(0.1)
  131. local tool1 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  132. local tool2 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  133. local tool3 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
  134. tool1.BinType = "Clone"
  135. tool2.BinType = "Hammer"
  136. tool3.BinType = "Grab"
  137. end)
  138. clickarrest.Name = "clickarrest"
  139. clickarrest.Parent = ScrollingFrame
  140. clickarrest.BackgroundColor3 = Color3.new(0, 0, 0)
  141. clickarrest.BorderColor3 = Color3.new(0, 0, 0)
  142. clickarrest.Position = UDim2.new(0, 0, 0.131578952, 0)
  143. clickarrest.Size = UDim2.new(0, 216, 0, 50)
  144. clickarrest.Font = Enum.Font.SourceSans
  145. clickarrest.Text = "Click Arrest"
  146. clickarrest.TextColor3 = Color3.new(1, 1, 1)
  147. clickarrest.TextScaled = true
  148. clickarrest.TextSize = 14
  149. clickarrest.TextWrapped = true
  150. clickarrest.MouseButton1Click:connect(function()
  151. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  152. Text = ("[Click Arrest Is Now Permanently On! All You Have To Do Is Click On A Bad Guy Or A Inmate In The Wrong Area.]");
  153. Color = Color3.new(0,255,0);
  154. FontSize = Enum.FontSize.Size24;
  155. })
  156. local mouse = game.Players.LocalPlayer:GetMouse()
  157. local arrestEvent = game.Workspace.Remote.arrest
  158. mouse.Button1Down:connect(function()
  159. local obj = mouse.Target
  160. local response = arrestEvent:InvokeServer(obj)
  161. end)
  162. end)
  163. arrestall.Name = "arrestall"
  164. arrestall.Parent = ScrollingFrame
  165. arrestall.BackgroundColor3 = Color3.new(0, 0, 0)
  166. arrestall.BorderColor3 = Color3.new(0, 0, 0)
  167. arrestall.Position = UDim2.new(0, 0, 0.197368428, 0)
  168. arrestall.Size = UDim2.new(0, 216, 0, 50)
  169. arrestall.Font = Enum.Font.SourceSans
  170. arrestall.Text = "Arrest All"
  171. arrestall.TextColor3 = Color3.new(1, 1, 1)
  172. arrestall.TextScaled = true
  173. arrestall.TextSize = 14
  174. arrestall.TextWrapped = true
  175. arrestall.MouseButton1Click:connect(function()
  176. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  177. Text = ("[Arresting All Bad Guys...]");
  178. Color = Color3.new(0,255,0);
  179. FontSize = Enum.FontSize.Size24;
  180. })
  181. wait(0.1)
  182. local Player = game.Players.LocalPlayer
  183. local cpos = Player.Character.HumanoidRootPart.CFrame
  184. for i,v in pairs(game.Teams.Criminals:GetPlayers()) do
  185. if v.Name ~= Player.Name then
  186. local i = 10
  187. repeat
  188. wait()
  189. i = i-1
  190. game.Workspace.Remote.arrest:InvokeServer(v.Character.HumanoidRootPart)
  191. Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  192. until i == 0
  193. end
  194. end
  195. end)
  196. doors.Name = "doors"
  197. doors.Parent = ScrollingFrame
  198. doors.BackgroundColor3 = Color3.new(0, 0, 0)
  199. doors.BorderColor3 = Color3.new(0, 0, 0)
  200. doors.Position = UDim2.new(0, 0, 0.263157904, 0)
  201. doors.Size = UDim2.new(0, 216, 0, 50)
  202. doors.Font = Enum.Font.SourceSans
  203. doors.Text = "Remove Doors"
  204. doors.TextColor3 = Color3.new(1, 1, 1)
  205. doors.TextScaled = true
  206. doors.TextSize = 14
  207. doors.TextWrapped = true
  208. doors.MouseButton1Click:connect(function()
  209. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  210. Text = ("[All Doors Have Been Removed...]");
  211. Color = Color3.new(0,255,0);
  212. FontSize = Enum.FontSize.Size24;
  213. })
  214. game.Workspace.Doors:Destroy()
  215. end)
  216. fences.Name = "fences"
  217. fences.Parent = ScrollingFrame
  218. fences.BackgroundColor3 = Color3.new(0, 0, 0)
  219. fences.BorderColor3 = Color3.new(0, 0, 0)
  220. fences.Position = UDim2.new(0, 0, 0.328947365, 0)
  221. fences.Size = UDim2.new(0, 216, 0, 50)
  222. fences.Font = Enum.Font.SourceSans
  223. fences.Text = "Remove Fences"
  224. fences.TextColor3 = Color3.new(1, 1, 1)
  225. fences.TextScaled = true
  226. fences.TextSize = 14
  227. fences.TextWrapped = true
  228. fences.MouseButton1Click:connect(function()
  229. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  230. Text = ("[All Fences Have Been Removed...]");
  231. Color = Color3.new(0,255,0);
  232. FontSize = Enum.FontSize.Size24;
  233. })
  234. game.Workspace.Prison_Fences:Destroy()
  235. end)
  236. taser.Name = "taser"
  237. taser.Parent = ScrollingFrame
  238. taser.BackgroundColor3 = Color3.new(0, 0, 0)
  239. taser.BorderColor3 = Color3.new(0, 0, 0)
  240. taser.Position = UDim2.new(0, 0, 0.394736826, 0)
  241. taser.Size = UDim2.new(0, 216, 0, 50)
  242. taser.Font = Enum.Font.SourceSans
  243. taser.Text = "Bypass Taser"
  244. taser.TextColor3 = Color3.new(1, 1, 1)
  245. taser.TextScaled = true
  246. taser.TextSize = 14
  247. taser.TextWrapped = true
  248. taser.MouseButton1Click:connect(function()
  249. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
  250. game.Players.LocalPlayer.CharacterAdded:connect(function()
  251. game.Workspace:WaitForChild(game.Players.LocalPlayer.Name)
  252. game.Players.LocalPlayer.Character.ClientInputHandler.Disabled = true
  253. end)
  254. end)
  255. inmate.Name = "inmate"
  256. inmate.Parent = ScrollingFrame
  257. inmate.BackgroundColor3 = Color3.new(0, 0, 0)
  258. inmate.BorderColor3 = Color3.new(0, 0, 0)
  259. inmate.Position = UDim2.new(0, 0, 0.460526288, 0)
  260. inmate.Size = UDim2.new(0, 216, 0, 50)
  261. inmate.Font = Enum.Font.SourceSans
  262. inmate.Text = "Team Inmate"
  263. inmate.TextColor3 = Color3.new(1, 1, 1)
  264. inmate.TextScaled = true
  265. inmate.TextSize = 14
  266. inmate.TextWrapped = true
  267. inmate.MouseButton1Click:connect(function()
  268. Workspace.Remote.TeamEvent:FireServer("Bright orange")
  269. end)
  270. crime.Name = "crime"
  271. crime.Parent = ScrollingFrame
  272. crime.BackgroundColor3 = Color3.new(0, 0, 0)
  273. crime.BorderColor3 = Color3.new(0, 0, 0)
  274. crime.Position = UDim2.new(0, 0, 0.526315749, 0)
  275. crime.Size = UDim2.new(0, 216, 0, 50)
  276. crime.Font = Enum.Font.SourceSans
  277. crime.Text = "Team Crime"
  278. crime.TextColor3 = Color3.new(1, 1, 1)
  279. crime.TextScaled = true
  280. crime.TextSize = 14
  281. crime.TextWrapped = true
  282. crime.MouseButton1Click:connect(function()
  283. weld02 = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  284. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-919.958, 95.327, 2138.189)
  285. wait(0.075)
  286. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(weld02)
  287. end)
  288. na.Name = "na"
  289. na.Parent = ScrollingFrame
  290. na.BackgroundColor3 = Color3.new(0, 0, 0)
  291. na.BorderColor3 = Color3.new(0, 0, 0)
  292. na.Position = UDim2.new(0, 0, 0.59210521, 0)
  293. na.Size = UDim2.new(0, 216, 0, 50)
  294. na.Font = Enum.Font.SourceSans
  295. na.Text = "Team N/A"
  296. na.TextColor3 = Color3.new(1, 1, 1)
  297. na.TextScaled = true
  298. na.TextSize = 14
  299. na.TextWrapped = true
  300. na.MouseButton1Click:connect(function()
  301. Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  302. end)
  303. police.Name = "police"
  304. police.Parent = ScrollingFrame
  305. police.BackgroundColor3 = Color3.new(0, 0, 0)
  306. police.BorderColor3 = Color3.new(0, 0, 0)
  307. police.Position = UDim2.new(0, 0, 0.657894671, 0)
  308. police.Size = UDim2.new(0, 216, 0, 50)
  309. police.Font = Enum.Font.SourceSans
  310. police.Text = "Team Police"
  311. police.TextColor3 = Color3.new(1, 1, 1)
  312. police.TextScaled = true
  313. police.TextSize = 14
  314. police.TextWrapped = true
  315. police.MouseButton1Click:connect(function()
  316. Workspace.Remote.TeamEvent:FireServer("Bright blue")
  317. end)
  318. killaura.Name = "killaura"
  319. killaura.Parent = ScrollingFrame
  320. killaura.BackgroundColor3 = Color3.new(0, 0, 0)
  321. killaura.BorderColor3 = Color3.new(0, 0, 0)
  322. killaura.Position = UDim2.new(0, 0, 0.868420959, 0)
  323. killaura.Size = UDim2.new(0, 216, 0, 50)
  324. killaura.Font = Enum.Font.SourceSans
  325. killaura.Text = "Killaura [Press \"E\"]"
  326. killaura.TextColor3 = Color3.new(1, 0, 0)
  327. killaura.TextScaled = true
  328. killaura.TextSize = 14
  329. killaura.TextWrapped = true
  330. killaura.MouseButton1Click:connect(function()
  331. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  332. Text = ("Press E When You Are Next To Someone To Automatically Kill Them");
  333. Color = Color3.new(255,0,0);
  334. FontSize = Enum.FontSize.Size24;
  335. })
  336. plr = game:service'Players'.LocalPlayer
  337. char = plr.Character
  338. mouse = plr:GetMouse()
  339. on = false
  340. mouse.KeyDown:connect(function(key)
  341. if key == "e" then
  342. on = true
  343. end
  344. end)
  345. mouse.KeyUp:connect(function(key)
  346. if key == "e" then
  347. on = false
  348. end
  349. end)
  350. while wait(0.1) do
  351. for i, b in pairs(game.Players:GetChildren()) do
  352. if b.Name ~= plr.Name and not b:IsFriendsWith(plr.UserId) and on then
  353. for i = 1, 10 do
  354. game.ReplicatedStorage.meleeEvent:FireServer(b)
  355. end
  356. end
  357. end
  358. end
  359. while true do
  360. wait(0.01)
  361. for i,v in pairs (game.Players:GetChildren()) do
  362. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players[v.Name].Character.HumanoidRootPart.CFrame
  363. game.ReplicatedStorage.meleeEvent:FireServer(v.Name)
  364. wait(.8)
  365. end
  366. end
  367. end)
  368. killall.Name = "killall"
  369. killall.Parent = ScrollingFrame
  370. killall.BackgroundColor3 = Color3.new(0, 0, 0)
  371. killall.BorderColor3 = Color3.new(0, 0, 0)
  372. killall.Position = UDim2.new(0, 0, 0.93421042, 0)
  373. killall.Size = UDim2.new(0, 216, 0, 50)
  374. killall.Font = Enum.Font.SourceSans
  375. killall.Text = "Kill All"
  376. killall.TextColor3 = Color3.new(1, 0, 0)
  377. killall.TextScaled = true
  378. killall.TextSize = 14
  379. killall.TextWrapped = true
  380. killall.MouseButton1Click:connect(function()
  381. wait(0.5)
  382. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  383. Text = ("[R.I.P To Everyone!]");
  384. Color = Color3.new(255,0,0);
  385. FontSize = Enum.FontSize.Size24;
  386. })
  387. workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  388. game.Workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.giver["Remington 870"].ITEMPICKUP)
  389. wait(0.5)
  390. function kill(a)
  391. local A_1 =
  392. {
  393. [1] =
  394. {
  395. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-391.152252, 8.65560055, -83.2166901)),
  396. ["Distance"] = 3.2524313926697,
  397. ["Cframe"] = CFrame.new(840.310791, 101.334137, 2267.87988, 0.0636406094, 0.151434347, -0.986416459, 0, 0.988420188, 0.151741937, 0.997972965, -0.00965694897, 0.0629036576),
  398. ["Hit"] = a.Character.Head
  399. },
  400. [2] =
  401. {
  402. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-392.481476, -8.44939327, -76.7261353)),
  403. ["Distance"] = 3.2699294090271,
  404. ["Cframe"] = CFrame.new(840.290466, 101.184189, 2267.93506, 0.0964837447, 0.0589403138, -0.993587971, 4.65661287e-10, 0.998245299, 0.0592165813, 0.995334625, -0.00571343815, 0.0963144377),
  405. ["Hit"] = a.Character.Head
  406. },
  407. [3] =
  408. {
  409. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-389.21701, -2.50536323, -92.2163162)),
  410. ["Distance"] = 3.1665518283844,
  411. ["Cframe"] = CFrame.new(840.338867, 101.236496, 2267.80371, 0.0166504811, 0.0941716284, -0.995416701, 1.16415322e-10, 0.995554805, 0.0941846818, 0.999861419, -0.00156822044, 0.0165764652),
  412. ["Hit"] = a.Character.Head
  413. },
  414. [4] =
  415. {
  416. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-393.353973, 3.13988972, -72.5452042)),
  417. ["Distance"] = 3.3218522071838,
  418. ["Cframe"] = CFrame.new(840.277222, 101.285957, 2267.9707, 0.117109694, 0.118740402, -0.985994935, -1.86264515e-09, 0.992826641, 0.119563118, 0.993119001, -0.0140019981, 0.116269611),
  419. ["Hit"] = a.Character.Head
  420. },
  421. [5] =
  422. {
  423. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-390.73172, 3.2097764, -85.5477524)),
  424. ["Distance"] = 3.222757101059,
  425. ["Cframe"] = CFrame.new(840.317993, 101.286423, 2267.86035, 0.0517584644, 0.123365127, -0.991010666, 0, 0.992340803, 0.123530701, 0.99865967, -0.00639375951, 0.0513620302),
  426. ["Hit"] = a.Character.Head
  427. }
  428. }
  429. local A_2 = game.Players.LocalPlayer.Backpack["Remington 870"]
  430. local Event = game:GetService("ReplicatedStorage").ShootEvent
  431. Event:FireServer(A_1, A_2)
  432. Event:FireServer(A_1, A_2)
  433. end
  434. for i,v in pairs(game.Players:GetChildren())do
  435. if v.Name ~= game.Players.LocalPlayer.Name then
  436. kill(v)
  437. end
  438. end
  439. wait(1)
  440. workspace.Remote.TeamEvent:FireServer("Bright orange")
  441. end)
  442. close.Name = "close"
  443. close.Parent = MainGUI
  444. close.BackgroundColor3 = Color3.new(1, 0.129412, 0.141176)
  445. close.BorderColor3 = Color3.new(0, 0, 0)
  446. close.Position = UDim2.new(1.02183402, 0, 0, 0)
  447. close.Size = UDim2.new(0, 53, 0, 50)
  448. close.Font = Enum.Font.SourceSans
  449. close.Text = "X"
  450. close.TextColor3 = Color3.new(1, 1, 1)
  451. close.TextScaled = true
  452. close.TextSize = 14
  453. close.TextWrapped = true
  454. close.MouseButton1Click:connect(function()
  455. MainGUI.Visible = false
  456. OpenGUI.Visible = true
  457. end)
  458. fastm9.Name = "fastm9"
  459. fastm9.Parent = MainGUI
  460. fastm9.BackgroundColor3 = Color3.new(0, 0, 0)
  461. fastm9.BorderColor3 = Color3.new(1, 1, 1)
  462. fastm9.Position = UDim2.new(0.513100445, 0, 0.292734325, 0)
  463. fastm9.Size = UDim2.new(0, 213, 0, 50)
  464. fastm9.Font = Enum.Font.SourceSans
  465. fastm9.Text = "Fast M9"
  466. fastm9.TextColor3 = Color3.new(1, 1, 1)
  467. fastm9.TextScaled = true
  468. fastm9.TextSize = 14
  469. fastm9.TextWrapped = true
  470. fastm9.MouseButton1Click:connect(function()
  471. local Player = game.Players.LocalPlayer.Name
  472. local Gun = "M9" -- < -- Gun Name
  473. local Run = game:GetService("RunService")
  474. Gun = game.Players[Player].Character[Gun]
  475. local Mouse = game.Players.LocalPlayer:GetMouse()
  476. local Down = false
  477. local Sound = Gun.Handle.FireSound
  478. function CreateRay(Point_A, Point_B)
  479. local Ray = Ray.new(Point_A, (Point_B - Point_A).Unit * (2 ^ 31 - 1))
  480. local Part, Pos = workspace:FindPartOnRay(Ray, game.Players.LocalPlayer.Character)
  481. local Dist = (Point_A - Pos).Magnitude
  482. local CFrame = CFrame.new(Point_A, Pos) * CFrame.new(0, 0, -Dist / 2)
  483. return CFrame, Dist, Ray
  484. end
  485. function FireLaser(target)
  486. coroutine.resume(coroutine.create(function()
  487. local C, D, R = CreateRay(Gun.Muzzle.CFrame.p, target.CFrame.p)
  488. local Bullet = Instance.new("Part", Gun)
  489. Bullet.BrickColor = BrickColor.Yellow()
  490. Bullet.Material = "Neon"
  491. Bullet.Anchored = true
  492. Bullet.CanCollide = false
  493. Bullet.Size = Vector3.new(0.2, 0.2, D)
  494. Bullet.CFrame = C
  495. local bulletTable = {}
  496. table.insert(bulletTable, {
  497. Hit = target,
  498. Distance = D,
  499. Cframe = C,
  500. RayObject = R
  501. })
  502. game.ReplicatedStorage.ShootEvent:FireServer(bulletTable, Gun)
  503. local C = Sound:Clone()
  504. C.Parent = Gun
  505. C:Play()
  506. wait(0.05)
  507. Bullet:Remove()
  508. end))
  509. end
  510. Mouse.Button1Down:Connect(function()
  511. Down = true
  512. end)
  513. Mouse.Button1Up:Connect(function()
  514. Down = false
  515. end)
  516. while Run.Stepped:wait() do
  517. if Down == true then
  518. game.ReplicatedStorage.SoundEvent:FireServer(Sound, Gun)
  519. FireLaser(Mouse.Target)
  520. end
  521. end
  522. end)
  523. fastrem.Name = "fastrem"
  524. fastrem.Parent = MainGUI
  525. fastrem.BackgroundColor3 = Color3.new(0, 0, 0)
  526. fastrem.BorderColor3 = Color3.new(1, 1, 1)
  527. fastrem.Position = UDim2.new(0.513100445, 0, 0.1615538, 0)
  528. fastrem.Size = UDim2.new(0, 213, 0, 50)
  529. fastrem.Font = Enum.Font.SourceSans
  530. fastrem.Text = "Fast Shotgun"
  531. fastrem.TextColor3 = Color3.new(1, 1, 1)
  532. fastrem.TextScaled = true
  533. fastrem.TextSize = 14
  534. fastrem.TextWrapped = true
  535. fastrem.MouseButton1Click:connect(function()
  536. local Player = game.Players.LocalPlayer.Name
  537. local Gun = "Remington 870" -- < -- Gun Name
  538. local Run = game:GetService("RunService")
  539. Gun = game.Players[Player].Character[Gun]
  540. local Mouse = game.Players.LocalPlayer:GetMouse()
  541. local Down = false
  542. local Sound = Gun.Handle.FireSound
  543. function CreateRay(Point_A, Point_B)
  544. local Ray = Ray.new(Point_A, (Point_B - Point_A).Unit * (2 ^ 31 - 1))
  545. local Part, Pos = workspace:FindPartOnRay(Ray, game.Players.LocalPlayer.Character)
  546. local Dist = (Point_A - Pos).Magnitude
  547. local CFrame = CFrame.new(Point_A, Pos) * CFrame.new(0, 0, -Dist / 2)
  548. return CFrame, Dist, Ray
  549. end
  550. function FireLaser(target)
  551. coroutine.resume(coroutine.create(function()
  552. local C, D, R = CreateRay(Gun.Muzzle.CFrame.p, target.CFrame.p)
  553. local Bullet = Instance.new("Part", Gun)
  554. Bullet.BrickColor = BrickColor.Yellow()
  555. Bullet.Material = "Neon"
  556. Bullet.Anchored = true
  557. Bullet.CanCollide = false
  558. Bullet.Size = Vector3.new(0.2, 0.2, D)
  559. Bullet.CFrame = C
  560. local bulletTable = {}
  561. table.insert(bulletTable, {
  562. Hit = target,
  563. Distance = D,
  564. Cframe = C,
  565. RayObject = R
  566. })
  567. game.ReplicatedStorage.ShootEvent:FireServer(bulletTable, Gun)
  568. local C = Sound:Clone()
  569. C.Parent = Gun
  570. C:Play()
  571. wait(0.05)
  572. Bullet:Remove()
  573. end))
  574. end
  575. Mouse.Button1Down:Connect(function()
  576. Down = true
  577. end)
  578. Mouse.Button1Up:Connect(function()
  579. Down = false
  580. end)
  581. while Run.Stepped:wait() do
  582. if Down == true then
  583. game.ReplicatedStorage.SoundEvent:FireServer(Sound, Gun)
  584. FireLaser(Mouse.Target)
  585. end
  586. end
  587. end)
  588. fastak.Name = "fastak"
  589. fastak.Parent = MainGUI
  590. fastak.BackgroundColor3 = Color3.new(0, 0, 0)
  591. fastak.BorderColor3 = Color3.new(1, 1, 1)
  592. fastak.Position = UDim2.new(0.513100445, 0, 0.423914939, 0)
  593. fastak.Size = UDim2.new(0, 213, 0, 50)
  594. fastak.Font = Enum.Font.SourceSans
  595. fastak.Text = "Fast AK"
  596. fastak.TextColor3 = Color3.new(1, 1, 1)
  597. fastak.TextScaled = true
  598. fastak.TextSize = 14
  599. fastak.TextWrapped = true
  600. fastak.MouseButton1Click:connect(function()
  601. local Player = game.Players.LocalPlayer.Name
  602. local Gun = "AK-47" -- < -- Gun Name
  603. local Run = game:GetService("RunService")
  604. Gun = game.Players[Player].Character[Gun]
  605. local Mouse = game.Players.LocalPlayer:GetMouse()
  606. local Down = false
  607. local Sound = Gun.Handle.FireSound
  608. function CreateRay(Point_A, Point_B)
  609. local Ray = Ray.new(Point_A, (Point_B - Point_A).Unit * (2 ^ 31 - 1))
  610. local Part, Pos = workspace:FindPartOnRay(Ray, game.Players.LocalPlayer.Character)
  611. local Dist = (Point_A - Pos).Magnitude
  612. local CFrame = CFrame.new(Point_A, Pos) * CFrame.new(0, 0, -Dist / 2)
  613. return CFrame, Dist, Ray
  614. end
  615. function FireLaser(target)
  616. coroutine.resume(coroutine.create(function()
  617. local C, D, R = CreateRay(Gun.Muzzle.CFrame.p, target.CFrame.p)
  618. local Bullet = Instance.new("Part", Gun)
  619. Bullet.BrickColor = BrickColor.Yellow()
  620. Bullet.Material = "Neon"
  621. Bullet.Anchored = true
  622. Bullet.CanCollide = false
  623. Bullet.Size = Vector3.new(0.2, 0.2, D)
  624. Bullet.CFrame = C
  625. local bulletTable = {}
  626. table.insert(bulletTable, {
  627. Hit = target,
  628. Distance = D,
  629. Cframe = C,
  630. RayObject = R
  631. })
  632. game.ReplicatedStorage.ShootEvent:FireServer(bulletTable, Gun)
  633. local C = Sound:Clone()
  634. C.Parent = Gun
  635. C:Play()
  636. wait(0.05)
  637. Bullet:Remove()
  638. end))
  639. end
  640. Mouse.Button1Down:Connect(function()
  641. Down = true
  642. end)
  643. Mouse.Button1Up:Connect(function()
  644. Down = false
  645. end)
  646. while Run.Stepped:wait() do
  647. if Down == true then
  648. game.ReplicatedStorage.SoundEvent:FireServer(Sound, Gun)
  649. FireLaser(Mouse.Target)
  650. end
  651. end
  652. end)
  653. TeleportGUI.Name = "TeleportGUI"
  654. TeleportGUI.Parent = MainGUI
  655. TeleportGUI.BackgroundColor3 = Color3.new(0, 0, 0)
  656. TeleportGUI.BorderColor3 = Color3.new(0, 0, 0)
  657. TeleportGUI.Position = UDim2.new(0.512330532, 0, 0.586789727, 0)
  658. TeleportGUI.Size = UDim2.new(0, 214, 0, 100)
  659. PlayerTP_Input.Name = "PlayerTP_Input"
  660. PlayerTP_Input.Parent = TeleportGUI
  661. PlayerTP_Input.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  662. PlayerTP_Input.BorderColor3 = Color3.new(1, 1, 1)
  663. PlayerTP_Input.Position = UDim2.new(-1.1920929e-07, 0, -0.00965511799, 0)
  664. PlayerTP_Input.Size = UDim2.new(0, 214, 0, 50)
  665. PlayerTP_Input.Font = Enum.Font.SourceSans
  666. PlayerTP_Input.PlaceholderColor3 = Color3.new(1, 1, 1)
  667. PlayerTP_Input.Text = "[ENTER PLAYER NAME]"
  668. PlayerTP_Input.TextColor3 = Color3.new(1, 1, 1)
  669. PlayerTP_Input.TextScaled = true
  670. PlayerTP_Input.TextSize = 14
  671. PlayerTP_Input.TextWrapped = true
  672. PlayerTP_Teleport.Name = "PlayerTP_Teleport"
  673. PlayerTP_Teleport.Parent = TeleportGUI
  674. PlayerTP_Teleport.BackgroundColor3 = Color3.new(0, 0, 0)
  675. PlayerTP_Teleport.BorderColor3 = Color3.new(1, 1, 1)
  676. PlayerTP_Teleport.BorderSizePixel = 0
  677. PlayerTP_Teleport.Position = UDim2.new(0, 0, 0.488693237, 0)
  678. PlayerTP_Teleport.Size = UDim2.new(0, 214, 0, 50)
  679. PlayerTP_Teleport.Font = Enum.Font.SourceSans
  680. PlayerTP_Teleport.Text = "Teleport To Player"
  681. PlayerTP_Teleport.TextColor3 = Color3.new(1, 1, 1)
  682. PlayerTP_Teleport.TextScaled = true
  683. PlayerTP_Teleport.TextSize = 14
  684. PlayerTP_Teleport.TextWrapped = true
  685. PlayerTP_Teleport.MouseButton1Click:connect(function()
  686. local tp_namedplayer = PlayerTP_Input.Text
  687. local tp_player = game:GetService("Players")[tp_namedplayer]
  688. local PLR = game:GetService("Players").LocalPlayer
  689. local p = PlayerTP_Input.Text
  690. if tp_player then
  691. for i = 1,1 do
  692. wait(.08)
  693. PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 0, -1)
  694. end
  695. end
  696. end)
  697. OpenGUI.Name = "OpenGUI"
  698. OpenGUI.Parent = PrisonLife
  699. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  700. OpenGUI.Position = UDim2.new(0, 0, 0.533864558, 0)
  701. OpenGUI.Size = UDim2.new(0, 100, 0, 35)
  702. open.Name = "open"
  703. open.Parent = OpenGUI
  704. open.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  705. open.BorderColor3 = Color3.new(0, 0, 0)
  706. open.Size = UDim2.new(0, 100, 0, 35)
  707. open.Font = Enum.Font.SourceSans
  708. open.Text = "OPEN"
  709. open.TextColor3 = Color3.new(1, 1, 1)
  710. open.TextScaled = true
  711. open.TextSize = 14
  712. open.TextWrapped = true
  713. open.MouseButton1Click:connect(function()
  714. MainGUI.Visible = true
  715. OpenGUI.Visible = false
  716. end)
  717. wait(0.5)
  718. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  719. Text = ("Made By: Jmuse#3982");
  720. Color = Color3.new(255,255,0);
  721. FontSize = Enum.FontSize.Size24;
  722. })
  723. wait(0.5)
  724. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  725. Text = ("Added Fast Weapons, And also updated the kill all script!");
  726. Color = Color3.new(255,255,0);
  727. FontSize = Enum.FontSize.Size24;
  728. })
  729. wait(0.5)
  730. game:GetService("StarterGui"):SetCore("ChatMakeSystemMessage",{
  731. Text = ("Note: The Key Card Function Waits Till A Key Card Is On The Ground. So You Would Not Usually Get It Right Away");
  732. Color = Color3.new(255,255,0);
  733. FontSize = Enum.FontSize.Size24;
  734. })
  735. game:GetService("CoreGui").RobloxGui.PopupFrame.Visible = true
  736. game:GetService("CoreGui").RobloxGui.PopupFrame.PopupText.Text = "This GUI has a new design! Want to use it?"
  737. game:GetService("CoreGui").RobloxGui.PopupFrame.PopupAcceptButton.Text = "Sure!"
  738. game:GetService("CoreGui").RobloxGui.PopupFrame.PopupDeclineButton.Text = "Nah."
  739. game:GetService("CoreGui").RobloxGui.PopupFrame.PopupAcceptButton.MouseButton1Click:connect(function()
  740. game:GetService("CoreGui").RobloxGui.PopupFrame.Visible = false
  741. game:GetService("CoreGui")["Prison Life"]:Destroy()
  742. wait(0.5)
  743. loadstring(game:HttpGet("https://raw.githubusercontent.com/RbxCheats/RbxCheats/master/Scripts/NewPrisonLifeGUIv1.4.lua",true))()
  744. end)
  745. game:GetService("CoreGui").RobloxGui.PopupFrame.PopupDeclineButton.MouseButton1Click:connect(function()
  746. game:GetService("CoreGui").RobloxGui.PopupFrame.Visible = false
  747. end)

comments powered by Disqus