Advertisement
Guest User

Prison Life Script Hub

a guest
Dec 24th, 2019
23,450
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.03 KB | None | 0 0
  1. --Coded By Fragency
  2. --Check me out on youtube: Fragency
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Main = Instance.new("Frame")
  6. local PrisionKiller = Instance.new("TextLabel")
  7. local CreatedByFragency = Instance.new("TextLabel")
  8. local PrisionBreaker = Instance.new("TextButton")
  9. local jmusescript = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. Main.Name = "Main"
  16. Main.Parent = ScreenGui
  17. Main.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  18. Main.Position = UDim2.new(0.00646626763, 0, 0.465601951, 0)
  19. Main.Size = UDim2.new(0, 185, 0, 111)
  20. Main.Active = true
  21. Main.Draggable = true
  22.  
  23. PrisionKiller.Name = "PrisionKiller"
  24. PrisionKiller.Parent = Main
  25. PrisionKiller.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  26. PrisionKiller.Size = UDim2.new(0, 185, 0, 19)
  27. PrisionKiller.Font = Enum.Font.SourceSans
  28. PrisionKiller.Text = "Prision Killer"
  29. PrisionKiller.TextColor3 = Color3.fromRGB(255, 255, 255)
  30. PrisionKiller.TextSize = 14.000
  31.  
  32. CreatedByFragency.Name = "CreatedByFragency"
  33. CreatedByFragency.Parent = Main
  34. CreatedByFragency.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  35. CreatedByFragency.Position = UDim2.new(-0.00540542603, 0, 0.87970233, 0)
  36. CreatedByFragency.Size = UDim2.new(0, 185, 0, 13)
  37. CreatedByFragency.Font = Enum.Font.SourceSans
  38. CreatedByFragency.Text = "Created By Fragency"
  39. CreatedByFragency.TextColor3 = Color3.fromRGB(255, 255, 255)
  40. CreatedByFragency.TextSize = 14.000
  41.  
  42. PrisionBreaker.Name = "PrisionBreaker"
  43. PrisionBreaker.Parent = Main
  44. PrisionBreaker.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  45. PrisionBreaker.BorderColor3 = Color3.fromRGB(255, 255, 255)
  46. PrisionBreaker.BorderSizePixel = 0
  47. PrisionBreaker.Position = UDim2.new(0.0386100151, 0, 0.196850404, 0)
  48. PrisionBreaker.Size = UDim2.new(0, 169, 0, 29)
  49. PrisionBreaker.AutoButtonColor = false
  50. PrisionBreaker.Font = Enum.Font.SourceSans
  51. PrisionBreaker.Text = "PrisionBreaker GUI"
  52. PrisionBreaker.TextColor3 = Color3.fromRGB(255, 255, 255)
  53. PrisionBreaker.TextSize = 14.000
  54. PrisionBreaker.MouseButton1Down:connect(function()
  55. loadstring(game:HttpGet("https://pastebin.com/raw/UYXeVgF4", true))()
  56. end)
  57.  
  58. jmusescript.Name = "jmusescript"
  59. jmusescript.Parent = Main
  60. jmusescript.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  61. jmusescript.BorderColor3 = Color3.fromRGB(255, 255, 255)
  62. jmusescript.BorderSizePixel = 0
  63. jmusescript.Position = UDim2.new(0.0386100151, 0, 0.542243063, 0)
  64. jmusescript.Size = UDim2.new(0, 169, 0, 29)
  65. jmusescript.AutoButtonColor = false
  66. jmusescript.Font = Enum.Font.SourceSans
  67. jmusescript.Text = "Jmuse's Prision Life GUI"
  68. jmusescript.TextColor3 = Color3.fromRGB(255, 255, 255)
  69. jmusescript.TextSize = 14.000
  70. jmusescript.MouseButton1Down:connect(function()
  71. loadstring(game:HttpGet("https://76549.jmuse.repl.co/", true))()
  72. end)
  73.  
  74. --Open&Close
  75. function onKeyPress(inputObject, gameProcessedEvent)
  76. if inputObject.KeyCode == Enum.KeyCode.P then
  77. if (Main).Visible == false then
  78. (Main).Visible = true
  79. else
  80. (Main).Visible = false
  81. end
  82. end
  83. end
  84.  
  85. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  86. --End
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement