Advertisement
PJisawesome12345678

Prison Life Gui (THE FAST M9 DOES NOT WORK YET)

Nov 12th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local Prison = Instance.new("ScreenGui")
  5. local openframe = Instance.new("Frame")
  6. local Open = Instance.new("TextButton")
  7. local Main = Instance.new("Frame")
  8. local Name = Instance.new("TextBox")
  9. local Credits = Instance.new("TextBox")
  10. local FastM9 = Instance.new("TextButton")
  11. local AllGuns = Instance.new("TextButton")
  12. local Close = Instance.new("TextButton")
  13. --Properties:
  14. Prison.Name = "Prison"
  15. Prison.Parent = game.CoreGui
  16.  
  17. openframe.Name = "open frame"
  18. openframe.Parent = Prison
  19. openframe.BackgroundColor3 = Color3.new(1, 1, 1)
  20. openframe.Position = UDim2.new(0, 0, 0.555776834, 0)
  21. openframe.Size = UDim2.new(0, 130, 0, 28)
  22. openframe.Style = Enum.FrameStyle.DropShadow
  23.  
  24. Open.Name = "Open"
  25. Open.Parent = openframe
  26. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  27. Open.BackgroundTransparency = 0.89999997615814
  28. Open.Position = UDim2.new(0.0489941239, 0, -0.0765304565, 0)
  29. Open.Size = UDim2.new(0, 96, 0, 16)
  30. Open.Font = Enum.Font.SciFi
  31. Open.Text = "Open"
  32. Open.TextColor3 = Color3.new(1, 1, 1)
  33. Open.TextSize = 14
  34. Open.MouseButton1Down:connect(function()
  35. Main.Visible = true
  36. openframe.Visible = false
  37. end)
  38.  
  39. Main.Name = "Main"
  40. Main.Parent = Prison
  41. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  42. Main.Position = UDim2.new(0.199262008, 0, 0.3047809, 0)
  43. Main.Size = UDim2.new(0, 288, 0, 279)
  44. Main.Visible = false
  45. Main.Style = Enum.FrameStyle.DropShadow
  46. Main.Active = true
  47. Main.Draggable = true
  48.  
  49. Name.Name = "Name"
  50. Name.Parent = Main
  51. Name.BackgroundColor3 = Color3.new(0, 0, 0)
  52. Name.Position = UDim2.new(-0.0306177139, 0, -0.00398440333, 0)
  53. Name.Size = UDim2.new(0, 288, 0, 22)
  54. Name.ClearTextOnFocus = false
  55. Name.Font = Enum.Font.SciFi
  56. Name.Text = ":D Prison life Gui :D"
  57. Name.TextColor3 = Color3.new(1, 1, 1)
  58. Name.TextSize = 14
  59.  
  60. Credits.Name = "Credits"
  61. Credits.Parent = Main
  62. Credits.BackgroundColor3 = Color3.new(0, 0, 0)
  63. Credits.Position = UDim2.new(-0.0306177139, 0, 0.924331009, 0)
  64. Credits.Size = UDim2.new(0, 288, 0, 22)
  65. Credits.ClearTextOnFocus = false
  66. Credits.Font = Enum.Font.SciFi
  67. Credits.Text = "Made By PJisawesome12345678 On Youtube!"
  68. Credits.TextColor3 = Color3.new(1, 1, 1)
  69. Credits.TextSize = 14
  70.  
  71. FastM9.Name = "Fast M9"
  72. FastM9.Parent = Main
  73. FastM9.BackgroundColor3 = Color3.new(0, 0, 0)
  74. FastM9.Position = UDim2.new(0.132137299, 0, 0.276961982, 0)
  75. FastM9.Size = UDim2.new(0, 200, 0, 35)
  76. FastM9.Font = Enum.Font.SciFi
  77. FastM9.Text = "Fast M9"
  78. FastM9.TextColor3 = Color3.new(1, 1, 1)
  79. FastM9.TextSize = 14
  80. FastM9.MouseButton1Down:connect(function()
  81. local player = game:GetService("Players").LocalPlayer
  82. local gun = player.Backpack:FindFirstChild("M9")
  83. local sM = require(gun:FindFirstChild("GunStates"))
  84. sM["Damage"] = 999
  85. sM["MaxAmmo"] = 9999991
  86. sM["StoredAmmo"] = 9999991
  87. sM["FireRate"] = 0.05
  88. sM["AmmoPerClip"] = 9999991
  89. sM["Range"] = 5000
  90. sM["ReloadTime"] = 0.05
  91. sM["Bullets"] = 10
  92. sM["AutoFire"] = true
  93. end)
  94.  
  95. AllGuns.Name = "All Guns"
  96. AllGuns.Parent = Main
  97. AllGuns.BackgroundColor3 = Color3.new(0, 0, 0)
  98. AllGuns.Position = UDim2.new(0.128665075, 0, 0.610295296, 0)
  99. AllGuns.Size = UDim2.new(0, 200, 0, 35)
  100. AllGuns.Font = Enum.Font.SciFi
  101. AllGuns.Text = "All Guns"
  102. AllGuns.TextColor3 = Color3.new(1, 1, 1)
  103. AllGuns.TextSize = 14
  104. AllGuns.MouseButton1Down:connect(function()
  105. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  106.  
  107. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  108. print(lol)
  109. end
  110. end)
  111.  
  112. Close.Name = "Close"
  113. Close.Parent = Main
  114. Close.BackgroundColor3 = Color3.new(0, 0, 0)
  115. Close.Position = UDim2.new(0.956812143, 0, 0.0269259661, 0)
  116. Close.Size = UDim2.new(0, 11, 0, 6)
  117. Close.Font = Enum.Font.SciFi
  118. Close.Text = "X"
  119. Close.TextColor3 = Color3.new(1, 1, 1)
  120. Close.TextSize = 14
  121. Close.MouseButton1Down:connect(function()
  122. openframe.Visible = true
  123. Main.Visible = false
  124. end)
  125.  
  126. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement