Advertisement
bivakhiem114

Prison Life Gui

Mar 5th, 2019
411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.69 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 title = Instance.new("TextLabel")
  9. local credits = Instance.new("TextLabel")
  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.00611620815, 0, 0.694767416, 0)
  21. frame.Size = UDim2.new(0, 124, 0, 48)
  22. frame.Style = Enum.FrameStyle.DropShadow
  23.  
  24. open.Name = "open"
  25. open.Parent = frame
  26. open.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
  27. open.Position = UDim2.new(-0.0806453228, 0, -0.027412096, 0)
  28. open.Size = UDim2.new(0, 118, 0, 32)
  29. open.Font = Enum.Font.SourceSans
  30. open.Text = "Open"
  31. open.TextColor3 = Color3.new(0, 0, 0)
  32. open.TextSize = 14
  33. open.MouseButton1Down:connect(function()
  34. main.Visible = true
  35. frame.Visible = false
  36. end)
  37.  
  38. main.Name = "main"
  39. main.Parent = PrisonLifeGui
  40. main.BackgroundColor3 = Color3.new(0, 0, 1)
  41. main.Position = UDim2.new(0.283384323, 0, 0.348837197, 0)
  42. main.Size = UDim2.new(0, 281, 0, 304)
  43. main.Visible = false
  44. main.Active = true
  45. main.Draggble = true
  46.  
  47. title.Name = "title"
  48. title.Parent = main
  49. title.BackgroundColor3 = Color3.new(1, 0, 0)
  50. title.Position = UDim2.new(0.142348751, 0, 0, 0)
  51. title.Size = UDim2.new(0, 200, 0, 50)
  52. title.Font = Enum.Font.SourceSans
  53. title.Text = "Khiêm Channel"
  54. title.TextColor3 = Color3.new(0, 0, 0)
  55. title.TextSize = 14
  56.  
  57. credits.Name = "credits"
  58. credits.Parent = main
  59. credits.BackgroundColor3 = Color3.new(1, 0, 0)
  60. credits.Position = UDim2.new(0.142348751, 0, 0.835526288, 0)
  61. credits.Size = UDim2.new(0, 200, 0, 50)
  62. credits.Font = Enum.Font.SourceSans
  63. credits.Text = "pls subscribe my channel"
  64. credits.TextColor3 = Color3.new(0, 0, 0)
  65. credits.TextSize = 14
  66.  
  67. fastm9.Name = "fastm9"
  68. fastm9.Parent = main
  69. fastm9.BackgroundColor3 = Color3.new(1, 1, 1)
  70. fastm9.Position = UDim2.new(0.142348751, 0, 0.259868413, 0)
  71. fastm9.Size = UDim2.new(0, 200, 0, 50)
  72. fastm9.Font = Enum.Font.SourceSans
  73. fastm9.Text = "Fast M9"
  74. fastm9.TextColor3 = Color3.new(0, 0, 0)
  75. fastm9.TextSize = 14
  76. fastm9.MouseButton1Down:connect(function()
  77. local player = game:GetService("Players").LocalPlayer
  78. local gun = player.Backpack:FindFirstChild("M9")
  79. local sM = require(gun:FindFirstChild("GunStates"))
  80. sM["Damage"] = 999
  81. sM["MaxAmmo"] = 9999991
  82. sM["StoredAmmo"] = 9999991
  83. sM["FireRate"] = 0.05
  84. sM["AmmoPerClip"] = 9999991
  85. sM["Range"] = 5000
  86. sM["ReloadTime"] = 0.05
  87. sM["Bullets"] = 10
  88. sM["AutoFire"] = true
  89. end)
  90.  
  91. guns.Name = "guns"
  92. guns.Parent = main
  93. guns.BackgroundColor3 = Color3.new(1, 1, 1)
  94. guns.Position = UDim2.new(0.142348751, 0, 0.519736826, 0)
  95. guns.Size = UDim2.new(0, 200, 0, 50)
  96. guns.Font = Enum.Font.SourceSans
  97. guns.Text = "All Guns"
  98. guns.TextColor3 = Color3.new(0, 0, 0)
  99. guns.TextSize = 14
  100. guns.MouseButton1Down:connect(function()
  101. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  102.  
  103. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  104. print(lol)
  105. end
  106. end)
  107.  
  108. close.Name = "close"
  109. close.Parent = main
  110. close.BackgroundColor3 = Color3.new(1, 1, 1)
  111. close.Position = UDim2.new(0.854092419, 0, 0, 0)
  112. close.Size = UDim2.new(0, 41, 0, 37)
  113. close.Font = Enum.Font.SourceSans
  114. close.Text = "X"
  115. close.TextColor3 = Color3.new(0, 0, 0)
  116. close.TextSize = 25
  117. close.TextStrokeColor3 = Color3.new(1, 1, 1)
  118. close.MouseButton1Down:connect(function()
  119. frame.Visible = true
  120. main.Visible = false
  121. end)
  122.  
  123. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement