Advertisement
dkg_yt

redwood prison roblox gui

May 4th, 2019
1,685
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.99 KB | None | 0 0
  1. -- Instances:
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local mainFrame = Instance.new("Frame")
  4. local TopFrame = Instance.new("Frame")
  5. local Creds = Instance.new("TextLabel")
  6. local closeBut = Instance.new("TextButton")
  7. local Killall = Instance.new("TextButton")
  8. local TazeAll = Instance.new("TextButton")
  9. local GiveallWeapons = Instance.new("TextButton")
  10. local printWeapons = Instance.new("TextButton")
  11. local removeDoors = Instance.new("TextButton")
  12. local psyHub = Instance.new("TextButton")
  13. --Properties:
  14. ScreenGui.Parent = game.CoreGui
  15. mainFrame.Active = true
  16. mainFrame.Draggable = true
  17. TopFrame.Draggable = true
  18.  
  19. mainFrame.Name = "mainFrame"
  20. mainFrame.Parent = ScreenGui
  21. mainFrame.BackgroundColor3 = Color3.new(0.337255, 0.337255, 0.337255)
  22. mainFrame.Position = UDim2.new(0.482706785, 0, 0.343848556, 0)
  23. mainFrame.Size = UDim2.new(0, 273, 0, 166)
  24.  
  25. TopFrame.Name = "TopFrame"
  26. TopFrame.Parent = mainFrame
  27. TopFrame.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  28. TopFrame.Position = UDim2.new(-0.00279554422, 0, -0.00886444096, 0)
  29. TopFrame.Size = UDim2.new(0, 273, 0, 32)
  30.  
  31. Creds.Name = "Creds"
  32. Creds.Parent = TopFrame
  33. Creds.BackgroundColor3 = Color3.new(1, 1, 1)
  34. Creds.BackgroundTransparency = 1
  35. Creds.Position = UDim2.new(-0.0622710697, 0, -0.28125, 0)
  36. Creds.Size = UDim2.new(0, 200, 0, 50)
  37. Creds.Font = Enum.Font.SciFi
  38. Creds.Text = "CheeseChicken#9309"
  39. Creds.TextColor3 = Color3.new(0.45098, 0.45098, 0)
  40. Creds.TextSize = 18
  41.  
  42. closeBut.Name = "closeBut"
  43. closeBut.Parent = TopFrame
  44. closeBut.BackgroundColor3 = Color3.new(1, 1, 1)
  45. closeBut.BackgroundTransparency = 1
  46. closeBut.Position = UDim2.new(0.87397337, 0, 0.195780754, 0)
  47. closeBut.Size = UDim2.new(0, 34, 0, 19)
  48. closeBut.Font = Enum.Font.SourceSans
  49. closeBut.Text = "X"
  50. closeBut.TextColor3 = Color3.new(1, 1, 1)
  51. closeBut.TextSize = 23
  52. closeBut.MouseButton1Click:connect(function()
  53.     mainFrame.Visible = false
  54. end)
  55.  
  56. Killall.Name = "Killall"
  57. Killall.Parent = mainFrame
  58. Killall.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  59. Killall.Position = UDim2.new(0.0433584154, 0, 0.277849585, 0)
  60. Killall.Size = UDim2.new(0, 64, 0, 50)
  61. Killall.Font = Enum.Font.SourceSans
  62. Killall.Text = "kill all"
  63. Killall.TextColor3 = Color3.new(0, 0, 0)
  64. Killall.TextSize = 14
  65. Killall.MouseButton1Click:connect(function()
  66.     for _, v in pairs(game.Players:GetChildren()) do
  67. game.Workspace.resources.RemoteEvent:FireServer("dealDamage", v.Character.Humanoid, 100) --keep in mind friendly fire is off
  68. end
  69. end)
  70.  
  71. TazeAll.Name = "TazeAll"
  72. TazeAll.Parent = mainFrame
  73. TazeAll.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  74. TazeAll.Position = UDim2.new(0.329207629, 0, 0.277849585, 0)
  75. TazeAll.Size = UDim2.new(0, 64, 0, 50)
  76. TazeAll.Font = Enum.Font.SourceSans
  77. TazeAll.Text = "Taze all"
  78. TazeAll.TextColor3 = Color3.new(0, 0, 0)
  79. TazeAll.TextSize = 14
  80. TazeAll.MouseButton1Click:connect(function()
  81.     for _, v in pairs(game.Players:GetChildren()) do
  82. game.Workspace.resources.RemoteEvent:FireServer("tase", v) --keep in mind friendly fire is off
  83. end
  84. end)
  85.  
  86. GiveallWeapons.Name = "GiveallWeapons"
  87. GiveallWeapons.Parent = mainFrame
  88. GiveallWeapons.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  89. GiveallWeapons.Position = UDim2.new(0.614208639, 0, 0.277849585, 0)
  90. GiveallWeapons.Size = UDim2.new(0, 105, 0, 50)
  91. GiveallWeapons.Font = Enum.Font.SourceSans
  92. GiveallWeapons.Text = "give all weapons"
  93. GiveallWeapons.TextColor3 = Color3.new(0, 0, 0)
  94. GiveallWeapons.TextSize = 14
  95. GiveallWeapons.MouseButton1Click:connect(function()
  96.     game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "M98B")
  97. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Revolver")
  98. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "UMP-45")
  99. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Parachute")
  100. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "ACR")
  101. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "M60")
  102. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "add more if u find")
  103. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Fake ID Card")
  104. end)
  105.  
  106. printWeapons.Name = "printWeapons"
  107. printWeapons.Parent = mainFrame
  108. printWeapons.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  109. printWeapons.Position = UDim2.new(0.614208639, 0, 0.651343584, 0)
  110. printWeapons.Size = UDim2.new(0, 105, 0, 50)
  111. printWeapons.Font = Enum.Font.SourceSans
  112. printWeapons.Text = "print all weapons"
  113. printWeapons.TextColor3 = Color3.new(0, 0, 0)
  114. printWeapons.TextSize = 14
  115. printWeapons.MouseButton1Click:Connect(function()
  116.     print("M1014")
  117.     print("SPAS-12")
  118.     print("Makrov")
  119.     print("Dragunov")
  120.     print("Taser")
  121.     print("Ham Sandwich")
  122.     print("Pancakes")
  123.     print("Steak")
  124.     print("Punch")
  125.     print("Handcuffs")
  126.     print("Shank")
  127.     print("Hammer")
  128.     print("Guitar")
  129.     print("Fake ID Card")
  130.     print("ACR")
  131.     print("L86A2")
  132.     print("M60")
  133.     print("Beretta M9")
  134.     print("UMP-45")
  135.     print("AK47-U")
  136.     print("Revolver")
  137.     print("Minigun")
  138.     print("M16")
  139.     print("S&W 638")
  140.     print("M14")
  141.     print("AK47")
  142.     print("M98B")
  143. end)
  144.  
  145. removeDoors.Name = "removeDoors"
  146. removeDoors.Parent = mainFrame
  147. removeDoors.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  148. removeDoors.Position = UDim2.new(0.0433584377, 0, 0.651343644, 0)
  149. removeDoors.Size = UDim2.new(0, 64, 0, 50)
  150. removeDoors.Font = Enum.Font.SourceSans
  151. removeDoors.Text = "Remove doors"
  152. removeDoors.TextColor3 = Color3.new(0, 0, 0)
  153. removeDoors.TextSize = 11
  154. removeDoors.MouseButton1Click:connect(function()
  155.     game.Workspace.AllDoors:Destroy()
  156. end)
  157.  
  158. psyHub.Name = "psyHub"
  159. psyHub.Parent = mainFrame
  160. psyHub.BackgroundColor3 = Color3.new(0.513726, 0.513726, 0.513726)
  161. psyHub.Position = UDim2.new(0.329207629, 0, 0.651343584, 0)
  162. psyHub.Size = UDim2.new(0, 64, 0, 50)
  163. psyHub.Font = Enum.Font.SourceSans
  164. psyHub.Text = "PsyHub"
  165. psyHub.TextColor3 = Color3.new(0, 0, 0)
  166. psyHub.TextSize = 14
  167. psyHub.MouseButton1Click:connect(function()
  168.    loadstring(game:GetObjects("rbxassetid://03044718876")[1].Source)()
  169. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement