Advertisement
dkg_yt

another gui for redwood prison (roblox)

May 6th, 2019
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.41 KB | None | 0 0
  1. -- Version: 1.4
  2. -- Instances:
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local WaterMark = Instance.new("Frame")
  5. local TextLabel = Instance.new("TextLabel")
  6. local main = Instance.new("Frame")
  7. local kill_all = Instance.new("TextButton")
  8. local taze_all = Instance.new("TextButton")
  9. local give_all_items = Instance.new("TextButton")
  10. local print_items = Instance.new("TextButton")
  11. local noclip = Instance.new("TextButton")
  12. local clip = Instance.new("TextButton")
  13. local close = Instance.new("TextButton")
  14. --Properties:
  15. ScreenGui.Parent = game.CoreGui
  16.  
  17. WaterMark.Name = "WaterMark"
  18. WaterMark.Parent = ScreenGui
  19. WaterMark.BackgroundColor3 = Color3.new(0, 0, 0)
  20. WaterMark.Position = UDim2.new(0.879671156, 0, 0.907862425, 0)
  21. WaterMark.Size = UDim2.new(0, 231, 0, 75)
  22.  
  23. TextLabel.Parent = WaterMark
  24. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  25. TextLabel.BackgroundTransparency = 1
  26. TextLabel.Position = UDim2.new(0, 0, -0.0107128909, 0)
  27. TextLabel.Size = UDim2.new(0, 231, 0, 75)
  28. TextLabel.Font = Enum.Font.SourceSans
  29. TextLabel.Text = "CheeseChicken#9309"
  30. TextLabel.TextColor3 = Color3.new(1, 1, 0)
  31. TextLabel.TextSize = 19
  32.  
  33. main.Name = "main"
  34. main.Parent = ScreenGui
  35. main.BackgroundColor3 = Color3.new(0.364706, 0.364706, 0.364706)
  36. main.Position = UDim2.new(0, 0, 0.906875372, 0)
  37. main.Size = UDim2.new(0, 1688, 0, 83)
  38.  
  39. kill_all.Name = "kill_all"
  40. kill_all.Parent = main
  41. kill_all.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  42. kill_all.Position = UDim2.new(-0.000396877615, 0, -0.000591967488, 0)
  43. kill_all.Size = UDim2.new(0, 200, 0, 67)
  44. kill_all.Font = Enum.Font.SourceSans
  45. kill_all.Text = "kill all"
  46. kill_all.TextColor3 = Color3.new(0, 0, 0)
  47. kill_all.TextSize = 24
  48. kill_all.MouseButton1Click:connect(function()
  49.     for _, v in pairs(game.Players:GetChildren()) do
  50. game.Workspace.resources.RemoteEvent:FireServer("dealDamage", v.Character.Humanoid, 100) --keep in mind friendly fire is off
  51. end
  52. end)
  53.  
  54. taze_all.Name = "taze_all"
  55. taze_all.Parent = main
  56. taze_all.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  57. taze_all.Position = UDim2.new(0.18057169, 0, -0.000591967488, 0)
  58. taze_all.Size = UDim2.new(0, 200, 0, 67)
  59. taze_all.Font = Enum.Font.SourceSans
  60. taze_all.Text = "Taze all"
  61. taze_all.TextColor3 = Color3.new(0, 0, 0)
  62. taze_all.TextSize = 24
  63. taze_all.MouseButton1Click:connect(function()
  64.     for _, v in pairs(game.Players:GetChildren()) do
  65. game.Workspace.resources.RemoteEvent:FireServer("tase", v) --keep in mind friendly fire is off
  66. end
  67. end)
  68.  
  69. give_all_items.Name = "give_all_items"
  70. give_all_items.Parent = main
  71. give_all_items.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  72. give_all_items.Position = UDim2.new(0.369186819, 0, -0.000591967488, 0)
  73. give_all_items.Size = UDim2.new(0, 200, 0, 67)
  74. give_all_items.Font = Enum.Font.SourceSans
  75. give_all_items.Text = "give every item"
  76. give_all_items.TextColor3 = Color3.new(0, 0, 0)
  77. give_all_items.TextSize = 24
  78. give_all_items.MouseButton1Click:connect(function()
  79.     game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "M98B")
  80. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Revolver")
  81. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "UMP-45")
  82. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "ACR")
  83. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "M60")
  84. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Handcuffs")
  85. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Fake ID Card")
  86. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Dragunov")
  87. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "Taser")
  88. game.Workspace.resources.RemoteFunction:InvokeServer("giveItem", "AK47-U")
  89. end)
  90.  
  91. print_items.Name = "print_items"
  92. print_items.Parent = main
  93. print_items.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  94. print_items.Position = UDim2.new(0.552704215, 0, -0.000591967488, 0)
  95. print_items.Size = UDim2.new(0, 200, 0, 67)
  96. print_items.Font = Enum.Font.SourceSans
  97. print_items.Text = "print items"
  98. print_items.TextColor3 = Color3.new(0, 0, 0)
  99. print_items.TextSize = 24
  100. print_items.MouseButton1Click:Connect(function()
  101.     print("M1014")
  102.     print("SPAS-12")
  103.     print("Makrov")
  104.     print("Dragunov")
  105.     print("Taser")
  106.     print("Ham Sandwich")
  107.     print("Pancakes")
  108.     print("Steak")
  109.     print("Punch")
  110.     print("Handcuffs")
  111.     print("Shank")
  112.     print("Hammer")
  113.     print("Guitar")
  114.     print("Fake ID Card")
  115.     print("ACR")
  116.     print("L86A2")
  117.     print("M60")
  118.     print("Beretta M9")
  119.     print("UMP-45")
  120.     print("AK47-U")
  121.     print("Revolver")
  122.     print("Minigun")
  123.     print("M16")
  124.     print("S&W 638")
  125.     print("M14")
  126.     print("AK47")
  127.     print("M98B")
  128. end)
  129.  
  130. noclip.Name = "noclip"
  131. noclip.Parent = main
  132. noclip.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  133. noclip.Position = UDim2.new(0.737071276, 0, -0.000591967488, 0)
  134. noclip.Size = UDim2.new(0, 96, 0, 67)
  135. noclip.Font = Enum.Font.SourceSans
  136. noclip.Text = "noclip"
  137. noclip.TextColor3 = Color3.new(0, 0, 0)
  138. noclip.TextSize = 24
  139. noclip.MouseButton1Click:Connect(function()
  140.     local noclip = true char = game.Players.LocalPlayer.Character while true do if noclip == true then for _,v in pairs(char:children()) do pcall(function() if v.className == "Part" then v.CanCollide = false elseif v.ClassName == "Model" then v.Head.CanCollide = false end end) end end game:service("RunService").Stepped:wait() end
  141. end)
  142.  
  143. clip.Name = "clip"
  144. clip.Parent = main
  145. clip.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  146. clip.Position = UDim2.new(0.828830004, 0, -0.000591967488, 0)
  147. clip.Size = UDim2.new(0, 96, 0, 67)
  148. clip.Font = Enum.Font.SourceSans
  149. clip.Text = "clip"
  150. clip.TextColor3 = Color3.new(0, 0, 0)
  151. clip.TextSize = 24
  152. clip.MouseButton1Click:Connect(function()
  153.     local noclip = true char = game.Players.LocalPlayer.Character while true do if noclip == true then for _,v in pairs(char:children()) do pcall(function() if v.className == "Part" then v.CanCollide = true elseif v.ClassName == "Model" then v.Head.CanCollide = true end end) end end game:service("RunService").Stepped:wait() end
  154. end)
  155.  
  156.  
  157. close.Name = "close"
  158. close.Parent = main
  159. close.BackgroundColor3 = Color3.new(0.219608, 0.219608, 0.219608)
  160. close.Position = UDim2.new(0.918039858, 0, -0.000591967488, 0)
  161. close.Size = UDim2.new(0, 96, 0, 67)
  162. close.Font = Enum.Font.SourceSans
  163. close.Text = "close"
  164. close.TextColor3 = Color3.new(0, 0, 0)
  165. close.TextSize = 24
  166. close.MouseButton1Click:connect(function()
  167.       main.Visible = false
  168. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement