Advertisement
Guest User

Prison Life Gui Made By GamingwithJollyz

a guest
Jan 26th, 2020
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. -- Made By GamingWithJollyz -- Name of gui: TestGui -- Used for Prison Life
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local main = Instance.new("Frame")
  4. local title = Instance.new("TextLabel")
  5. local prisonbreakerv15 = Instance.new("TextButton")
  6. local prisonbreakerv16 = Instance.new("TextButton")
  7. local close = Instance.new("TextButton")
  8. local openmain = Instance.new("Frame")
  9. local open = Instance.new("TextButton")
  10. --Properties:
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. main.Name = "main"
  14. main.Parent = ScreenGui
  15. main.BackgroundColor3 = Color3.new(0, 0, 0)
  16. main.Position = UDim2.new(0.0203577988, 0, 0.641277611, 0)
  17. main.Size = UDim2.new(0, 332, 0, 211)
  18. main.Visible = false
  19. main.Active = true
  20. main.Draggable = true
  21.  
  22. title.Name = "title"
  23. title.Parent = main
  24. title.BackgroundColor3 = Color3.new(1, 0, 1)
  25. title.Size = UDim2.new(0, 332, 0, 31)
  26. title.Font = Enum.Font.GothamBold
  27. title.Text = "Test Gui"
  28. title.TextColor3 = Color3.new(0, 0, 0)
  29. title.TextSize = 14
  30.  
  31. prisonbreakerv15.Name = "prisonbreakerv15"
  32. prisonbreakerv15.Parent = main
  33. prisonbreakerv15.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  34. prisonbreakerv15.Position = UDim2.new(0.036144577, 0, 0.379146934, 0)
  35. prisonbreakerv15.Size = UDim2.new(0, 110, 0, 50)
  36. prisonbreakerv15.Font = Enum.Font.GothamBold
  37. prisonbreakerv15.Text = "PrisonBreaker V1.5"
  38. prisonbreakerv15.TextColor3 = Color3.new(0, 0, 0)
  39. prisonbreakerv15.TextScaled = true
  40. prisonbreakerv15.TextSize = 10
  41. prisonbreakerv15.TextWrapped = true
  42. prisonbreakerv15.MouseButton1Down:connect(function()
  43. loadstring(game:HttpGet("https://pastebin.com/raw/HpCpt9rt",true))()
  44. end)
  45.  
  46. prisonbreakerv16.Name = "prisonbreakerv16"
  47. prisonbreakerv16.Parent = main
  48. prisonbreakerv16.BackgroundColor3 = Color3.new(0.333333, 1, 0)
  49. prisonbreakerv16.Position = UDim2.new(0.614457846, 0, 0.379146934, 0)
  50. prisonbreakerv16.Size = UDim2.new(0, 110, 0, 50)
  51. prisonbreakerv16.Font = Enum.Font.GothamBold
  52. prisonbreakerv16.Text = "PrisonBreaker V1.6"
  53. prisonbreakerv16.TextColor3 = Color3.new(0, 0, 0)
  54. prisonbreakerv16.TextScaled = true
  55. prisonbreakerv16.TextSize = 14
  56. prisonbreakerv16.TextWrapped = true
  57. prisonbreakerv16.MouseButton1Down:connect(function()
  58. loadstring(game:HttpGet("https://pastebin.com/raw/4rkRHviN",true))()
  59. end)
  60.  
  61. close.Name = "close"
  62. close.Parent = main
  63. close.BackgroundColor3 = Color3.new(1, 0, 0)
  64. close.Position = UDim2.new(0.879518092, 0, 0, 0)
  65. close.Size = UDim2.new(0, 40, 0, 31)
  66. close.Font = Enum.Font.GothamBlack
  67. close.Text = "X"
  68. close.TextColor3 = Color3.new(0, 0, 0)
  69. close.TextScaled = true
  70. close.TextSize = 14
  71. close.TextWrapped = true
  72. close.MouseButton1Down:connect(function()
  73. main.Visible = false
  74. openmain.Visible = true
  75. end)
  76.  
  77. openmain.Name = "openmain"
  78. openmain.Parent = ScreenGui
  79. openmain.BackgroundColor3 = Color3.new(1, 1, 1)
  80. openmain.Position = UDim2.new(0.00801973976, 0, 0.423832953, 0)
  81. openmain.Size = UDim2.new(0, 100, 0, 28)
  82. openmain.Active = true
  83. openmain.Draggable = true
  84.  
  85. open.Name = "open"
  86. open.Parent = openmain
  87. open.BackgroundColor3 = Color3.new(1, 0, 0)
  88. open.Size = UDim2.new(0, 100, 0, 28)
  89. open.Font = Enum.Font.GothamBold
  90. open.Text = "OPEN"
  91. open.TextColor3 = Color3.new(0, 0, 0)
  92. open.TextSize = 18
  93. open.TextWrapped = true
  94. open.MouseButton1Down:connect(function()
  95. openmain.Visible = false
  96. main.Visible = true
  97. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement