Homestyle_chicken

pd

Mar 22nd, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 40.29 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local PrisonDestroyer = Instance.new("ScreenGui")
  5. local main = Instance.new("Frame")
  6. local title = Instance.new("TextLabel")
  7. local title_2 = Instance.new("TextLabel")
  8. local respawnmainoff = Instance.new("Frame")
  9. local respawnoff = Instance.new("TextButton")
  10. local respawnmainon = Instance.new("Frame")
  11. local respawnon = Instance.new("TextButton")
  12. local gunsmainoff = Instance.new("Frame")
  13. local gunsoff = Instance.new("TextButton")
  14. local gunsmainon = Instance.new("Frame")
  15. local gunson = Instance.new("TextButton")
  16. local auramainoff = Instance.new("Frame")
  17. local auraoff = Instance.new("TextButton")
  18. local auramainon = Instance.new("Frame")
  19. local auraon = Instance.new("TextButton")
  20. local crimplayer = Instance.new("Frame")
  21. local crimtext = Instance.new("TextBox")
  22. local crim = Instance.new("TextButton")
  23. local antiabuser = Instance.new("TextButton")
  24. local prisonbreaker = Instance.new("TextButton")
  25. local spammain = Instance.new("Frame")
  26. local spamtext = Instance.new("TextBox")
  27. local spammainoff = Instance.new("Frame")
  28. local spamoff = Instance.new("TextButton")
  29. local spammainon = Instance.new("Frame")
  30. local spamon = Instance.new("TextButton")
  31. local close = Instance.new("TextButton")
  32. local openmain = Instance.new("Frame")
  33. local open = Instance.new("TextButton")
  34. --Properties:
  35. PrisonDestroyer.Name = "PrisonDestroyer"
  36. PrisonDestroyer.Parent = game.CoreGui
  37.  
  38. main.Name = "main"
  39. main.Parent = PrisonDestroyer
  40. main.BackgroundColor3 = Color3.new(1, 1, 1)
  41. main.Position = UDim2.new(0.0067859143, 0, 0.585995078, 0)
  42. main.Size = UDim2.new(0, 449, 0, 326)
  43. main.Visible = true
  44. main.Style = Enum.FrameStyle.RobloxRound
  45. main.Active = true
  46. main.Draggable = true
  47.  
  48. local Players = game:GetService("Players")
  49. local LocalPlayer = Players.LocalPlayer
  50. local function RemoveSpaces(String)
  51.     return String:gsub("%s+", "") or String
  52. end
  53.  
  54. local function FindPlayer(String)
  55.     String = RemoveSpaces(String)
  56.     for _, _Player in pairs(Players:GetPlayers()) do
  57.         if _Player.Name:lower():match('^'.. String:lower()) then
  58.             return _Player
  59.         end
  60.     end
  61.     return nil
  62. end
  63.  
  64. title.Name = "title"
  65. title.Parent = main
  66. title.BackgroundColor3 = Color3.new(0, 1, 1)
  67. title.Position = UDim2.new(-0.0181788076, 0, -0.00509521738, 0)
  68. title.Size = UDim2.new(0, 447, 0, 31)
  69. title.Font = Enum.Font.GothamBlack
  70. title.Text = "PrisonDestroyer"
  71. title.TextColor3 = Color3.new(0, 0, 0)
  72. title.TextSize = 20
  73.  
  74. title_2.Name = "title"
  75. title_2.Parent = main
  76. title_2.BackgroundColor3 = Color3.new(1, 0, 1)
  77. title_2.Position = UDim2.new(-0.00593716372, 0, 0.922862053, 0)
  78. title_2.Size = UDim2.new(0, 438, 0, 31)
  79. title_2.Font = Enum.Font.GothamBold
  80. title_2.Text = "Youtube: Jake11price"
  81. title_2.TextColor3 = Color3.new(0, 0, 0)
  82. title_2.TextSize = 14
  83.  
  84. respawnmainoff.Name = "respawnmainoff"
  85. respawnmainoff.Parent = main
  86. respawnmainoff.BackgroundColor3 = Color3.new(0, 0, 0)
  87. respawnmainoff.Position = UDim2.new(-0.00730320066, 0, 0.128140301, 0)
  88. respawnmainoff.Size = UDim2.new(0, 147, 0, 56)
  89.  
  90. respawnoff.Name = "respawnoff"
  91. respawnoff.Parent = respawnmainoff
  92. respawnoff.BackgroundColor3 = Color3.new(1, 0, 0)
  93. respawnoff.Position = UDim2.new(0.0537641346, 0, 0.122988023, 0)
  94. respawnoff.Size = UDim2.new(0, 130, 0, 42)
  95. respawnoff.Font = Enum.Font.GothamBold
  96. respawnoff.Text = "Auto Respawn (OFF)"
  97. respawnoff.TextColor3 = Color3.new(0, 0, 0)
  98. respawnoff.TextSize = 13
  99. respawnoff.MouseButton1Down:connect(function()
  100. respawnmainoff.Visible = false
  101. respawnmainon.Visible = true
  102.  
  103. local blah = (game.Players.LocalPlayer.Name)
  104.  
  105. _G.Looop = true
  106.  
  107. while _G.Looop == true do wait(0.1)
  108.       if game:GetService("Workspace")[blah].Humanoid.Health == 0 then
  109.        saved = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  110.         game:GetService("StarterGui"):SetCore("SendNotification", {
  111.         Title = "Position Saved";
  112.         Text = "Success";
  113.         })
  114.         local A_1 = "LocalPlayer"
  115.  
  116. local Event = game:GetService("Workspace").Remote.loadchar
  117. Event:InvokeServer(A_1)
  118.  
  119.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = saved
  120.         game:GetService("StarterGui"):SetCore("SendNotification", {
  121.         Title = "Position Loaded";
  122.         Text = "Success";
  123.         })
  124. end
  125. end
  126. end)
  127.  
  128. respawnmainon.Name = "respawnmainon"
  129. respawnmainon.Parent = main
  130. respawnmainon.BackgroundColor3 = Color3.new(0, 0, 0)
  131. respawnmainon.Position = UDim2.new(-0.00933132041, 0, 0.125080392, 0)
  132. respawnmainon.Size = UDim2.new(0, 147, 0, 56)
  133. respawnmainon.Visible = false
  134.  
  135. respawnon.Name = "respawnon"
  136. respawnon.Parent = respawnmainon
  137. respawnon.BackgroundColor3 = Color3.new(0, 1, 0)
  138. respawnon.Position = UDim2.new(0.0518811233, 0, 0.124675326, 0)
  139. respawnon.Size = UDim2.new(0, 130, 0, 42)
  140. respawnon.Font = Enum.Font.GothamBold
  141. respawnon.Text = "Auto Respawn (ON)"
  142. respawnon.TextColor3 = Color3.new(0, 0, 0)
  143. respawnon.TextSize = 14
  144. respawnon.MouseButton1Down:connect(function()
  145. respawnmainon.Visible = false
  146. respawnmainoff.Visible = true
  147.  
  148. local blah = (game.Players.LocalPlayer.Name)
  149.  
  150. _G.Looop = false
  151.  
  152. while _G.Looop == true do wait(0.1)
  153.       if game:GetService("Workspace")[blah].Humanoid.Health == 0 then
  154.        saved = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  155.         game:GetService("StarterGui"):SetCore("SendNotification", {
  156.         Title = "Position Saved";
  157.         Text = "Success";
  158.         })
  159.         local A_1 = "LocalPlayer"
  160.  
  161. local Event = game:GetService("Workspace").Remote.loadchar
  162. Event:InvokeServer(A_1)
  163.  
  164.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = saved
  165.         game:GetService("StarterGui"):SetCore("SendNotification", {
  166.         Title = "Position Loaded";
  167.         Text = "Success";
  168.         })
  169. end
  170. end
  171. end)
  172.  
  173. gunsmainoff.Name = "gunsmainoff"
  174. gunsmainoff.Parent = main
  175. gunsmainoff.BackgroundColor3 = Color3.new(0, 0, 0)
  176. gunsmainoff.Position = UDim2.new(0.66536516, 0, 0.127620965, 0)
  177. gunsmainoff.Size = UDim2.new(0, 147, 0, 56)
  178.  
  179. gunsoff.Name = "gunsoff"
  180. gunsoff.Parent = gunsmainoff
  181. gunsoff.BackgroundColor3 = Color3.new(1, 0, 0)
  182. gunsoff.Position = UDim2.new(0.0518809259, 0, 0.125, 0)
  183. gunsoff.Size = UDim2.new(0, 130, 0, 42)
  184. gunsoff.Font = Enum.Font.GothamBold
  185. gunsoff.Text = "Spawn Guns (OFF)"
  186. gunsoff.TextColor3 = Color3.new(0, 0, 0)
  187. gunsoff.TextSize = 14
  188. gunsoff.MouseButton1Down:connect(function()
  189.  
  190. workspace.Remote.TeamEvent:FireServer("Bright blue")
  191.  
  192. wait(0.2)
  193. for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
  194. if v == game.Players.LocalPlayer then
  195. gunsmainoff.Visible = false
  196. gunsmainon.Visible = true
  197. local blah = (game.Players.LocalPlayer.Name)
  198.  
  199. wait(0.1)
  200. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(915.772583, 99.9900055, 2381.95752)
  201.  
  202. _G.Looppp = true
  203.  
  204. while _G.Looppp == true do wait(0.2)
  205.     game:GetService("Workspace")[blah].Humanoid.Health = 0
  206.  
  207.       if game:GetService("Workspace")[blah].Humanoid.Health == 0 then
  208.        saved = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  209.         game:GetService("StarterGui"):SetCore("SendNotification", {
  210.         Title = "Position Saved";
  211.         Text = "Success";
  212.         })
  213.  
  214.         local A_1 = "LocalPlayer"
  215.  
  216.  
  217. local Event = game:GetService("Workspace").Remote.loadchar
  218. Event:InvokeServer(A_1)
  219.  
  220.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = saved
  221.         game:GetService("StarterGui"):SetCore("SendNotification", {
  222.         Title = "Position Loaded";
  223.         Text = "Success";
  224.         })
  225. end
  226. end
  227.  
  228. else
  229.         game:GetService("StarterGui"):SetCore("SendNotification", {
  230.         Title = "Error";
  231.         Text = "GUARDS TEAM IS FULL!";
  232.         })
  233. end
  234. end
  235. end)
  236.  
  237. gunsmainon.Name = "gunsmainon"
  238. gunsmainon.Parent = main
  239. gunsmainon.BackgroundColor3 = Color3.new(0, 0, 0)
  240. gunsmainon.Position = UDim2.new(0.663196027, 0, 0.124337323, 0)
  241. gunsmainon.Size = UDim2.new(0, 147, 0, 56)
  242. gunsmainon.Visible = false
  243.  
  244. gunson.Name = "gunson"
  245. gunson.Parent = gunsmainon
  246. gunson.BackgroundColor3 = Color3.new(0, 1, 0)
  247. gunson.Position = UDim2.new(0.0612245053, 0, 0.107142858, 0)
  248. gunson.Size = UDim2.new(0, 130, 0, 42)
  249. gunson.Font = Enum.Font.GothamBold
  250. gunson.Text = "Spawn Guns (ON)"
  251. gunson.TextColor3 = Color3.new(0, 0, 0)
  252. gunson.TextSize = 14
  253. gunson.MouseButton1Down:connect(function()
  254. gunsmainon.Visible = false
  255. gunsmainoff.Visible = true
  256.  
  257. workspace.Remote.TeamEvent:FireServer("Bright blue")
  258.  
  259. local blah = (game.Players.LocalPlayer.Name)
  260.  
  261. _G.Looppp = false
  262.  
  263. while _G.Looppp == true do wait(0.2)
  264.     game:GetService("Workspace")[blah].Humanoid.Health = 0
  265.  
  266.       if game:GetService("Workspace")[blah].Humanoid.Health == 0 then
  267.        saved = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  268.         game:GetService("StarterGui"):SetCore("SendNotification", {
  269.         Title = "Position Saved";
  270.         Text = "Success";
  271.         })
  272. end
  273.         local A_1 = "LocalPlayer"
  274.  
  275. local Event = game:GetService("Workspace").Remote.loadchar
  276. Event:InvokeServer(A_1)
  277.  
  278.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = saved
  279.         game:GetService("StarterGui"):SetCore("SendNotification", {
  280.         Title = "Position Loaded";
  281.         Text = "Success";
  282.         })
  283. end
  284. end)
  285.  
  286. auramainoff.Name = "auramainoff"
  287. auramainoff.Parent = main
  288. auramainoff.BackgroundColor3 = Color3.new(0, 0, 0)
  289. auramainoff.Position = UDim2.new(0.369787693, 0, 0.127583504, 0)
  290. auramainoff.Size = UDim2.new(0, 111, 0, 56)
  291.  
  292. auraoff.Name = "auraoff"
  293. auraoff.Parent = auramainoff
  294. auraoff.BackgroundColor3 = Color3.new(1, 0, 0)
  295. auraoff.Position = UDim2.new(0.0590088964, 0, 0.129285544, 0)
  296. auraoff.Size = UDim2.new(0, 99, 0, 40)
  297. auraoff.Font = Enum.Font.GothamBold
  298. auraoff.Text = "Kill Aura (OFF)"
  299. auraoff.TextColor3 = Color3.new(0, 0, 0)
  300. auraoff.TextSize = 13
  301. auraoff.MouseButton1Down:connect(function()
  302. auramainoff.Visible = false
  303. auramainon.Visible = true
  304.  
  305. workspace.Remote.TeamEvent:FireServer("Bright orange")
  306.  
  307. _G.Runningg = true
  308.  
  309. while _G.Runningg == true do wait()
  310. for i,v in pairs(game.Players:GetChildren()) do
  311. if v.Name ~= game.Players.LocalPlayer.Name then
  312. local tbl_main =
  313. {
  314.       v
  315. }
  316. game:GetService("ReplicatedStorage").meleeEvent:FireServer(unpack(tbl_main))
  317. end
  318. end
  319. end
  320. end)
  321.  
  322. auramainon.Name = "auramainon"
  323. auramainon.Parent = main
  324. auramainon.BackgroundColor3 = Color3.new(0, 0, 0)
  325. auramainon.Position = UDim2.new(0.367521346, 0, 0.128021032, 0)
  326. auramainon.Size = UDim2.new(0, 111, 0, 56)
  327. auramainon.Visible = false
  328.  
  329. auraon.Name = "auraon"
  330. auraon.Parent = auramainon
  331. auraon.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  332. auraon.Position = UDim2.new(0.0540542603, 0, 0.142857075, 0)
  333. auraon.Size = UDim2.new(0, 99, 0, 40)
  334. auraon.Font = Enum.Font.GothamBold
  335. auraon.Text = "Kill Aura (ON)"
  336. auraon.TextColor3 = Color3.new(0, 0, 0)
  337. auraon.TextSize = 14
  338. auraon.MouseButton1Down:connect(function()
  339. auramainon.Visible = false
  340. auramainoff.Visible = true
  341.  
  342. _G.Runningg = false
  343.  
  344. while _G.Runningg == true do wait()
  345. for i,v in pairs(game.Players:GetChildren()) do
  346. if v.Name ~= game.Players.LocalPlayer.Name then
  347. local tbl_main =
  348. {
  349.       v
  350. }
  351. game:GetService("ReplicatedStorage").meleeEvent:FireServer(unpack(tbl_main))
  352. end
  353. end
  354. end
  355. end)
  356.  
  357. crimplayer.Name = "crimplayer"
  358. crimplayer.Parent = main
  359. crimplayer.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  360. crimplayer.Position = UDim2.new(0.355967104, 0, 0.353531331, 0)
  361. crimplayer.Size = UDim2.new(0, 123, 0, 88)
  362.  
  363. crimtext.Name = "crimtext"
  364. crimtext.Parent = crimplayer
  365. crimtext.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  366. crimtext.Position = UDim2.new(0.024390243, 0, 0, 0)
  367. crimtext.Size = UDim2.new(0, 117, 0, 39)
  368. crimtext.Font = Enum.Font.GothamBlack
  369. crimtext.Text = "PlayerName"
  370. crimtext.TextColor3 = Color3.new(0, 0, 0)
  371. crimtext.TextSize = 14
  372.  
  373. crim.Name = "crim"
  374. crim.Parent = crimplayer
  375. crim.BackgroundColor3 = Color3.new(1, 0, 0.498039)
  376. crim.Position = UDim2.new(0.0569105148, 0, 0.575784504, 0)
  377. crim.Size = UDim2.new(0, 109, 0, 31)
  378. crim.Font = Enum.Font.GothamBold
  379. crim.Text = "Make Criminal"
  380. crim.TextColor3 = Color3.new(0, 0, 0)
  381. crim.TextSize = 14
  382. crim.MouseButton1Down:connect(function()
  383.     local Apart = Instance.new("Part")
  384.  
  385. Apart.Name = "PlrsPos"
  386. Apart.Parent = workspace
  387. Apart.Anchored = true
  388. Apart.Archivable = true
  389. Apart.CFrame = CFrame.new(9e99, 9e99, 9e99)
  390.  
  391.     local lol = FindPlayer(crimtext.Text)
  392.  
  393. game.Workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.giver["Remington 870"].ITEMPICKUP)
  394.  
  395. wait(0.1)
  396. Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  397.  
  398. local A_1 =
  399. {
  400.     [1] =
  401. {
  402.     ["RayObject"] = Ray.new(Vector3.new(827.412415, 101.489777, 2296.84326), Vector3.new(277.738678, 6.89340925, 287.773712)),
  403.     ["Distance"] = 4.7204174995422,
  404.     ["Cframe"] = CFrame.new(832.049377, 101.392006, 2300.97168, 0.843892097, -0.0554918349, 0.533635378, 0, 0.994636595, 0.103430569, -0.536512911, -0.0872842371, 0.839366019),
  405.     ["Hit"] = lol.Character.Head
  406. },
  407.     [2] =
  408. {
  409.     ["RayObject"] = Ray.new(Vector3.new(827.412415, 101.489777, 2296.84326), Vector3.new(303.047546, 21.3568707, 260.203888)),
  410.     ["Distance"] = 4.8114862442017,
  411.     ["Cframe"] = CFrame.new(832.390259, 101.550629, 2300.74097, 0.738044441, -0.112958886, 0.665229917, 7.45057971e-09, 0.985887885, 0.16740793, -0.674752235, -0.123554483, 0.727628946),
  412.     ["Hit"] = lol.Character.Head
  413. },
  414.     [3] =
  415. {
  416.     ["RayObject"] = Ray.new(Vector3.new(827.412415, 101.489777, 2296.84326), Vector3.new(296.800507, 7.00420141, 268.067932)),
  417.     ["Distance"] = 4.444625377655,
  418.     ["Cframe"] = CFrame.new(832.185486, 101.391617, 2300.70264, 0.775115669, -0.0692948848, 0.628007889, 7.45057971e-09, 0.993967533, 0.109675139, -0.631819367, -0.0850109085, 0.770439863),
  419.     ["Hit"] = lol.Character.Head
  420. },
  421.     [4] =
  422. {
  423.     ["RayObject"] = Ray.new(Vector3.new(827.412415, 101.489777, 2296.84326), Vector3.new(284.930573, 11.9850616, 280.483368)),
  424.     ["Distance"] = 4.6211166381836,
  425.     ["Cframe"] = CFrame.new(832.10083, 101.445007, 2300.86963, 0.820150614, -0.0735745132, 0.567397356, 0, 0.991697431, 0.128593579, -0.572147667, -0.105466105, 0.81334126),
  426.     ["Hit"] = lol.Character.Head
  427. },
  428.     [5] =
  429. {
  430.     ["RayObject"] = Ray.new(Vector3.new(827.412415, 101.489777, 2296.84326), Vector3.new(294.625824, 2.15741801, 270.538269)),
  431.     ["Distance"] = 4.4639973640442,
  432.     ["Cframe"] = CFrame.new(832.169434, 101.341301, 2300.73438, 0.784266233, -0.0537625961, 0.618090749, -3.7252903e-09, 0.99623847, 0.086654529, -0.620424569, -0.0679602176, 0.781316102),
  433.     ["Hit"] = lol.Character.Head
  434. }
  435. }
  436. local A_2 = game.Players.LocalPlayer.Backpack["Remington 870"]
  437. local Event = game:GetService("ReplicatedStorage").ShootEvent
  438. Event:FireServer(A_1, A_2)
  439.  
  440. workspace.Remote.TeamEvent:FireServer("Bright orange")
  441.  
  442. LCS = game.Workspace["Criminals Spawn"].SpawnLocation
  443.    
  444.     _G.killAura = true
  445.     wait(0.1)
  446.    
  447.     Apart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  448.     Apart.Transparency = 1
  449.     Apart.Anchored = true
  450.     Apart.CanCollide = false
  451.     wait(0.1)
  452.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = lol.Character.HumanoidRootPart.CFrame
  453.    
  454.     istptoplr = true
  455.     wait(0.004)
  456.    
  457.     if game.Players.LocalPlayer.Team.TeamColor == "Bright orange" then
  458.         wait(2)
  459.         workspace.Remote.TeamEvent:FireServer("Bright orange")
  460.     elseif
  461.         game.Players.LocalPlayer.Team.TeamColor == "Bright blue" then
  462.             workspace.Remote.TeamEvent:FireServer("Bright blue")
  463.     end
  464.    
  465.          if istptoplr == true then
  466.             while istptoplr do
  467.             wait()
  468.            
  469.             game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = lol.Character.HumanoidRootPart.CFrame
  470.            
  471.             LCS = game.Workspace["Criminals Spawn"].SpawnLocation
  472.  
  473.             LCS.CanCollide = false
  474.             LCS.Size = Vector3.new(51.05, 24.12, 54.76)
  475.             LCS.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  476.             LCS.Transparency = 1
  477.        
  478.         wait(0.1)
  479.        
  480.               istptoplr = false
  481.        
  482.         wait(0.04)
  483.        
  484.                 if istptoplr == false then
  485.                    LCS.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  486.                    LCS.Size = Vector3.new(6, 0.2, 6)
  487.                    LCS.Transparency = 0
  488.                    game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = Apart.CFrame
  489.                    wait()
  490.                    istptoplr = false
  491. wait(0.1)
  492.                    workspace.Remote.TeamEvent:FireServer("Bright orange")
  493.             end
  494.         end
  495.     end
  496. end)
  497.  
  498. antiabuser.Name = "antiabuser"
  499. antiabuser.Parent = main
  500. antiabuser.BackgroundColor3 = Color3.new(0, 1, 1)
  501. antiabuser.Position = UDim2.new(0.683139443, 0, 0.417830199, 0)
  502. antiabuser.Size = UDim2.new(0, 130, 0, 50)
  503. antiabuser.Font = Enum.Font.GothamBold
  504. antiabuser.Text = "Anti Abusers Gui"
  505. antiabuser.TextColor3 = Color3.new(0, 0, 0)
  506. antiabuser.TextSize = 14
  507. antiabuser.MouseButton1Down:connect(function()
  508. -- Made by Jake11price
  509. local gui = Instance.new("ScreenGui")
  510. local main = Instance.new("Frame")
  511. local looptazeframe = Instance.new("Frame")
  512. local looptaze = Instance.new("TextButton")
  513. local looptazetext = Instance.new("TextBox")
  514. local title = Instance.new("TextLabel")
  515. local loopkillframe = Instance.new("Frame")
  516. local loopkilltext = Instance.new("TextButton")
  517. local loopkill = Instance.new("TextButton")
  518. local infswatgun = Instance.new("TextButton")
  519. local infgun = Instance.new("TextButton")
  520. local close = Instance.new("TextButton")
  521. local bypasshackers = Instance.new("TextButton")
  522. local openmain = Instance.new("Frame")
  523. local open = Instance.new("TextButton")
  524. --Properties:
  525. gui.Name = "gui"
  526. gui.Parent = game.CoreGui
  527.  
  528. main.Name = "main"
  529. main.Parent = gui
  530. main.BackgroundColor3 = Color3.new(0, 0, 0)
  531. main.Position = UDim2.new(0.011210762, 0, 0.54422605, 0)
  532. main.Size = UDim2.new(0, 443, 0, 281)
  533. main.Active = true
  534. main.Draggable = true
  535.  
  536. looptazeframe.Name = "looptazeframe"
  537. looptazeframe.Parent = main
  538. looptazeframe.BackgroundColor3 = Color3.new(0, 0, 0)
  539. looptazeframe.Position = UDim2.new(0, 0, 0.16870153, 0)
  540. looptazeframe.Size = UDim2.new(0, 159, 0, 151)
  541.  
  542. local Players = game:GetService("Players")
  543. local LocalPlayer = Players.LocalPlayer
  544. local function RemoveSpaces(String)
  545.     return String:gsub("%s+", "") or String
  546. end
  547.  
  548. local function FindPlayer(String)
  549.     String = RemoveSpaces(String)
  550.     for _, _Player in pairs(Players:GetPlayers()) do
  551.         if _Player.Name:lower():match('^'.. String:lower()) then
  552.             return _Player
  553.         end
  554.     end
  555.     return nil
  556. end
  557.  
  558. looptaze.Name = "Punish"
  559. looptaze.Parent = looptazeframe
  560. looptaze.BackgroundColor3 = Color3.new(1, 0.333333, 1)
  561. looptaze.Position = UDim2.new(0.0817610025, 0, 0.622516572, 0)
  562. looptaze.Size = UDim2.new(0, 132, 0, 50)
  563. looptaze.Font = Enum.Font.GothamBold
  564. looptaze.Text = "Punish"
  565. looptaze.TextColor3 = Color3.new(0, 0, 0)
  566. looptaze.TextSize = 17
  567. looptaze.TextWrapped = true
  568. looptaze.MouseButton1Down:connect(function()
  569. workspace.Remote.TeamEvent:FireServer("Bright blue")
  570. wait(0.3)
  571. for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
  572. if v == game.Players.LocalPlayer then
  573.     local Targett = FindPlayer(looptazetext.Text)
  574.         if Targett and Targett.Character then
  575.         saved = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  576.         game:GetService("StarterGui"):SetCore("SendNotification", {
  577.         Title = "Position Saved";
  578.         Text = "Success";
  579.         })
  580.  
  581. workspace.Remote.TeamEvent:FireServer("Bright blue")
  582.  
  583. local A_1 = "LocalPlayer"
  584. local Event = game:GetService("Workspace").Remote.loadchar
  585. Event:InvokeServer(A_1)
  586.  
  587.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = saved
  588.         game:GetService("StarterGui"):SetCore("SendNotification", {
  589.         Title = "Position Loaded";
  590.         Text = "Success";
  591.         })
  592.  
  593. while true do
  594. local A_1 =
  595. {
  596.     [1] =
  597. {
  598.     ["RayObject"] = Ray.new(Vector3.new(829.838562, 101.489998, 2331.25635), Vector3.new(-30.6540909, -5.42795324, 95.0308533)),
  599.     ["Distance"] = 15.355997085571,
  600.     ["Cframe"] = CFrame.new(826.616699, 100.8508, 2340.11279, 0.964640439, -0.00993416365, -0.263382077, 9.31322575e-10, 0.999289393, -0.0376908854, 0.263569355, 0.0363581516, 0.963954985),
  601.     ["Hit"] = Targett.Character.Torso
  602. }
  603. }
  604. local A_2 = game.Players.LocalPlayer.Backpack["Taser"]
  605. local Event = game:GetService("ReplicatedStorage").ShootEvent
  606. Event:FireServer(A_1, A_2)
  607.  
  608. wait(1.0)
  609. Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  610.  
  611. game.Workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.giver["Remington 870"].ITEMPICKUP)
  612.  
  613. local A_1 =
  614. {
  615.     [2] =
  616. {
  617.     ["RayObject"] = Ray.new(Vector3.new(827.412415, 101.489777, 2296.84326), Vector3.new(303.047546, 21.3568707, 260.203888)),
  618.     ["Distance"] = 4.8114862442017,
  619.     ["Cframe"] = CFrame.new(832.390259, 101.550629, 2300.74097, 0.738044441, -0.112958886, 0.665229917, 7.45057971e-09, 0.985887885, 0.16740793, -0.674752235, -0.123554483, 0.727628946),
  620.     ["Hit"] = Targett.Character.Head
  621. },
  622.     [3] =
  623. {
  624.     ["RayObject"] = Ray.new(Vector3.new(827.412415, 101.489777, 2296.84326), Vector3.new(296.800507, 7.00420141, 268.067932)),
  625.     ["Distance"] = 4.444625377655,
  626.     ["Cframe"] = CFrame.new(832.185486, 101.391617, 2300.70264, 0.775115669, -0.0692948848, 0.628007889, 7.45057971e-09, 0.993967533, 0.109675139, -0.631819367, -0.0850109085, 0.770439863),
  627.     ["Hit"] = Targett.Character.Head
  628. },
  629.     [1] =
  630. {
  631.     ["RayObject"] = Ray.new(Vector3.new(827.412415, 101.489777, 2296.84326), Vector3.new(277.738678, 6.89340925, 287.773712)),
  632.     ["Distance"] = 4.7204174995422,
  633.     ["Cframe"] = CFrame.new(832.049377, 101.392006, 2300.97168, 0.843892097, -0.0554918349, 0.533635378, 0, 0.994636595, 0.103430569, -0.536512911, -0.0872842371, 0.839366019),
  634.     ["Hit"] = Targett.Character.Head
  635. },
  636.     [4] =
  637. {
  638.     ["RayObject"] = Ray.new(Vector3.new(827.412415, 101.489777, 2296.84326), Vector3.new(284.930573, 11.9850616, 280.483368)),
  639.     ["Distance"] = 4.6211166381836,
  640.     ["Cframe"] = CFrame.new(832.10083, 101.445007, 2300.86963, 0.820150614, -0.0735745132, 0.567397356, 0, 0.991697431, 0.128593579, -0.572147667, -0.105466105, 0.81334126),
  641.     ["Hit"] = Targett.Character.Head
  642. },
  643.     [5] =
  644. {
  645.     ["RayObject"] = Ray.new(Vector3.new(827.412415, 101.489777, 2296.84326), Vector3.new(294.625824, 2.15741801, 270.538269)),
  646.     ["Distance"] = 4.4639973640442,
  647.     ["Cframe"] = CFrame.new(832.169434, 101.341301, 2300.73438, 0.784266233, -0.0537625961, 0.618090749, -3.7252903e-09, 0.99623847, 0.086654529, -0.620424569, -0.0679602176, 0.781316102),
  648.     ["Hit"] = Targett.Character.Head
  649. }
  650. }
  651. local A_2 = game:GetService("Players").LocalPlayer.Backpack["Remington 870"]
  652. local Event = game:GetService("ReplicatedStorage").ShootEvent
  653. Event:FireServer(A_1, A_2)
  654. wait(0.2)
  655. end
  656. end
  657. else
  658.         game:GetService("StarterGui"):SetCore("SendNotification", {
  659.         Title = "Error";
  660.         Text = "GUARDS TEAM IS FULL!";
  661.         })
  662.         end
  663.     end
  664. end)
  665.  
  666. looptazetext.Name = "looptazetext"
  667. looptazetext.Parent = looptazeframe
  668. looptazetext.BackgroundColor3 = Color3.new(0, 1, 1)
  669. looptazetext.Position = UDim2.new(0.0440251566, 0, 0.125827804, 0)
  670. looptazetext.Size = UDim2.new(0, 145, 0, 50)
  671. looptazetext.Font = Enum.Font.SourceSansBold
  672. looptazetext.PlaceholderColor3 = Color3.new(0, 1, 1)
  673. looptazetext.Text = "PLAYERNAME"
  674. looptazetext.TextColor3 = Color3.new(0, 0, 0)
  675. looptazetext.TextSize = 14
  676.  
  677. title.Name = "title"
  678. title.Parent = main
  679. title.BackgroundColor3 = Color3.new(0, 0, 0)
  680. title.Size = UDim2.new(0, 443, 0, 44)
  681. title.Font = Enum.Font.GothamBold
  682. title.Text = "Anti-Abusers Prison life gui Made By Jake11price"
  683. title.TextColor3 = Color3.new(1, 0, 0)
  684. title.TextSize = 13
  685. title.TextWrapped = true
  686.  
  687. loopkillframe.Name = "loopkillframe"
  688. loopkillframe.Parent = main
  689. loopkillframe.BackgroundColor3 = Color3.new(0, 0, 0)
  690. loopkillframe.Position = UDim2.new(0.358916491, 0, 0.16870153, 0)
  691. loopkillframe.Size = UDim2.new(0, 158, 0, 151)
  692.  
  693. loopkilltext.Name = "loopkilltext"
  694. loopkilltext.Parent = loopkillframe
  695. loopkilltext.BackgroundColor3 = Color3.new(1, 0, 1)
  696. loopkilltext.Position = UDim2.new(0.0569620244, 0, 0.125827819, 0)
  697. loopkilltext.Size = UDim2.new(0, 139, 0, 50)
  698. loopkilltext.Font = Enum.Font.GothamBold
  699. loopkilltext.Text = "UNPUNISH ALL"
  700. loopkilltext.TextColor3 = Color3.new(0, 0, 0)
  701. loopkilltext.TextSize = 14
  702. loopkilltext.MouseButton1Down:connect(function()
  703. workspace.Remote.TeamEvent:FireServer("Bright orange")
  704.  
  705.         saved = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  706.         game:GetService("StarterGui"):SetCore("SendNotification", {
  707.         Title = "Position Saved";
  708.         Text = "Success";
  709.         })
  710.     for i=1,100 do
  711.         workspace.Remote.TeamEvent:FireServer("Bright orange")
  712.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(992.738892, -503.049591, 2542.15552)
  713. end
  714.  
  715. wait(0.5)
  716. local A_1 = "LocalPlayer"
  717. local Event = game:GetService("Workspace").Remote.loadchar
  718. Event:InvokeServer(A_1)
  719.  
  720.                game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = saved
  721.         game:GetService("StarterGui"):SetCore("SendNotification", {
  722.         Title = "Position Loaded";
  723.         Text = "Success";
  724.         })
  725.         wait(0.3)
  726. workspace.Remote.TeamEvent:FireServer("Bright orange")
  727. end)
  728.  
  729. loopkill.Name = "loopkill"
  730. loopkill.Parent = loopkillframe
  731. loopkill.BackgroundColor3 = Color3.new(1, 0, 1)
  732. loopkill.Position = UDim2.new(0.0569620244, 0, 0.622516572, 0)
  733. loopkill.Size = UDim2.new(0, 139, 0, 50)
  734. loopkill.Font = Enum.Font.GothamBold
  735. loopkill.Text = "Punish All"
  736. loopkill.TextColor3 = Color3.new(0, 0, 0)
  737. loopkill.TextSize = 17
  738. loopkill.MouseButton1Down:connect(function()
  739. workspace.Remote.TeamEvent:FireServer("Bright blue")
  740. wait(0.3)
  741. for i,v in pairs(game.Teams["Guards"]:GetPlayers()) do
  742. if v == game.Players.LocalPlayer then
  743.  
  744.         saved = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  745.         game:GetService("StarterGui"):SetCore("SendNotification", {
  746.         Title = "Position Saved";
  747.         Text = "Success";
  748.         })
  749.  
  750. local A_1 = "LocalPlayer"
  751. local Event = game:GetService("Workspace").Remote.loadchar
  752. Event:InvokeServer(A_1)
  753.  
  754.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = saved
  755.         game:GetService("StarterGui"):SetCore("SendNotification", {
  756.         Title = "Position Loaded";
  757.         Text = "Success";
  758.         })
  759.  
  760. while true do
  761. wait(1.0)
  762. function kill(a)
  763. local A_1 =
  764. {
  765.     [1] =
  766. {
  767.     ["RayObject"] = Ray.new(Vector3.new(829.838562, 101.489998, 2331.25635), Vector3.new(-30.6540909, -5.42795324, 95.0308533)),
  768.     ["Distance"] = 15.355997085571,
  769.     ["Cframe"] = CFrame.new(826.616699, 100.8508, 2340.11279, 0.964640439, -0.00993416365, -0.263382077, 9.31322575e-10, 0.999289393, -0.0376908854, 0.263569355, 0.0363581516, 0.963954985),
  770.     ["Hit"] = a.Character.Torso
  771. }
  772. }
  773. local A_2 = game.Players.LocalPlayer.Backpack["Taser"]
  774. local Event = game:GetService("ReplicatedStorage").ShootEvent
  775. Event:FireServer(A_1, A_2)
  776. end
  777.  
  778. for i,v in pairs(game.Players:GetChildren())do
  779. if v.Name ~= game.Players.LocalPlayer.Name then
  780. kill(v)
  781. end
  782. end
  783.  
  784. wait(1.0)
  785. workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  786.  
  787. game.Workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.giver["Remington 870"].ITEMPICKUP)
  788.  
  789. wait(0.5)
  790. function kill(a)
  791. local A_1 =
  792. {
  793. [1] =
  794. {
  795. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-391.152252, 8.65560055, -83.2166901)),
  796. ["Distance"] = 3.2524313926697,
  797. ["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),
  798. ["Hit"] = a.Character.Head
  799. },
  800.   [2] =
  801. {
  802. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-392.481476, -8.44939327, -76.7261353)),
  803. ["Distance"] = 3.2699294090271,
  804. ["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),
  805. ["Hit"] = a.Character.Head
  806. },
  807. [3] =
  808. {
  809. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-389.21701, -2.50536323, -92.2163162)),
  810. ["Distance"] = 3.1665518283844,
  811. ["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),
  812. ["Hit"] = a.Character.Head
  813. },
  814. [4] =
  815. {
  816. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-393.353973, 3.13988972, -72.5452042)),
  817. ["Distance"] = 3.3218522071838,
  818. ["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),
  819. ["Hit"] = a.Character.Head
  820. },
  821. [5] =
  822. {
  823. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-390.73172, 3.2097764, -85.5477524)),
  824. ["Distance"] = 3.222757101059,
  825. ["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),
  826. ["Hit"] = a.Character.Head
  827. }
  828. }
  829. local A_2 = game.Players.LocalPlayer.Backpack["Remington 870"]
  830. local Event = game:GetService("ReplicatedStorage").ShootEvent
  831. Event:FireServer(A_1, A_2)
  832. Event:FireServer(A_1, A_2)
  833. end
  834.  
  835. for i,v in pairs(game.Players:GetChildren())do
  836. if v.Name ~= game.Players.LocalPlayer.Name then
  837. kill(v)
  838. end
  839. end
  840. wait(0.2)
  841. end
  842. else
  843.         game:GetService("StarterGui"):SetCore("SendNotification", {
  844.         Title = "Error";
  845.         Text = "GUARDS TEAM IS FULL!";
  846.         })
  847.     end
  848. end
  849. end)
  850.  
  851. infswatgun.Name = "PrisonBreakerv1.5"
  852. infswatgun.Parent = main
  853. infswatgun.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  854. infswatgun.Position = UDim2.new(0.738148928, 0, 0.501286626, 0)
  855. infswatgun.Size = UDim2.new(0, 106, 0, 50)
  856. infswatgun.Font = Enum.Font.GothamSemibold
  857. infswatgun.Text = "PrisonBreaker v1.5"
  858. infswatgun.TextColor3 = Color3.new(1, 1, 0)
  859. infswatgun.TextSize = 11
  860. infswatgun.MouseButton1Down:connect(function()
  861. loadstring(game:HttpGet("https://pastebin.com/raw/HpCpt9rt",true))()
  862. end)
  863.  
  864. infgun.Name = "infgun"
  865. infgun.Parent = main
  866. infgun.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  867. infgun.Position = UDim2.new(0.738148987, 0, 0.234108955, 0)
  868. infgun.Size = UDim2.new(0, 106, 0, 50)
  869. infgun.Font = Enum.Font.GothamBold
  870. infgun.Text = "Criminal Player"
  871. infgun.TextColor3 = Color3.new(1, 1, 0)
  872. infgun.TextSize = 11
  873. infgun.MouseButton1Down:connect(function()
  874. -- Made By Jake11price
  875. local crimgui = Instance.new("ScreenGui")
  876. local Frame = Instance.new("Frame")
  877. local Frame2 = Instance.new("Frame")
  878. local crimtext = Instance.new("TextBox")
  879. local makecrim = Instance.new("TextButton")
  880. local TextLabel = Instance.new("TextLabel")
  881. --Properties:
  882. crimgui.Name = "crimgui"
  883. crimgui.Parent = game.CoreGui
  884.  
  885. Frame.Parent = crimgui
  886. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  887. Frame.Position = UDim2.new(0.164424494, 0, 0.328009814, 0)
  888. Frame.Size = UDim2.new(0, 205, 0, 106)
  889. Frame.Active = true
  890. Frame.Draggable = true
  891.  
  892. Frame2.Name = "Frame2"
  893. Frame2.Parent = Frame
  894. Frame2.BackgroundColor3 = Color3.new(0, 1, 1)
  895. Frame2.Position = UDim2.new(0, 0, 0.254716992, 0)
  896. Frame2.Size = UDim2.new(0, 205, 0, 79)
  897.  
  898. crimtext.Name = "crimtext"
  899. crimtext.Parent = Frame2
  900. crimtext.BackgroundColor3 = Color3.new(1, 0, 0)
  901. crimtext.Position = UDim2.new(0.107317075, 0, 0.101265825, 0)
  902. crimtext.Size = UDim2.new(0, 161, 0, 31)
  903. crimtext.Font = Enum.Font.SourceSans
  904. crimtext.Text = "PLAYERNAME"
  905. crimtext.TextColor3 = Color3.new(0, 0, 0)
  906. crimtext.TextSize = 14
  907.  
  908. local Players = game:GetService("Players")
  909. local LocalPlayer = Players.LocalPlayer
  910. local function RemoveSpaces(String)
  911.     return String:gsub("%s+", "") or String
  912. end
  913.  
  914. local function FindPlayer(String)
  915.     String = RemoveSpaces(String)
  916.     for _, _Player in pairs(Players:GetPlayers()) do
  917.         if _Player.Name:lower():match('^'.. String:lower()) then
  918.             return _Player
  919.         end
  920.     end
  921.     return nil
  922. end
  923.  
  924. makecrim.Name = "makecrim"
  925. makecrim.Parent = Frame2
  926. makecrim.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  927. makecrim.Position = UDim2.new(0, 0, 0.493670881, 0)
  928. makecrim.Size = UDim2.new(0, 205, 0, 40)
  929. makecrim.Font = Enum.Font.GothamBlack
  930. makecrim.Text = "Make Crim"
  931. makecrim.TextColor3 = Color3.new(0, 0, 0)
  932. makecrim.TextSize = 14
  933. makecrim.TextStrokeColor3 = Color3.new(0, 1, 1)
  934. makecrim.TextWrapped = true
  935. makecrim.MouseButton1Down:connect(function()
  936.     local Target = FindPlayer(crimtext.Text)
  937.         if Target and Target.Character then
  938.         saved = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  939.         game:GetService("StarterGui"):SetCore("SendNotification", {
  940.         Title = "Position Saved";
  941.         Text = "Success";
  942.         })
  943.  
  944. local A_1 = "LocalPlayer"
  945. local Event = game:GetService("Workspace").Remote.loadchar
  946. Event:InvokeServer(A_1)
  947.  
  948.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = saved
  949.         game:GetService("StarterGui"):SetCore("SendNotification", {
  950.         Title = "Position Loaded";
  951.         Text = "Success";
  952.         })
  953.  
  954. wait(0.5)
  955. local LocalPlayer = game:GetService("Players").LocalPlayer
  956. local torsoname = "Torso"
  957. if LocalPlayer.Character:FindFirstChild("Humanoid").RigType == Enum.HumanoidRigType.R15 then
  958.     torsoname = "UpperTorso"
  959. end
  960. if LocalPlayer.Character ~= nil then
  961.     local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  962.     LocalPlayer.Character:FindFirstChild(torsoname).Anchored = true
  963.     local tool = Instance.new("Tool", LocalPlayer.Backpack)
  964.     local hat = LocalPlayer.Character:FindFirstChildOfClass("Accessory")
  965.     local hathandle = hat.Handle
  966.     hathandle.Parent = tool
  967.     hathandle.Massless = true
  968.     tool.GripPos = Vector3.new(0, 9e99, 0)
  969.     tool.Parent = LocalPlayer.Character
  970.     repeat wait() until LocalPlayer.Character:FindFirstChildOfClass("Tool") ~= nil
  971.     tool.Grip = CFrame.new(Vector3.new(0, 0, 0))
  972.     LocalPlayer.Character:FindFirstChild(torsoname).Anchored = false
  973. end
  974.  
  975. while true do
  976. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
  977. wait()
  978. end
  979. end
  980. end)
  981.  
  982. TextLabel.Parent = Frame
  983. TextLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  984. TextLabel.Position = UDim2.new(0, 0, -0.0094339624, 0)
  985. TextLabel.Size = UDim2.new(0, 205, 0, 28)
  986. TextLabel.Font = Enum.Font.GothamBold
  987. TextLabel.Text = "Made By Jake11price"
  988. TextLabel.TextColor3 = Color3.new(1, 0.666667, 0)
  989. TextLabel.TextSize = 14
  990. end)
  991.  
  992. close.Name = "close"
  993. close.Parent = main
  994. close.BackgroundColor3 = Color3.new(0, 0, 0)
  995. close.Position = UDim2.new(0.887133241, 0, 0, 0)
  996. close.Size = UDim2.new(0, 50, 0, 44)
  997. close.Font = Enum.Font.GothamBold
  998. close.Text = "X"
  999. close.TextColor3 = Color3.new(1, 0, 0)
  1000. close.TextScaled = true
  1001. close.TextSize = 14
  1002. close.TextWrapped = true
  1003. close.MouseButton1Down:connect(function()
  1004. main.Visible = false
  1005. openmain.Visible = true
  1006. end)
  1007.  
  1008. bypasshackers.Name = "bypasshackers"
  1009. bypasshackers.Parent = main
  1010. bypasshackers.BackgroundColor3 = Color3.new(0, 1, 0)
  1011. bypasshackers.Position = UDim2.new(0.0722347647, 0, 0.765124559, 0)
  1012. bypasshackers.Size = UDim2.new(0, 378, 0, 50)
  1013. bypasshackers.Font = Enum.Font.SourceSansBold
  1014. bypasshackers.Text = "Bypass Hackers (Dont press this more than once)"
  1015. bypasshackers.TextColor3 = Color3.new(0, 0, 0)
  1016. bypasshackers.TextSize = 15
  1017. bypasshackers.MouseButton1Down:connect(function()
  1018.  while wait(3.5) do
  1019.        saved = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  1020.         game:GetService("StarterGui"):SetCore("SendNotification", {
  1021.         Title = "Position Saved";
  1022.         Text = "Success";
  1023.         })
  1024.  
  1025. workspace.Remote.TeamEvent:FireServer("Bright blue")
  1026.  
  1027. local A_1 = "LocalPlayer"
  1028. local Event = game:GetService("Workspace").Remote.loadchar
  1029. Event:InvokeServer(A_1)
  1030.  
  1031.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = saved
  1032.         game:GetService("StarterGui"):SetCore("SendNotification", {
  1033.         Title = "Position Loaded";
  1034.         Text = "Success";
  1035.         })
  1036. end
  1037. end)
  1038.  
  1039. openmain.Name = "openmain"
  1040. openmain.Parent = gui
  1041. openmain.BackgroundColor3 = Color3.new(0, 0, 0)
  1042. openmain.Position = UDim2.new(0.00822120812, 0, 0.538083494, 0)
  1043. openmain.Size = UDim2.new(0, 107, 0, 27)
  1044. openmain.Visible = false
  1045.  
  1046. open.Name = "open"
  1047. open.Parent = openmain
  1048. open.BackgroundColor3 = Color3.new(0, 0, 0)
  1049. open.Size = UDim2.new(0, 107, 0, 27)
  1050. open.Font = Enum.Font.GothamBold
  1051. open.Text = "Open"
  1052. open.TextColor3 = Color3.new(0, 1, 1)
  1053. open.TextScaled = true
  1054. open.TextSize = 14
  1055. open.TextWrapped = true
  1056. open.MouseButton1Down:connect(function()
  1057. openmain.Visible = false
  1058. main.Visible = true
  1059. end)
  1060. end)
  1061.  
  1062. prisonbreaker.Name = "prisonbreaker"
  1063. prisonbreaker.Parent = main
  1064. prisonbreaker.BackgroundColor3 = Color3.new(0, 1, 1)
  1065. prisonbreaker.Position = UDim2.new(0.010818379, 0, 0.418325961, 0)
  1066. prisonbreaker.Size = UDim2.new(0, 130, 0, 50)
  1067. prisonbreaker.Font = Enum.Font.GothamBold
  1068. prisonbreaker.Text = "PrisonBreaker V1.5"
  1069. prisonbreaker.TextColor3 = Color3.new(0, 0, 0)
  1070. prisonbreaker.TextSize = 14
  1071. prisonbreaker.MouseButton1Down:connect(function()
  1072. loadstring(game:HttpGet("https://pastebin.com/raw/HpCpt9rt",true))()
  1073. end)
  1074.  
  1075. spammain.Name = "spammain"
  1076. spammain.Parent = main
  1077. spammain.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  1078. spammain.Position = UDim2.new(0.203111544, 0, 0.670535982, 0)
  1079. spammain.Size = UDim2.new(0, 256, 0, 70)
  1080.  
  1081. spamtext.Name = "spamtext"
  1082. spamtext.Parent = spammain
  1083. spamtext.BackgroundColor3 = Color3.new(0.333333, 0, 0.498039)
  1084. spamtext.Position = UDim2.new(0.02734375, 0, 0, 0)
  1085. spamtext.Size = UDim2.new(0, 242, 0, 29)
  1086. spamtext.Font = Enum.Font.GothamBlack
  1087. spamtext.Text = "PlayerName"
  1088. spamtext.TextColor3 = Color3.new(0, 1, 1)
  1089. spamtext.TextSize = 14
  1090.  
  1091. spammainoff.Name = "spammainoff"
  1092. spammainoff.Parent = spammain
  1093. spammainoff.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  1094. spammainoff.Position = UDim2.new(0.109375, 0, 0.559319198, 0)
  1095. spammainoff.Size = UDim2.new(0, 201, 0, 30)
  1096.  
  1097. spamoff.Name = "spamoff"
  1098. spamoff.Parent = spammainoff
  1099. spamoff.BackgroundColor3 = Color3.new(1, 0, 0)
  1100. spamoff.Position = UDim2.new(0, 0, -0.0141263343, 0)
  1101. spamoff.Size = UDim2.new(0, 201, 0, 30)
  1102. spamoff.Font = Enum.Font.GothamBold
  1103. spamoff.Text = "Spam Arrest (OFF)"
  1104. spamoff.TextColor3 = Color3.new(0, 0, 0)
  1105. spamoff.TextSize = 14
  1106. spamoff.MouseButton1Down:connect(function()
  1107. spammainoff.Visible = false
  1108. spammainon.Visible = true
  1109.  
  1110.     local loll = FindPlayer(spamtext.Text)
  1111. _G.Spam = true
  1112. game:GetService("RunService").Heartbeat:Connect(function()
  1113. if _G.Spam == true then
  1114.         if loll and loll.Character then
  1115. while _G.Spam == true do wait()
  1116. workspace.Remote.arrest:InvokeServer(loll.Character.Torso)
  1117. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = loll.Character.HumanoidRootPart.CFrame
  1118.         end
  1119.     end
  1120.     end
  1121. end)
  1122. end)
  1123.  
  1124. spammainon.Name = "spammainon"
  1125. spammainon.Parent = spammain
  1126. spammainon.BackgroundColor3 = Color3.new(0, 0.333333, 1)
  1127. spammainon.Position = UDim2.new(0.10546875, 0, 0.544769287, 0)
  1128. spammainon.Size = UDim2.new(0, 201, 0, 30)
  1129. spammainon.Visible = false
  1130.  
  1131. spamon.Name = "spamon"
  1132. spamon.Parent = spammainon
  1133. spamon.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  1134. spamon.Position = UDim2.new(0.00497508049, 0, 0, 0)
  1135. spamon.Size = UDim2.new(0, 201, 0, 30)
  1136. spamon.Font = Enum.Font.GothamBold
  1137. spamon.Text = "Spam Arrest (ON)"
  1138. spamon.TextColor3 = Color3.new(0, 0, 0)
  1139. spamon.TextSize = 14
  1140. spamon.MouseButton1Down:connect(function()
  1141. spammainon.Visible = false
  1142. spammainoff.Visible = true
  1143.  
  1144.     local loll = FindPlayer(spamtext.Text)
  1145. _G.Spam = false
  1146. game:GetService("RunService").Heartbeat:Connect(function()
  1147. if _G.Spam == true then
  1148.         if loll and loll.Character then
  1149. while _G.Spam == true do wait()
  1150. workspace.Remote.arrest:InvokeServer(loll.Character.Torso)
  1151. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = loll.Character.HumanoidRootPart.CFrame
  1152.         end
  1153.     end
  1154.     end
  1155. end)
  1156. end)
  1157.  
  1158. close.Name = "close"
  1159. close.Parent = main
  1160. close.BackgroundColor3 = Color3.new(1, 0, 0)
  1161. close.Position = UDim2.new(0.92915684, 0, -0.00671995198, 0)
  1162. close.Size = UDim2.new(0, 38, 0, 31)
  1163. close.Font = Enum.Font.GothamBold
  1164. close.Text = "X"
  1165. close.TextColor3 = Color3.new(0, 0, 0)
  1166. close.TextScaled = true
  1167. close.TextSize = 14
  1168. close.TextWrapped = true
  1169. close.MouseButton1Down:connect(function()
  1170. main.Visible = false
  1171. openmain.Visible = true
  1172. end)
  1173.  
  1174. openmain.Name = "openmain"
  1175. openmain.Parent = PrisonDestroyer
  1176. openmain.BackgroundColor3 = Color3.new(1, 1, 1)
  1177. openmain.Position = UDim2.new(0.00678593433, 0, 0.255528271, 0)
  1178. openmain.Size = UDim2.new(0, 100, 0, 30)
  1179. openmain.Visible = false
  1180.  
  1181. open.Name = "open"
  1182. open.Parent = openmain
  1183. open.BackgroundColor3 = Color3.new(0, 1, 1)
  1184. open.Position = UDim2.new(-0.0100000184, 0, 0, 0)
  1185. open.Size = UDim2.new(0, 100, 0, 30)
  1186. open.Font = Enum.Font.GothamBold
  1187. open.Text = "OPEN"
  1188. open.TextColor3 = Color3.new(0, 0, 0)
  1189. open.TextSize = 16
  1190. open.MouseButton1Down:connect(function()
  1191. openmain.Visible = false
  1192. main.Visible = true
  1193. end)
Add Comment
Please, Sign In to add comment