FazzaRBLX

Prison Life Gui

Oct 7th, 2018
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.99 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local FazzaRblxHACK = Instance.new("ScreenGui")
  5. local OpenFrame = Instance.new("Frame")
  6. local Open = Instance.new("TextButton")
  7. local MainFrame = Instance.new("Frame")
  8. local Title = Instance.new("TextBox")
  9. local Creadits = Instance.new("TextBox")
  10. local Fastm9 = Instance.new("TextButton")
  11. local AllGuns = Instance.new("TextButton")
  12. local Close = Instance.new("TextButton")
  13. --Properties:
  14. FazzaRblxHACK.Name = "FazzaRblxHACK"
  15. FazzaRblxHACK.Parent = game.CoreGui
  16.  
  17. OpenFrame.Name = "OpenFrame"
  18. OpenFrame.Parent = FazzaRblxHACK
  19. OpenFrame.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  20. OpenFrame.Position = UDim2.new(0, 0, 0.667731643, 0)
  21. OpenFrame.Size = UDim2.new(0, 87, 0, 34)
  22.  
  23. Open.Name = "Open"
  24. Open.Parent = OpenFrame
  25. Open.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  26. Open.Size = UDim2.new(0, 87, 0, 35)
  27. Open.Font = Enum.Font.SourceSansBold
  28. Open.Text = "OPEN"
  29. Open.TextColor3 = Color3.new(0.333333, 1, 1)
  30. Open.TextSize = 14
  31. Open.MouseButton1Down:connect(function()
  32. OpenFrame.Visible = true
  33. MainFrame.Visible = false
  34. end)
  35.  
  36. MainFrame.Name = "MainFrame"
  37. MainFrame.Parent = FazzaRblxHACK
  38. MainFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  39. MainFrame.Position = UDim2.new(0.213047907, 0, 0.309904158, 0)
  40. MainFrame.Size = UDim2.new(0, 215, 0, 313)
  41. MainFrame.Active = true
  42. MainFrame.Draggable = true
  43.  
  44. Title.Name = "Title"
  45. Title.Parent = MainFrame
  46. Title.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  47. Title.Size = UDim2.new(0, 215, 0, 34)
  48. Title.Font = Enum.Font.SourceSans
  49. Title.Text = "PRISON LIFE GUI V.1.0"
  50. Title.TextColor3 = Color3.new(0.333333, 1, 1)
  51. Title.TextSize = 14
  52.  
  53. Creadits.Name = "Creadits"
  54. Creadits.Parent = MainFrame
  55. Creadits.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  56. Creadits.Position = UDim2.new(0, 0, 0.900958478, 0)
  57. Creadits.Size = UDim2.new(0, 215, 0, 31)
  58. Creadits.Font = Enum.Font.SourceSans
  59. Creadits.Text = "Credits Bye FazzaRBLX     On Yotube"
  60. Creadits.TextColor3 = Color3.new(0.333333, 1, 1)
  61. Creadits.TextSize = 14
  62.  
  63. Fastm9.Name = "Fastm9"
  64. Fastm9.Parent = MainFrame
  65. Fastm9.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  66. Fastm9.Position = UDim2.new(0.148837209, 0, 0.322683692, 0)
  67. Fastm9.Size = UDim2.new(0, 151, 0, 35)
  68. Fastm9.Font = Enum.Font.SourceSansBold
  69. Fastm9.Text = "Fast M9"
  70. Fastm9.TextColor3 = Color3.new(0.333333, 1, 1)
  71. Fastm9.TextScaled = true
  72. Fastm9.TextSize = 14
  73. Fastm9.TextWrapped = true
  74. Fastm9.MouseButton1Down:connect(function()
  75. local player = game:GetService("Players").LocalPlayer
  76. local gun = player.Backpack:FindFirstChild("M9")
  77. local sM = require(gun:FindFirstChild("GunStates"))
  78. sM["Damage"] = 999
  79. sM["MaxAmmo"] = 9999991
  80. sM["StoredAmmo"] = 9999991
  81. sM["FireRate"] = 0.05
  82. sM["AmmoPerClip"] = 9999991
  83. sM["Range"] = 5000
  84. sM["ReloadTime"] = 0.05
  85. sM["Bullets"] = 10
  86. sM["AutoFire"] = true
  87. end)
  88.  
  89.  
  90. AllGuns.Name = "AllGuns"
  91. AllGuns.Parent = MainFrame
  92. AllGuns.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  93. AllGuns.Position = UDim2.new(0.148837209, 0, 0.552715659, 0)
  94. AllGuns.Size = UDim2.new(0, 151, 0, 35)
  95. AllGuns.Font = Enum.Font.SourceSansBold
  96. AllGuns.Text = "All Guns"
  97. AllGuns.TextColor3 = Color3.new(0.333333, 1, 1)
  98. AllGuns.TextScaled = true
  99. AllGuns.TextSize = 14
  100. AllGuns.TextWrapped = true
  101. AllGuns.MouseButton1Down:connect(function()
  102. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  103.  
  104. lol = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  105. print(lol)
  106. end
  107. end)
  108.  
  109. Close.Name = "Close"
  110. Close.Parent = MainFrame
  111. Close.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  112. Close.Position = UDim2.new(0.851162791, 0, 0.0159744415, 0)
  113. Close.Size = UDim2.new(0, 32, 0, 24)
  114. Close.Font = Enum.Font.SourceSans
  115. Close.Text = "X"
  116. Close.TextColor3 = Color3.new(0.333333, 1, 1)
  117. Close.TextScaled = true
  118. Close.TextSize = 14
  119. Close.TextWrapped = true
  120. Close.MouseButton1Down:connect(function()
  121. MainFrame.Visible = true
  122. OpenFrame.Visible = false
  123. end)
Advertisement
Add Comment
Please, Sign In to add comment