The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Murder Mystery 2 ESP Gui script pastebin roblox
By Murder Mystery 2 on 2024-09-19 08:00 am | Syntax: LUA | Views: 8



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  local MM2ESPGUI = Instance.new("ScreenGui")
  2. local GUI = Instance.new("Frame")
  3. local NAME = Instance.new("TextLabel")
  4. local ESP = Instance.new("TextButton")
  5. local OWNER = Instance.new("TextLabel")
  6. local TextButton = Instance.new("TextButton")
  7. local OPEN = Instance.new("TextButton")
  8.  
  9. MM2ESPGUI.Name = "MM2 ESP GUI"
  10. MM2ESPGUI.Parent = game.CoreGui
  11. MM2ESPGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. GUI.Active = true
  14. GUI.Draggable = true
  15.  
  16. GUI.Name = "GUI"
  17. GUI.Parent = MM2ESPGUI
  18. GUI.BackgroundColor3 = Color3.new(0.0156863, 1, 0)
  19. GUI.Position = UDim2.new(0.323499501, 0, 0.178929761, 0)
  20. GUI.Size = UDim2.new(0, 350, 0, 365)
  21. GUI.Visible = false
  22.  
  23. NAME.Name = "NAME"
  24. NAME.Parent = GUI
  25. NAME.BackgroundColor3 = Color3.new(0, 0.0980392, 1)
  26. NAME.Size = UDim2.new(0, 350, 0, 50)
  27. NAME.Font = Enum.Font.SourceSansBold
  28. NAME.Text = "MM2 ESP GUI"
  29. NAME.TextColor3 = Color3.new(0, 0, 0)
  30. NAME.TextScaled = true
  31. NAME.TextSize = 14
  32. NAME.TextWrapped = true
  33.  
  34. ESP.Name = "ESP"
  35. ESP.Parent = GUI
  36. ESP.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  37. ESP.Position = UDim2.new(0, 0, 0.430136979, 0)
  38. ESP.Size = UDim2.new(0, 350, 0, 81)
  39. ESP.Font = Enum.Font.SourceSansBold
  40. ESP.Text = "ESP"
  41. ESP.TextColor3 = Color3.new(0, 0, 0)
  42. ESP.TextScaled = true
  43. ESP.TextSize = 14
  44. ESP.TextWrapped = true
  45. ESP.MouseButton1Click:connect(function()
  46.         loadstring(game:HttpGet(('https://pastebin.com/raw/ypSsQRK6'),true))()
  47.        
  48.         print("Working")
  49. end)
  50.  
  51. OWNER.Name = "OWNER"
  52. OWNER.Parent = GUI
  53. OWNER.BackgroundColor3 = Color3.new(0.0666667, 1, 0)
  54. OWNER.Position = UDim2.new(0, 0, 0.863013685, 0)
  55. OWNER.Size = UDim2.new(0, 350, 0, 50)
  56. OWNER.Font = Enum.Font.SourceSansBold
  57. OWNER.Text = "MADE BY DUCKSIE"
  58. OWNER.TextColor3 = Color3.new(0, 0, 0)
  59. OWNER.TextScaled = true
  60. OWNER.TextSize = 14
  61. OWNER.TextWrapped = true
  62.  
  63. TextButton.Parent = GUI
  64. TextButton.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  65. TextButton.Position = UDim2.new(0.937142849, 0, 0, 0)
  66. TextButton.Size = UDim2.new(0, 22, 0, 18)
  67. TextButton.Font = Enum.Font.SourceSansBold
  68. TextButton.Text = "X"
  69. TextButton.TextColor3 = Color3.new(0, 0, 0)
  70. TextButton.TextScaled = true
  71. TextButton.TextSize = 14
  72. TextButton.TextWrapped = true
  73. TextButton.MouseButton1Click:connect(function()
  74.         GUI.Visible = false
  75.         OPEN.Visible = true
  76. end)
  77.  
  78. OPEN.Name = "OPEN"
  79. OPEN.Parent = MM2ESPGUI
  80. OPEN.BackgroundColor3 = Color3.new(1, 1, 1)
  81. OPEN.Position = UDim2.new(0, 0, 0.916387975, 0)
  82. OPEN.Size = UDim2.new(0, 90, 0, 50)
  83. OPEN.Font = Enum.Font.SourceSansBold
  84. OPEN.Text = "OPEN"
  85. OPEN.TextColor3 = Color3.new(0, 0, 0)
  86. OPEN.TextScaled = true
  87. OPEN.TextSize = 14
  88. OPEN.TextWrapped = true
  89. OPEN.MouseButton1Click:connect(function()
  90.         GUI.Visible = true
  91.         OPEN.Visible = false
  92. end)
  93.  
  94. print("Working")