Advertisement
MegaOnYT

Prison Smacker V1

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