Advertisement
whyualwaylie

MM2 Gui

Apr 17th, 2020
4,688
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.34 KB | None | 0 0
  1. -- Used in VENOM SCRIPT HUB. script remade for tweaking and auto updating.
  2. -- Made by: Robogame5 - All Credit goes to their respected owners
  3. local RobloxExploit = Instance.new("ScreenGui")
  4. local MainGUI = Instance.new("Frame")
  5. local esp = Instance.new("TextButton")
  6. local TextLabel = Instance.new("TextLabel")
  7. local close = Instance.new("TextButton")
  8. local opengui = Instance.new("Frame")
  9. local open = Instance.new("TextButton")
  10. --Properties:
  11. RobloxExploit.Name = "RobloxExploit"
  12. RobloxExploit.Parent = game.CoreGui -- Change this to Core GUI
  13.  
  14. MainGUI.Active = true
  15. MainGUI.Draggable = true -- This is to make the gui draggable
  16.  
  17. MainGUI.Name = "MainGUI"
  18. MainGUI.Parent = RobloxExploit
  19. MainGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  20. MainGUI.Position = UDim2.new(0.393584222, 0, 0.253071249, 0)
  21. MainGUI.Size = UDim2.new(0, 345, 0, 401)
  22. MainGUI.Visible = false
  23.  
  24. esp.Name = "esp"
  25. esp.Parent = MainGUI
  26. esp.BackgroundColor3 = Color3.new(1, 1, 1)
  27. esp.BorderSizePixel = 0
  28. esp.Position = UDim2.new(0.136231884, 0, 0.376558602, 0)
  29. esp.Size = UDim2.new(0, 251, 0, 100)
  30. esp.Font = Enum.Font.SourceSansLight
  31. esp.Text = "Murder Mystery ESP"
  32. esp.TextColor3 = Color3.new(0, 0, 0)
  33. esp.TextScaled = true
  34. esp.TextSize = 14
  35. esp.TextWrapped = true
  36. esp.MouseButton1Click:connect(function() -- Make sure its mouse button 1 click and not any other one
  37.         loadstring(game:HttpGet(('https://pastebin.com/raw/ypSsQRK6'),true))()
  38.        
  39.         print("Working")
  40.        
  41.         -- Im using a mm2 esp script
  42. end)
  43.  
  44. TextLabel.Parent = MainGUI
  45. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  46. TextLabel.BorderSizePixel = 0
  47. TextLabel.Position = UDim2.new(0.0521739125, 0, 0.0249376558, 0)
  48. TextLabel.Size = UDim2.new(0, 308, 0, 50)
  49. TextLabel.Font = Enum.Font.SourceSansSemibold
  50. TextLabel.Text = "MM2 GUI Credits robogame5"
  51. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  52. TextLabel.TextScaled = true
  53. TextLabel.TextSize = 14
  54. TextLabel.TextWrapped = true
  55. -- Dont worry about the text label
  56.  
  57. close.Name = "close"
  58. close.Parent = MainGUI
  59. close.BackgroundColor3 = Color3.new(1, 1, 1)
  60. close.BorderSizePixel = 0
  61. close.Position = UDim2.new(0.910144925, 0, 0.0249376558, 0)
  62. close.Size = UDim2.new(0, 25, 0, 25)
  63. close.Font = Enum.Font.SourceSansBold
  64. close.Text = "X"
  65. close.TextColor3 = Color3.new(0, 0, 0)
  66. close.TextScaled = true
  67. close.TextSize = 14
  68. close.TextWrapped = true
  69. close.MouseButton1Click:connect(function() -- script to close the gui
  70.     MainGUI.Visible = false -- makes the main gui invisible
  71.     opengui.Visible = true -- makes the open button visible again
  72. end)
  73.  
  74. opengui.Name = "opengui"
  75. opengui.Parent = RobloxExploit
  76. opengui.BackgroundColor3 = Color3.new(1, 1, 1)
  77. opengui.Position = UDim2.new(0.141887724, 0, 0.963144958, 0)
  78. opengui.Size = UDim2.new(0, 100, 0, 30)
  79.  
  80. open.Name = "open"
  81. open.Parent = opengui
  82. open.BackgroundColor3 = Color3.new(1, 1, 1)
  83. open.Size = UDim2.new(0, 100, 0, 30)
  84. open.Font = Enum.Font.SourceSansLight
  85. open.Text = "OpenGUI"
  86. open.TextColor3 = Color3.new(0, 0, 0)
  87. open.TextScaled = true
  88. open.TextSize = 14
  89. open.TextWrapped = true
  90. open.MouseButton1Click:connect(function() -- script to open the gui
  91.     MainGUI.Visible = true -- Makes the gui visible
  92.     opengui.Visible = false -- Makes the open button invisible
  93. end)
  94.  
  95. print("Working") -- to check if the gui works or not.
  96.  
  97. print("MM2 Gui Loaded | Venom Script Hub")
  98.  
  99. -- Now that we're done with the script time to test it
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement