Advertisement
TheMoonGoddess

[Roblox: Prison Life] - Admin GUI script (Working as of March 8, 2020) - (Exploiting script!)

Oct 2nd, 2021
5,969
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.99 KB | None | 0 0
  1. local function SendNotification(title,text,duration,...)
  2. game.StarterGui:SetCore("SendNotification", {
  3. Title = title;
  4. Text = text;
  5. Icon = "";
  6. Duration = duration;
  7. })
  8. end
  9.  
  10. game.Players.ChildAdded:Connect(function(player)
  11. if not pcall (function()
  12. SendNotification("Player Joined",""..player.Name.." Has joined the server",2.5 )
  13. end) then
  14. print ("Error")
  15. end
  16. end)
  17.  
  18. game.Players.ChildRemoved:Connect(function(player)
  19. if not pcall (function()
  20. SendNotification("Player Left",""..player.Name.." Has rage quit",2.5 )
  21. end) then
  22. print ("Error")
  23. end
  24. end)
  25. for i,v in pairs(game:GetService("CoreGui"):GetChildren()) do
  26. if v.Name == "PurchasePromptApp" then
  27. v:Remove()
  28. end
  29. end
  30. for i,v in pairs(game:GetService("CoreGui"):GetChildren()) do
  31. if v.Name == "PrisonBreakerV1.6" then
  32. v:Remove()
  33. end
  34. end
  35.  
  36. local toggle = false
  37. local PrisonBreakerV16 = Instance.new("ScreenGui")
  38. local openmain = Instance.new("Frame")
  39. local open = Instance.new("TextButton")
  40. local main = Instance.new("Frame")
  41. local title = Instance.new("TextLabel")
  42. local home = Instance.new("TextButton")
  43. local guis = Instance.new("TextButton")
  44. local teams = Instance.new("TextButton")
  45. local funcs = Instance.new("TextButton")
  46. local homemain = Instance.new("Frame")
  47. local title_2 = Instance.new("TextLabel")
  48. local TextLabel = Instance.new("TextLabel")
  49. local teamsmain = Instance.new("Frame")
  50. local cop = Instance.new("TextButton")
  51. local inmate = Instance.new("TextButton")
  52. local neutral = Instance.new("TextButton")
  53. local crim = Instance.new("TextButton")
  54. local guismain = Instance.new("Frame")
  55. local prisonbreakerv15 = Instance.new("TextButton")
  56. local prisondestroyer = Instance.new("TextButton")
  57. local kickgui = Instance.new("TextButton")
  58. local scriptsmain = Instance.new("Frame")
  59. local godmode = Instance.new("TextButton")
  60. local destroy = Instance.new("TextButton")
  61. local hitbox = Instance.new("TextButton")
  62. local antikickmainon = Instance.new("Frame")
  63. local antikickon = Instance.new("TextButton")
  64. local antikickmainoff = Instance.new("Frame")
  65. local antikickoff = Instance.new("TextButton")
  66. local modguns = Instance.new("TextButton")
  67. PrisonBreakerV16.Name = "PrisonBreakerV1.6"
  68. PrisonBreakerV16.Parent = game.CoreGui
  69. -- All Skids Welcome
  70.  
  71. openmain.Name = "openmain"
  72. openmain.Parent = PrisonBreakerV16
  73. openmain.BackgroundColor3 = Color3.new(1, 1, 1)
  74. openmain.Position = UDim2.new(0.0104873544, 0, 0.549140036, 0)
  75. openmain.Size = UDim2.new(0, 100, 0, 26)
  76.  
  77. open.Name = "open"
  78. open.Parent = openmain
  79. open.BackgroundColor3 = Color3.new(1, 0, 0.498039)
  80. open.Position = UDim2.new(0, 0, -0.0299201012, 0)
  81. open.Size = UDim2.new(0, 100, 0, 26)
  82. open.Font = Enum.Font.GothamBlack
  83. open.Text = "OPEN"
  84. open.TextColor3 = Color3.new(0, 0, 0)
  85. open.TextSize = 18
  86. open.TextWrapped = true
  87. open.MouseButton1Down:connect(function()
  88. local main = game:GetService("CoreGui")["PrisonBreakerV1.6"].main
  89. wait(0.01)
  90. if toggle == false then
  91. main:TweenPosition(UDim2.new(0.081, 0, 0.3, 0), 'Out', 'Quad', 0.8)
  92. toggle = true
  93. else
  94. main:TweenPosition(UDim2.new(1.5, 0, 0.8, 0), 'Out', 'Quad', 0.8)
  95. toggle = false
  96. end
  97. wait(0.9)
  98. if main.Position == (UDim2.new(0.081, 0, 0.3, 0)) then
  99. open.Text = "CLOSE"
  100. else
  101. open.Text = "OPEN"
  102. end
  103. end)
  104.  
  105. main.Name = "main"
  106. main.Parent = PrisonBreakerV16
  107. main.BackgroundColor3 = Color3.new(0, 0, 127)
  108. main.BorderColor3 = Color3.new(0, 0, 127)
  109. main.BorderSizePixel = 5
  110. main.Position = UDim2.new(1.5, 0, 0.8, 0)
  111. main.Size = UDim2.new(0, 465, 0, 341)
  112. main.Active = true
  113. main.Draggable = true
  114.  
  115. title.Name = "title"
  116. title.Parent = main
  117. title.BackgroundColor3 = Color3.new(0, 0, 0)
  118. title.BorderSizePixel = 2
  119. title.Position = UDim2.new(0.0064516128, 0, 0.829912007, 0)
  120. title.Size = UDim2.new(0, 459, 0, 58)
  121. title.Font = Enum.Font.GothamBold
  122. title.Text = "PrisonBreaker V1.6 Made By Jake11price"
  123. title.TextColor3 = Color3.new(1, 0, 0)
  124. title.TextSize = 15
  125.  
  126. home.Name = "home"
  127. home.Parent = main
  128. home.BackgroundColor3 = Color3.new(255, 0, 0)
  129. home.Position = UDim2.new(0.0129032256, 0, 0.0263929628, 0)
  130. home.Size = UDim2.new(0, 100, 0, 37)
  131. home.Font = Enum.Font.GothamBlack
  132. home.Text = "Home"
  133. home.TextColor3 = Color3.new(0, 0, 0)
  134. home.TextSize = 25
  135. function SCRIPT_CIMJ66_FAKESCRIPT() -- Frame.LocalScript
  136. local script = Instance.new('LocalScript')
  137. script.Parent = home
  138. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  139.  
  140. counter = 0
  141.  
  142. while wait(0.1)do
  143. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  144.  
  145. counter = counter + 0.01
  146. end
  147.  
  148.  
  149. end
  150. coroutine.resume(coroutine.create(SCRIPT_CIMJ66_FAKESCRIPT))
  151. home.MouseButton1Down:connect(function()
  152. teamsmain.Visible = false
  153. guismain.Visible = false
  154. scriptsmain.Visible = false
  155. homemain.Visible = true
  156. end)
  157.  
  158. guis.Name = "guis"
  159. guis.Parent = main
  160. guis.BackgroundColor3 = Color3.new(255, 0, 0)
  161. guis.Position = UDim2.new(0.246848866, 0, 0.0263929628, 0)
  162. guis.Size = UDim2.new(0, 108, 0, 37)
  163. guis.Font = Enum.Font.GothamBlack
  164. guis.Text = "Guis"
  165. guis.TextColor3 = Color3.new(0, 0, 0)
  166. guis.TextSize = 25
  167. function SCRIPT_CIMJ66_FAKESCRIPT() -- Frame.LocalScript
  168. local script = Instance.new('LocalScript')
  169. script.Parent = guis
  170. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  171.  
  172. counter = 0
  173.  
  174. while wait(0.1)do
  175. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  176.  
  177. counter = counter + 0.01
  178. end
  179.  
  180.  
  181. end
  182. coroutine.resume(coroutine.create(SCRIPT_CIMJ66_FAKESCRIPT))
  183. guis.MouseButton1Down:connect(function()
  184. teamsmain.Visible = false
  185. scriptsmain.Visible = false
  186. homemain.Visible = false
  187. guismain.Visible = true
  188. end)
  189.  
  190. teams.Name = "teams"
  191. teams.Parent = main
  192. teams.BackgroundColor3 = Color3.new(255, 0, 0)
  193. teams.Position = UDim2.new(0.500149369, 0, 0.0263929628, 0)
  194. teams.Size = UDim2.new(0, 108, 0, 37)
  195. teams.Font = Enum.Font.GothamBlack
  196. teams.Text = "Teams"
  197. teams.TextColor3 = Color3.new(0, 0, 0)
  198. teams.TextSize = 25
  199. function SCRIPT_CIMJ66_FAKESCRIPT() -- Frame.LocalScript
  200. local script = Instance.new('LocalScript')
  201. script.Parent = teams
  202. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  203.  
  204. counter = 0
  205.  
  206. while wait(0.1)do
  207. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  208.  
  209. counter = counter + 0.01
  210. end
  211.  
  212.  
  213. end
  214. coroutine.resume(coroutine.create(SCRIPT_CIMJ66_FAKESCRIPT))
  215. teams.MouseButton1Down:connect(function()
  216. scriptsmain.Visible = false
  217. homemain.Visible = false
  218. guismain.Visible = false
  219. teamsmain.Visible = true
  220. end)
  221.  
  222. funcs.Name = "funcs"
  223. funcs.Parent = main
  224. funcs.BackgroundColor3 = Color3.new(255, 0, 0)
  225. funcs.Position = UDim2.new(0.754838645, 0, 0.0263929628, 0)
  226. funcs.Size = UDim2.new(0, 108, 0, 37)
  227. funcs.Font = Enum.Font.GothamBlack
  228. funcs.Text = "New Scripts"
  229. funcs.TextColor3 = Color3.new(0, 0, 0)
  230. funcs.TextSize = 18
  231. function SCRIPT_CIMJ66_FAKESCRIPT() -- Frame.LocalScript
  232. local script = Instance.new('LocalScript')
  233. script.Parent = funcs
  234. function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  235.  
  236. counter = 0
  237.  
  238. while wait(0.1)do
  239. script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  240.  
  241. counter = counter + 0.01
  242. end
  243.  
  244.  
  245. end
  246. coroutine.resume(coroutine.create(SCRIPT_CIMJ66_FAKESCRIPT))
  247. funcs.MouseButton1Down:connect(function()
  248. homemain.Visible = false
  249. guismain.Visible = false
  250. teamsmain.Visible = false
  251. scriptsmain.Visible = true
  252. end)
  253.  
  254. homemain.Name = "homemain"
  255. homemain.Parent = main
  256. homemain.BackgroundColor3 = Color3.new(0, 0, 0)
  257. homemain.Position = UDim2.new(0, 0, 0.178885639, 0)
  258. homemain.Size = UDim2.new(0, 465, 0, 218)
  259.  
  260. title_2.Name = "title"
  261. title_2.Parent = homemain
  262. title_2.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  263. title_2.BorderSizePixel = 0
  264. title_2.Position = UDim2.new(0.0206066482, 0, 0.0379392318, 0)
  265. title_2.Size = UDim2.new(0, 445, 0, 87)
  266. title_2.Font = Enum.Font.GothamBlack
  267. title_2.Text = "This is my last prison life gui... Enjoy the new scripts!"
  268. title_2.TextColor3 = Color3.new(0, 0, 0)
  269. title_2.TextScaled = true
  270. title_2.TextSize = 14
  271. title_2.TextWrapped = true
  272.  
  273. TextLabel.Parent = homemain
  274. TextLabel.BackgroundColor3 = Color3.new(0, 1, 0)
  275. TextLabel.BorderSizePixel = 0
  276. TextLabel.Position = UDim2.new(0.0193548389, 0, 0.486238539, 0)
  277. TextLabel.Size = UDim2.new(0, 445, 0, 87)
  278. TextLabel.Font = Enum.Font.GothamBlack
  279. TextLabel.Text = "Subscribe to my Youtube Channel: Jake11price"
  280. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  281. TextLabel.TextScaled = true
  282. TextLabel.TextSize = 14
  283. TextLabel.TextWrapped = true
  284.  
  285. teamsmain.Name = "teamsmain"
  286. teamsmain.Parent = main
  287. teamsmain.BackgroundColor3 = Color3.new(0, 0, 0)
  288. teamsmain.BorderSizePixel = 0
  289. teamsmain.Position = UDim2.new(0, 0, 0.178885639, 0)
  290. teamsmain.Size = UDim2.new(0, 462, 0, 222)
  291. teamsmain.Visible = false
  292.  
  293. cop.Name = "cop"
  294. cop.Parent = teamsmain
  295. cop.BackgroundColor3 = Color3.new(0, 0, 1)
  296. cop.BorderSizePixel = 1
  297. cop.Position = UDim2.new(0.0199004635, 0, 0.28773582, 0)
  298. cop.Size = UDim2.new(0, 89, 0, 70)
  299. cop.Font = Enum.Font.GothamBlack
  300. cop.Text = "Guards"
  301. cop.TextColor3 = Color3.new(0, 0, 0)
  302. cop.TextSize = 18
  303. cop.TextWrapped = true
  304. cop.MouseButton1Down:connect(function()
  305. workspace.Remote.TeamEvent:FireServer("Bright blue")
  306. end)
  307.  
  308. inmate.Name = "inmate"
  309. inmate.Parent = teamsmain
  310. inmate.BackgroundColor3 = Color3.new(1, 0.666667, 0)
  311. inmate.BorderSizePixel = 1
  312. inmate.Position = UDim2.new(0.278606981, 0, 0.28773585, 0)
  313. inmate.Size = UDim2.new(0, 89, 0, 70)
  314. inmate.Font = Enum.Font.GothamBlack
  315. inmate.Text = "Inmates"
  316. inmate.TextColor3 = Color3.new(0, 0, 0)
  317. inmate.TextSize = 18
  318. inmate.MouseButton1Down:connect(function()
  319. workspace.Remote.TeamEvent:FireServer("Bright orange")
  320. end)
  321.  
  322. neutral.Name = "neutral"
  323. neutral.Parent = teamsmain
  324. neutral.BackgroundColor3 = Color3.new(0.584314, 0.584314, 0.584314)
  325. neutral.BorderSizePixel = 1
  326. neutral.Position = UDim2.new(0.524875581, 0, 0.28773585, 0)
  327. neutral.Size = UDim2.new(0, 89, 0, 70)
  328. neutral.Font = Enum.Font.GothamBlack
  329. neutral.Text = "Neutral"
  330. neutral.TextColor3 = Color3.new(0, 0, 0)
  331. neutral.TextSize = 18
  332. neutral.MouseButton1Down:connect(function()
  333. Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  334. end)
  335.  
  336. crim.Name = "crim"
  337. crim.Parent = teamsmain
  338. crim.BackgroundColor3 = Color3.new(1, 0, 0)
  339. crim.BorderSizePixel = 1
  340. crim.Position = UDim2.new(0.768656731, 0, 0.28773585, 0)
  341. crim.Size = UDim2.new(0, 89, 0, 70)
  342. crim.Font = Enum.Font.GothamBlack
  343. crim.Text = "Criminals"
  344. crim.TextColor3 = Color3.new(0, 0, 0)
  345. crim.TextSize = 18
  346. crim.MouseButton1Down:connect(function()
  347. local Crim = Instance.new("Part")
  348. Crim.Name = "plr"
  349. Crim.Parent = workspace
  350. Crim.Anchored = true
  351. Crim.Archivable = true
  352. Crim.CFrame = CFrame.new(9e99, 9e99, 9e99)
  353. Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
  354. wait(0.1)
  355. Crim.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  356. Crim.Transparency = 1
  357. Crim.Anchored = true
  358. Crim.CanCollide = false
  359. lol = true
  360. Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
  361. Bruh.CanCollide = false
  362. Bruh.Size = Vector3.new(51.05, 24.12, 54.76)
  363. Bruh.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  364. Bruh.Transparency = 1
  365. wait(0.1)
  366. lol = false
  367. wait(0.04)
  368. if lol == false then
  369. Bruh.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  370. Bruh.Size = Vector3.new(6, 0.2, 6)
  371. Bruh.Transparency = 0
  372. lol = false
  373. end
  374. end)
  375.  
  376. guismain.Name = "guismain"
  377. guismain.Parent = main
  378. guismain.BackgroundColor3 = Color3.new(1, 0.45098, 0)
  379. guismain.BorderSizePixel = 0
  380. guismain.Position = UDim2.new(0, 0, 0.178885639, 0)
  381. guismain.Size = UDim2.new(0, 462, 0, 222)
  382. guismain.Visible = false
  383.  
  384. prisonbreakerv15.Name = "prisonbreakerv1.5"
  385. prisonbreakerv15.Parent = guismain
  386. prisonbreakerv15.BackgroundColor3 = Color3.new(0, 0, 0)
  387. prisonbreakerv15.Position = UDim2.new(0.0273631848, 0, 0.0566037744, 0)
  388. prisonbreakerv15.Size = UDim2.new(0, 109, 0, 50)
  389. prisonbreakerv15.Font = Enum.Font.GothamBlack
  390. prisonbreakerv15.Text = "PrisonBreaker V1.5"
  391. prisonbreakerv15.TextColor3 = Color3.new(0, 1, 0)
  392. prisonbreakerv15.TextScaled = true
  393. prisonbreakerv15.TextSize = 14
  394. prisonbreakerv15.TextWrapped = true
  395. prisonbreakerv15.MouseButton1Down:connect(function()
  396. loadstring(game:HttpGet("https://pastebin.com/raw/HpCpt9rt",true))()
  397. end)
  398.  
  399. prisondestroyer.Name = "prisondestroyer"
  400. prisondestroyer.Parent = guismain
  401. prisondestroyer.BackgroundColor3 = Color3.new(0, 0, 0)
  402. prisondestroyer.Position = UDim2.new(0.363184065, 0, 0.0566037744, 0)
  403. prisondestroyer.Size = UDim2.new(0, 109, 0, 50)
  404. prisondestroyer.Font = Enum.Font.GothamBlack
  405. prisondestroyer.Text = "PrisonDestroyer"
  406. prisondestroyer.TextColor3 = Color3.new(0, 1, 0)
  407. prisondestroyer.TextScaled = true
  408. prisondestroyer.TextSize = 14
  409. prisondestroyer.TextWrapped = true
  410. prisondestroyer.MouseButton1Down:connect(function()
  411. loadstring(game:HttpGet("https://pastebin.com/raw/nu20tAZE",true))()
  412. end)
  413.  
  414. kickgui.Name = "kickgui"
  415. kickgui.Parent = guismain
  416. kickgui.BackgroundColor3 = Color3.new(0, 0, 0)
  417. kickgui.Position = UDim2.new(0.701492548, 0, 0.0566037744, 0)
  418. kickgui.Size = UDim2.new(0, 109, 0, 50)
  419. kickgui.Font = Enum.Font.GothamBlack
  420. kickgui.Text = "Kick Gui"
  421. kickgui.TextColor3 = Color3.new(0, 1, 0)
  422. kickgui.TextSize = 18
  423. kickgui.TextWrapped = true
  424. kickgui.MouseButton1Down:connect(function()
  425. loadstring(game:HttpGet("https://pastebin.com/raw/AncyYd8Q", true))()
  426. end)
  427.  
  428. scriptsmain.Name = "scriptsmain"
  429. scriptsmain.Parent = main
  430. scriptsmain.BackgroundColor3 = Color3.new(1, 0.45098, 0)
  431. scriptsmain.BorderSizePixel = 0
  432. scriptsmain.Position = UDim2.new(0, 0, 0.178885639, 0)
  433. scriptsmain.Size = UDim2.new(0, 462, 0, 222)
  434. scriptsmain.Visible = false
  435.  
  436. godmode.Name = "godmode"
  437. godmode.Parent = scriptsmain
  438. godmode.BackgroundColor3 = Color3.new(0, 0, 0)
  439. godmode.Position = UDim2.new(0.12686567, 0, 0.061611373, 0)
  440. godmode.Size = UDim2.new(0, 126, 0, 44)
  441. godmode.Font = Enum.Font.GothamBlack
  442. godmode.Text = "Godmode (SWAT ONLY)"
  443. godmode.TextColor3 = Color3.new(0, 1, 0)
  444. godmode.TextScaled = true
  445. godmode.TextSize = 14
  446. godmode.TextWrapped = true
  447. godmode.MouseButton1Down:connect(function()
  448. game.Players.LocalPlayer.Character.Humanoid.HealthChanged:Connect(function(health)
  449. if health < game.Players.LocalPlayer.Character.Humanoid.MaxHealth then
  450. workspace.Remote.TeamEvent:FireServer("Bright blue")
  451. workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.clothes["Riot Police"].ITEMPICKUP)
  452. workspace.Remote.TeamEvent:FireServer("Bright orange")
  453. end
  454. end)
  455. end)
  456.  
  457. destroy.Name = "destroy"
  458. destroy.Parent = scriptsmain
  459. destroy.BackgroundColor3 = Color3.new(0, 0, 0)
  460. destroy.Position = UDim2.new(0.559701502, 0, 0.061611373, 0)
  461. destroy.Size = UDim2.new(0, 126, 0, 44)
  462. destroy.Font = Enum.Font.GothamBlack
  463. destroy.Text = "CRASH OTHERS!"
  464. destroy.TextColor3 = Color3.new(0, 1, 0)
  465. destroy.TextScaled = true
  466. destroy.TextSize = 14
  467. destroy.TextWrapped = true
  468. destroy.MouseButton1Down:connect(function()
  469. game:GetService("StarterGui"):SetCore("SendNotification", {
  470. Title = "Destroying Server...";
  471. Text = "Please wait up to 30 seconds!!";
  472. })
  473. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(917.909851, 129.489944, 2328.6958)
  474. wait(0.5)
  475. local client = game:GetService("Players").LocalPlayer
  476.  
  477. for _, child in next, client.Backpack:GetChildren() do
  478. if child:IsA("Tool") then
  479. client.Character.Humanoid:UnequipTools()
  480. end
  481. end
  482.  
  483. local Crim = Instance.new("Part")
  484. Crim.Name = "plr"
  485. Crim.Parent = workspace
  486. Crim.Anchored = true
  487. Crim.Archivable = true
  488. Crim.CFrame = CFrame.new(9e99, 9e99, 9e99)
  489. Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
  490. wait(0.1)
  491. Crim.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  492. Crim.Transparency = 1
  493. Crim.Anchored = true
  494. Crim.CanCollide = false
  495. lol = true
  496. Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
  497. Bruh.CanCollide = false
  498. Bruh.Size = Vector3.new(51.05, 24.12, 54.76)
  499. Bruh.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  500. Bruh.Transparency = 1
  501. wait(0.1)
  502. lol = false
  503. wait(0.04)
  504. if lol == false then
  505. Bruh.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  506. Bruh.Size = Vector3.new(6, 0.2, 6)
  507. Bruh.Transparency = 0
  508. lol = false
  509. end
  510. game.Workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.giver["Remington 870"].ITEMPICKUP)
  511. wait(0.1)
  512. local tbl_main =
  513. {
  514. "CRASHING SERVER!! Script made by jake11price.",
  515. "All"
  516. }
  517. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(tbl_main))
  518. wait(0.5)
  519. game:GetService("StarterGui"):SetCore("SendNotification", {
  520. Title = "Warning!!";
  521. Text = "DO NOT EQUIP THE REMINGTON 870 UNTIL YOU TURN BACK INTO AN INMATE!!";
  522. })
  523. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  524. for i=1,650 do
  525. local tbl_36BA2890 =
  526. {
  527. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.812744, 31.2091656, 121.524826)),
  528. ["Distance"] = 61.344123840332,
  529. ["Cframe"] = CFrame.new(809.089844, 101.766418, 2219.49268, 0.363455683, 0.0792314336, -0.928236127, -1.86264515e-09, 0.996376872, 0.0850477219, 0.931611478, -0.0309110768, 0.362138808),
  530. ["Hit"] = v.Character.Head
  531. }
  532. local tbl_36B5BF78 =
  533. {
  534. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.036713, 35.5271149, 122.755898)),
  535. ["Distance"] = 61.299308776855,
  536. ["Cframe"] = CFrame.new(809.180542, 102.100838, 2219.57886, 0.366918802, 0.0893238857, -0.92595464, 0, 0.995379448, 0.0960210636, 0.930253029, -0.035231933, 0.365223378),
  537. ["Hit"] = v.Character.Head
  538. }
  539. local tbl_36B585E8 =
  540. {
  541. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.921326, 20.3493805, 123.473427)),
  542. ["Distance"] = 61.141574859619,
  543. ["Cframe"] = CFrame.new(809.180542, 100.912926, 2219.61255, 0.36787042, 0.0533849634, -0.928343356, 0, 0.99835068, 0.0574107729, 0.929877102, -0.021119725, 0.367263645),
  544. ["Hit"] = v.Character.Head
  545. }
  546. local tbl_36B5CC38 =
  547. {
  548. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-371.464417, 33.5804787, 144.521744)),
  549. ["Distance"] = 63.866916656494,
  550. ["Cframe"] = CFrame.new(808.680542, 102.047562, 2221.70142, 0.418726623, 0.0821772888, -0.90438652, 0, 0.995897233, 0.0904924273, 0.908112347, -0.0378915891, 0.417008668),
  551. ["Hit"] = v.Character.Head
  552. }
  553. local tbl_36B5BB28 =
  554. {
  555. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-376.177948, 24.8940163, 133.680374)),
  556. ["Distance"] = 62.931880950928,
  557. ["Cframe"] = CFrame.new(808.680542, 101.319054, 2220.68823, 0.391926825, 0.0631896704, -0.917823792, 0, 0.997638524, 0.0686846897, 0.91999644, -0.0269193724, 0.391001284),
  558. ["Hit"] = v.Character.Head
  559. }
  560. local tbl_36B58A98 =
  561. {
  562. tbl_36B5BB28,
  563. tbl_36B5CC38,
  564. tbl_36B585E8,
  565. tbl_36B5BF78,
  566. tbl_36BA2890
  567. }
  568. local tbl_main =
  569. {
  570. tbl_36B58A98,
  571. game:GetService("Players").LocalPlayer.Backpack["Remington 870"]
  572. }
  573. game:GetService("ReplicatedStorage").ShootEvent:FireServer(unpack(tbl_main))
  574. local tbl_36BA2890 =
  575. {
  576. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.812744, 31.2091656, 121.524826)),
  577. ["Distance"] = 61.344123840332,
  578. ["Cframe"] = CFrame.new(809.089844, 101.766418, 2219.49268, 0.363455683, 0.0792314336, -0.928236127, -1.86264515e-09, 0.996376872, 0.0850477219, 0.931611478, -0.0309110768, 0.362138808),
  579. ["Hit"] = v.Character.Head
  580. }
  581. local tbl_36B5BF78 =
  582. {
  583. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.036713, 35.5271149, 122.755898)),
  584. ["Distance"] = 61.299308776855,
  585. ["Cframe"] = CFrame.new(809.180542, 102.100838, 2219.57886, 0.366918802, 0.0893238857, -0.92595464, 0, 0.995379448, 0.0960210636, 0.930253029, -0.035231933, 0.365223378),
  586. ["Hit"] = v.Character.Head
  587. }
  588. local tbl_36B585E8 =
  589. {
  590. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-379.921326, 20.3493805, 123.473427)),
  591. ["Distance"] = 61.141574859619,
  592. ["Cframe"] = CFrame.new(809.180542, 100.912926, 2219.61255, 0.36787042, 0.0533849634, -0.928343356, 0, 0.99835068, 0.0574107729, 0.929877102, -0.021119725, 0.367263645),
  593. ["Hit"] = v.Character.Head
  594. }
  595. local tbl_36B5CC38 =
  596. {
  597. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-371.464417, 33.5804787, 144.521744)),
  598. ["Distance"] = 63.866916656494,
  599. ["Cframe"] = CFrame.new(808.680542, 102.047562, 2221.70142, 0.418726623, 0.0821772888, -0.90438652, 0, 0.995897233, 0.0904924273, 0.908112347, -0.0378915891, 0.417008668),
  600. ["Hit"] = v.Character.Head
  601. }
  602. local tbl_36B5BB28 =
  603. {
  604. ["RayObject"] = Ray.new(Vector3.new(839.947937, 99.4999466, 2211.61719), Vector3.new(-376.177948, 24.8940163, 133.680374)),
  605. ["Distance"] = 62.931880950928,
  606. ["Cframe"] = CFrame.new(808.680542, 101.319054, 2220.68823, 0.391926825, 0.0631896704, -0.917823792, 0, 0.997638524, 0.0686846897, 0.91999644, -0.0269193724, 0.391001284),
  607. ["Hit"] = v.Character.Head
  608. }
  609. local tbl_36B58A98 =
  610. {
  611. tbl_36B5BB28,
  612. tbl_36B5CC38,
  613. tbl_36B585E8,
  614. tbl_36B5BF78,
  615. tbl_36BA2890
  616. }
  617. local tbl_main =
  618. {
  619. tbl_36B58A98,
  620. game:GetService("Players").LocalPlayer.Backpack["Remington 870"]
  621. }
  622. game:GetService("ReplicatedStorage").ShootEvent:FireServer(unpack(tbl_main))
  623. end
  624. end
  625. workspace.Remote.TeamEvent:FireServer("Bright orange")
  626. end)
  627.  
  628. hitbox.Name = "hitbox"
  629. hitbox.Parent = scriptsmain
  630. hitbox.BackgroundColor3 = Color3.new(0, 0, 0)
  631. hitbox.Position = UDim2.new(0.12686567, 0, 0.379146874, 0)
  632. hitbox.Size = UDim2.new(0, 126, 0, 50)
  633. hitbox.Font = Enum.Font.GothamBlack
  634. hitbox.Text = "Guard Hitbox Expander"
  635. hitbox.TextColor3 = Color3.new(0, 1, 0)
  636. hitbox.TextScaled = true
  637. hitbox.TextSize = 14
  638. hitbox.TextWrapped = true
  639. hitbox.MouseButton1Down:connect(function()
  640. _G.HeadSize = 10
  641. _G.Disabled = true
  642. _G.Reset = true
  643.  
  644. game:GetService('RunService').RenderStepped:connect(function()
  645. if _G.Disabled then
  646. for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
  647. if v.Name ~= game:GetService('Players').LocalPlayer.Name then
  648. pcall(function()
  649. v.Character.HumanoidRootPart.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
  650. v.Character.HumanoidRootPart.Transparency = 0.7
  651. v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really blue")
  652. v.Character.HumanoidRootPart.Material = "Neon"
  653. v.Character.HumanoidRootPart.CanCollide = false
  654. end)
  655. if _G.Reset then
  656. if v.Character.Humanoid.Health == 0 then
  657. v.Character.HumanoidRootPart.Size = Vector3.new(1,1,1)
  658. end
  659. end
  660. end
  661. end
  662. end
  663. end)
  664. end)
  665.  
  666. antikickmainon.Name = "antikickmainon"
  667. antikickmainon.Parent = scriptsmain
  668. antikickmainon.BackgroundColor3 = Color3.new(1, 1, 1)
  669. antikickmainon.Position = UDim2.new(0.559701502, 0, 0.379146934, 0)
  670. antikickmainon.Size = UDim2.new(0, 126, 0, 50)
  671. antikickmainon.Visible = false
  672.  
  673. antikickon.Name = "antikickon"
  674. antikickon.Parent = antikickmainon
  675. antikickon.BackgroundColor3 = Color3.new(0, 1, 0)
  676. antikickon.Size = UDim2.new(0, 126, 0, 50)
  677. antikickon.Font = Enum.Font.GothamBlack
  678. antikickon.Text = "CrimAura (On)"
  679. antikickon.TextColor3 = Color3.new(0, 0, 0)
  680. antikickon.TextSize = 14
  681. antikickon.MouseButton1Down:connect(function()
  682. antikickmainon.Visible = false
  683. antikickmainoff.Visible = true
  684. _G.Crim = false
  685. end)
  686.  
  687. antikickmainoff.Name = "antikickmainoff"
  688. antikickmainoff.Parent = scriptsmain
  689. antikickmainoff.BackgroundColor3 = Color3.new(1, 1, 1)
  690. antikickmainoff.Position = UDim2.new(0.559701562, 0, 0.379146814, 0)
  691. antikickmainoff.Size = UDim2.new(0, 126, 0, 50)
  692.  
  693. antikickoff.Name = "antikickoff"
  694. antikickoff.Parent = antikickmainoff
  695. antikickoff.BackgroundColor3 = Color3.new(1, 0, 0)
  696. antikickoff.Size = UDim2.new(0, 126, 0, 50)
  697. antikickoff.Font = Enum.Font.GothamBlack
  698. antikickoff.Text = "CrimAura (Off)"
  699. antikickoff.TextColor3 = Color3.new(0, 0, 0)
  700. antikickoff.TextSize = 14
  701. antikickoff.TextWrapped = true
  702. antikickoff.MouseButton1Down:connect(function()
  703. antikickmainoff.Visible = false
  704. antikickmainon.Visible = true
  705. wait(0.6)
  706. _G.Crim = true
  707. while _G.Crim == true do wait() do
  708. for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
  709. for o,l in pairs(game.Teams["Inmates"]:GetPlayers()) do
  710. local tbl_main =
  711. {
  712. game:GetService("Workspace")["Prison_ITEMS"].single["Crude Knife"].ITEMPICKUP
  713. }
  714. game:GetService("Workspace").Remote.ItemHandler:InvokeServer(unpack(tbl_main))
  715.  
  716. wait(0.00001)
  717. for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
  718. for o,l in pairs(game.Teams["Inmates"]:GetPlayers()) do
  719. if v.Name ~= game.Players.LocalPlayer.Name then
  720. if l.Name ~= game.Players.LocalPlayer.Name then
  721. local tbl_main =
  722. {
  723. v,
  724. game:GetService("Players").LocalPlayer.Backpack["Crude Knife"]
  725. }
  726. game:GetService("ReplicatedStorage").meleeEvent:FireServer(unpack(tbl_main))
  727. local tbl_main =
  728. {
  729. l,
  730. game:GetService("Players").LocalPlayer.Backpack["Crude Knife"]
  731. }
  732. game:GetService("ReplicatedStorage").meleeEvent:FireServer(unpack(tbl_main))
  733.  
  734.  
  735. local Crim = Instance.new("Part")
  736. Crim.Name = "plr"
  737. Crim.Parent = workspace
  738. Crim.Anchored = true
  739. Crim.Archivable = true
  740. Crim.CFrame = CFrame.new(9e99, 9e99, 9e99)
  741. Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
  742. Crim.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  743. Crim.Transparency = 1
  744. Crim.Anchored = true
  745. Crim.CanCollide = false
  746. lol = true
  747. Bruh = game.Workspace["Criminals Spawn"].SpawnLocation
  748. Bruh.CanCollide = false
  749. Bruh.Size = Vector3.new(51.05, 24.12, 54.76)
  750. Bruh.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  751. Bruh.Transparency = 1
  752. wait(0.001)
  753. lol = false
  754. if lol == false then
  755. Bruh.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  756. Bruh.Size = Vector3.new(6, 0.2, 6)
  757. Bruh.Transparency = 0
  758. lol = false
  759. end
  760. end
  761. end
  762. end
  763. end
  764. end
  765. end
  766. end
  767. end
  768. end)
  769.  
  770. modguns.Name = "modguns"
  771. modguns.Parent = scriptsmain
  772. modguns.BackgroundColor3 = Color3.new(0, 0, 0)
  773. modguns.Position = UDim2.new(0.137171283, 0, 0.706161141, 0)
  774. modguns.Size = UDim2.new(0, 329, 0, 50)
  775. modguns.Font = Enum.Font.GothamBlack
  776. modguns.Text = "Mod All Guns"
  777. modguns.TextColor3 = Color3.new(0, 1, 0)
  778. modguns.TextSize = 30
  779. modguns.TextWrapped = true
  780. modguns.MouseButton1Down:connect(function()
  781. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  782.  
  783. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  784. print(lol)
  785. end
  786.  
  787. local client = game:GetService("Players").LocalPlayer
  788.  
  789. for _, child in next, client.Backpack:GetChildren() do
  790. if child:IsA("Tool") then
  791. client.Character.Humanoid:UnequipTools()
  792. end
  793. end
  794. local reg = (getreg or debug.getregistry)
  795. local get = (debug.getupvalues or secret953)
  796. local client = game:GetService("Players").LocalPlayer
  797. local render = game:GetService('RunService').RenderStepped
  798.  
  799. local function fakeStats()
  800. function change(t)
  801. local myStats = {
  802. ReloadTime = 0,
  803. FireRate = 0,
  804. AutoFire = true,
  805. StoredAmmo = math.huge,
  806. MaxAmmo = math.huge,
  807. CurrentAmmo = math.huge,
  808. }
  809.  
  810. for name, fake in next, myStats do
  811. t[name] = fake
  812. end
  813. end
  814.  
  815. for k, v in next, reg() do
  816. if type(v) == "function" then
  817. local upvals = get(v)
  818. if upvals and upvals.GunStates then
  819. change(upvals.GunStates)
  820. end
  821. end
  822. end
  823. end
  824.  
  825. client.Backpack.ChildAdded:connect(function(child)
  826. if child:IsA("Tool") and child:FindFirstChild("GunInterface") then
  827. client.Character.Humanoid:EquipTool(child)
  828.  
  829. render:wait()
  830. fakeStats()
  831. render:wait()
  832.  
  833. client.Character.Humanoid:UnequipTools()
  834. end
  835. end)
  836.  
  837. for _, child in next, client.Backpack:GetChildren() do
  838. if child:IsA("Tool") and child:FindFirstChild("GunInterface") then
  839. client.Character.Humanoid:EquipTool(child)
  840.  
  841. render:wait()
  842. fakeStats()
  843. render:wait()
  844.  
  845. client.Character.Humanoid:UnequipTools()
  846. end
  847. end
  848. end)
  849.  
  850. for i,v in pairs(game:GetService("Workspace")["Prison_Halls"]:GetChildren()) do
  851. if v.Name ~= ("floor") then
  852. if v.Name ~= ("lights") then
  853. v:Remove()
  854. end
  855. end
  856. end
  857. for i,v in pairs(game:GetService("Workspace")["Prison_Guard_Outpost"]:GetChildren()) do
  858. if v.Name ~= ("floor") then
  859. if v.Name ~= ("lights") then
  860. v:Remove()
  861. end
  862. end
  863. end
  864. for i,v in pairs(game:GetService("Workspace")["Prison_Cafeteria"]:GetChildren()) do
  865. if v.Name ~= ("floor") then
  866. if v.Name ~= ("lights") then
  867. v:Remove()
  868. end
  869. end
  870. end
  871. for i,v in pairs(game:GetService("Workspace")["Prison_Fences"]:GetChildren()) do
  872. v:Remove()
  873. end
  874. for i,v in pairs(game:GetService("Workspace")["Prison_OuterWall"]:GetChildren()) do
  875. v:Remove()
  876. end
  877. for i,v in pairs(game:GetService("Workspace")["Doors"]:GetChildren()) do
  878. v:Remove()
  879. end
  880. for i,v in pairs(game:GetService("Workspace")["Prison_Administration"]:GetChildren()) do
  881. if v.Name ~= ("light_floor1") then
  882. if v.Name ~= ("light_floor2") then
  883. v:Remove()
  884. end
  885. end
  886. end
  887. for i,v in pairs(game:GetService("Workspace")["Prison_Cellblock"]:GetChildren()) do
  888. if v.Name ~= ("c_floor") then
  889. if v.Name ~= ("a_lights") then
  890. if v.Name ~= ("b_lights") then
  891. if v.Name ~= ("c_lights") then
  892. v:Remove()
  893. end
  894. end
  895. end
  896. end
  897. end
  898. wait(0.1)
  899. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(917.909851, 129.489944, 2328.6958)
  900. wait(1)
  901. print("Successfully Loaded PrisonBreaker V1.6")
  902. game:GetService("StarterGui"):SetCore("SendNotification", {
  903. Title = "PrisonBreaker V1.6 Loaded";
  904. Text = "Enjoy destroying the game ;)";
  905. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement