Advertisement
thebest0059

Prison Life GUI

Sep 24th, 2018
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.54 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local prisonlifeGUI = Instance.new("ScreenGui")
  5. local frame = Instance.new("Frame")
  6. local open = Instance.new("TextButton")
  7. local main = Instance.new("Frame")
  8. local credits = Instance.new("TextBox")
  9. local title = Instance.new("TextBox")
  10. local fastm9 = Instance.new("TextButton")
  11. local guns = Instance.new("TextButton")
  12. local close = Instance.new("TextButton")
  13. --Properties:
  14. prisonlifeGUI.Name = "prison life GUI"
  15. prisonlifeGUI.Parent = game.CoreGui
  16.  
  17. frame.Name = "frame"
  18. frame.Parent = prisonlifeGUI
  19. frame.BackgroundColor3 = Color3.new(1, 1, 1)
  20. frame.Position = UDim2.new(0, 0, 0.704453468, 0)
  21. frame.Size = UDim2.new(0, 96, 0, 20)
  22. frame.Style = Enum.FrameStyle.DropShadow
  23.  
  24. open.Name = "open"
  25. open.Parent = frame
  26. open.BackgroundColor3 = Color3.new(1, 1, 1)
  27. open.BackgroundTransparency = 0.89999997615814
  28. open.Position = UDim2.new(-0.0416666642, 0, -0.699999988, 0)
  29. open.Size = UDim2.new(0, 83, 0, 15)
  30. open.Font = Enum.Font.SciFi
  31. open.Text = "Open"
  32. open.TextColor3 = Color3.new(0, 0, 0)
  33. open.TextSize = 14
  34. open.MouseButton1Down:connect(function()
  35. main.Visible = true
  36. fram.Visible = false
  37. end)
  38.  
  39. main.Name = "main"
  40. main.Parent = prisonlifeGUI
  41. main.BackgroundColor3 = Color3.new(1, 1, 1)
  42. main.Position = UDim2.new(0.23092784, 0, 0.275303632, 0)
  43. main.Size = UDim2.new(0, 243, 0, 186)
  44. main.Visible = false
  45. main.Style = Enum.FrameStyle.DropShadow
  46. main.Active = true
  47. main.Draggable = true
  48.  
  49. credits.Name = "credits"
  50. credits.Parent = main
  51. credits.BackgroundColor3 = Color3.new(0, 0, 0)
  52. credits.Position = UDim2.new(-0.01234568, 0, 0.95161289, 0)
  53. credits.Size = UDim2.new(0, 232, 0, 19)
  54. credits.Text = "Created By K9F9UNITS"
  55. credits.TextColor3 = Color3.new(1, 1, 1)
  56. credits.TextSize = 14
  57.  
  58. title.Name = "title"
  59. title.Parent = main
  60. title.BackgroundColor3 = Color3.new(0, 0, 0)
  61. title.Position = UDim2.new(-0.0164609049, 0, -0.0483870953, 0)
  62. title.Size = UDim2.new(0, 236, 0, 19)
  63. title.Text = "prison life GUI"
  64. title.TextColor3 = Color3.new(1, 1, 1)
  65. title.TextSize = 14
  66.  
  67. fastm9.Name = "fastm9"
  68. fastm9.Parent = main
  69. fastm9.BackgroundColor3 = Color3.new(0, 0, 0)
  70. fastm9.Position = UDim2.new(0.0329216644, 0, 0.306451619, 0)
  71. fastm9.Size = UDim2.new(0, 200, 0, 32)
  72. fastm9.Text = "Fast M9"
  73. fastm9.TextColor3 = Color3.new(1, 1, 1)
  74. fastm9.TextSize = 14
  75. fastm9.MouseButton1Down:connect(function()
  76. local player = game:GetService("Players").LocalPlayer
  77. local gun = player.Backpack:FindFirstChild("M9")
  78. local sM = require(gun:FindFirstChild("GunStates"))
  79. sM["Damage"] = 999
  80. sM["MaxAmmo"] = 9999991
  81. sM["StoredAmmo"] = 9999991
  82. sM["FireRate"] = 0.05
  83. sM["AmmoPerClip"] = 9999991
  84. sM["Range"] = 5000
  85. sM["ReloadTime"] = 0.05
  86. sM["Bullets"] = 10
  87. sM["AutoFire"] = true
  88. end)
  89.  
  90. guns.Name = "guns"
  91. guns.Parent = main
  92. guns.BackgroundColor3 = Color3.new(0, 0, 0)
  93. guns.Position = UDim2.new(0.0329217426, 0, 0.661290348, 0)
  94. guns.Size = UDim2.new(0, 200, 0, 33)
  95. guns.Text = "All Guns"
  96. guns.TextColor3 = Color3.new(1, 1, 1)
  97. guns.TextSize = 14
  98. guns.MouseButton1Down:connect(function()
  99. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  100.  
  101. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  102. print(lol)
  103. end
  104. end)
  105.  
  106. close.Name = "close"
  107. close.Parent = main
  108. close.BackgroundColor3 = Color3.new(0, 0, 0)
  109. close.Position = UDim2.new(0.954732478, 0, -0.0483871102, 0)
  110. close.Size = UDim2.new(0, 15, 0, 18)
  111. close.Text = "X"
  112. close.TextColor3 = Color3.new(1, 1, 1)
  113. close.TextSize = 14
  114. close.MouseButton1Down:connect(function()
  115. frame.Visible = true
  116. main.Visible = false
  117. end)
  118.  
  119. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement