Advertisement
jakereekie

prison life gui 2020

Dec 26th, 2020
1,377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.00 KB | None | 0 0
  1. --script made by the one and only summercool299
  2. --updates coming soon!!
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local prisonBreak = Instance.new("Frame")
  5. local Title = Instance.new("TextLabel")
  6. local TazerBypass = Instance.new("TextButton")
  7. local ObGuns = Instance.new("TextButton")
  8. local ModGuns = Instance.new("TextButton")
  9.  
  10.  
  11. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. prisonBreak.Name = "prisonBreak"
  15. prisonBreak.Parent = ScreenGui
  16. prisonBreak.Active = true
  17. prisonBreak.BackgroundColor3 = Color3.fromRGB(87, 177, 255)
  18. prisonBreak.Position = UDim2.new(0.00594059378, 0, 0.264317185, 0)
  19. prisonBreak.Size = UDim2.new(0, 105, 0, 281)
  20.  
  21. Title.Name = "Title"
  22. Title.Parent = prisonBreak
  23. Title.BackgroundColor3 = Color3.fromRGB(80, 141, 255)
  24. Title.Position = UDim2.new(0.0190476198, 0, -0.000732682645, 0)
  25. Title.Size = UDim2.new(0, 103, 0, 50)
  26. Title.Font = Enum.Font.GothamSemibold
  27. Title.Text = "Prison Studios"
  28. Title.TextColor3 = Color3.fromRGB(0, 0, 0)
  29. Title.TextScaled = true
  30. Title.TextSize = 14.000
  31. Title.TextWrapped = true
  32.  
  33. TazerBypass.Name = "TazerBypass"
  34. TazerBypass.Parent = prisonBreak
  35. TazerBypass.BackgroundColor3 = Color3.fromRGB(96, 125, 255)
  36. TazerBypass.Position = UDim2.new(-0.00386100379, 0, 0.285794973, 0)
  37. TazerBypass.Size = UDim2.new(0, 104, 0, 45)
  38. TazerBypass.Font = Enum.Font.SourceSans
  39. TazerBypass.Text = "Tazer Bypass"
  40. TazerBypass.TextColor3 = Color3.fromRGB(0, 0, 0)
  41. TazerBypass.TextSize = 22.000
  42. TazerBypass.TextWrapped = true
  43. TazerBypass.MouseButton1Down:connect(function()
  44.     loadstring(game:HttpGet("https://pastebin.com/raw/5WSq374b"))();
  45.  
  46. end)
  47.  
  48. ObGuns.Name = "ObGuns"
  49. ObGuns.Parent = prisonBreak
  50. ObGuns.BackgroundColor3 = Color3.fromRGB(96, 125, 255)
  51. ObGuns.Position = UDim2.new(-0.000517964363, 0, 0.831822813, 0)
  52. ObGuns.Size = UDim2.new(0, 104, 0, 45)
  53. ObGuns.Font = Enum.Font.SourceSans
  54. ObGuns.Text = "Obtain All Guns"
  55. ObGuns.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. ObGuns.TextSize = 22.000
  57. ObGuns.TextWrapped = true
  58. ObGuns.MouseButton1Down:connect(function()
  59.     for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  60.  
  61. OwO = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  62. end
  63. end)
  64.  
  65. ModGuns.Name = "ModGuns"
  66. ModGuns.Parent = prisonBreak
  67. ModGuns.BackgroundColor3 = Color3.fromRGB(96, 125, 255)
  68. ModGuns.Position = UDim2.new(0.0185296554, 0, 0.534814715, 0)
  69. ModGuns.Size = UDim2.new(0, 104, 0, 45)
  70. ModGuns.Font = Enum.Font.SourceSans
  71. ModGuns.Text = "Mod Guns"
  72. ModGuns.TextColor3 = Color3.fromRGB(0, 0, 0)
  73. ModGuns.TextSize = 22.000
  74. ModGuns.TextWrapped = true
  75. ModGuns.MouseButton1Down:connect(function()
  76.     loadstring(game:HttpGet("https://pastebin.com/raw/yyC0hhy"))();
  77.  
  78. end)
  79.  
  80.  
  81. local function ZACISY_fake_script()
  82.     local script = Instance.new('LocalScript', ScreenGui)
  83.  
  84.     prisonBreak = script.Parent.prisonBreak
  85.     prisonBreak.Draggable = true
  86.     prisonBreak.Active = true
  87.     prisonBreak.Selectable = true
  88. end
  89. coroutine.wrap(ZACISY_fake_script)()
  90.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement