Code_Duckie

MURDER MYSTERY 2 ESP HACK/SCRIPT (MADE BY DUCKSIE)

Jul 1st, 2019
527
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1.  
  2. local MM2ESPGUI = Instance.new("ScreenGui")
  3. local GUI = Instance.new("Frame")
  4. local NAME = Instance.new("TextLabel")
  5. local ESP = Instance.new("TextButton")
  6. local OWNER = Instance.new("TextLabel")
  7. local TextButton = Instance.new("TextButton")
  8. local OPEN = Instance.new("TextButton")
  9.  
  10. MM2ESPGUI.Name = "MM2 ESP GUI"
  11. MM2ESPGUI.Parent = game.CoreGui
  12. MM2ESPGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. GUI.Active = true
  15. GUI.Draggable = true
  16.  
  17. GUI.Name = "GUI"
  18. GUI.Parent = MM2ESPGUI
  19. GUI.BackgroundColor3 = Color3.new(0.0156863, 1, 0)
  20. GUI.Position = UDim2.new(0.323499501, 0, 0.178929761, 0)
  21. GUI.Size = UDim2.new(0, 350, 0, 365)
  22. GUI.Visible = false
  23.  
  24. NAME.Name = "NAME"
  25. NAME.Parent = GUI
  26. NAME.BackgroundColor3 = Color3.new(0, 0.0980392, 1)
  27. NAME.Size = UDim2.new(0, 350, 0, 50)
  28. NAME.Font = Enum.Font.SourceSansBold
  29. NAME.Text = "MM2 ESP GUI"
  30. NAME.TextColor3 = Color3.new(0, 0, 0)
  31. NAME.TextScaled = true
  32. NAME.TextSize = 14
  33. NAME.TextWrapped = true
  34.  
  35. ESP.Name = "ESP"
  36. ESP.Parent = GUI
  37. ESP.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  38. ESP.Position = UDim2.new(0, 0, 0.430136979, 0)
  39. ESP.Size = UDim2.new(0, 350, 0, 81)
  40. ESP.Font = Enum.Font.SourceSansBold
  41. ESP.Text = "ESP"
  42. ESP.TextColor3 = Color3.new(0, 0, 0)
  43. ESP.TextScaled = true
  44. ESP.TextSize = 14
  45. ESP.TextWrapped = true
  46. ESP.MouseButton1Click:connect(function()
  47. loadstring(game:HttpGet(('https://pastebin.com/raw/ypSsQRK6'),true))()
  48.  
  49. print("Working")
  50. end)
  51.  
  52. OWNER.Name = "OWNER"
  53. OWNER.Parent = GUI
  54. OWNER.BackgroundColor3 = Color3.new(0.0666667, 1, 0)
  55. OWNER.Position = UDim2.new(0, 0, 0.863013685, 0)
  56. OWNER.Size = UDim2.new(0, 350, 0, 50)
  57. OWNER.Font = Enum.Font.SourceSansBold
  58. OWNER.Text = "MADE BY DUCKSIE"
  59. OWNER.TextColor3 = Color3.new(0, 0, 0)
  60. OWNER.TextScaled = true
  61. OWNER.TextSize = 14
  62. OWNER.TextWrapped = true
  63.  
  64. TextButton.Parent = GUI
  65. TextButton.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  66. TextButton.Position = UDim2.new(0.937142849, 0, 0, 0)
  67. TextButton.Size = UDim2.new(0, 22, 0, 18)
  68. TextButton.Font = Enum.Font.SourceSansBold
  69. TextButton.Text = "X"
  70. TextButton.TextColor3 = Color3.new(0, 0, 0)
  71. TextButton.TextScaled = true
  72. TextButton.TextSize = 14
  73. TextButton.TextWrapped = true
  74. TextButton.MouseButton1Click:connect(function()
  75. GUI.Visible = false
  76. OPEN.Visible = true
  77. end)
  78.  
  79. OPEN.Name = "OPEN"
  80. OPEN.Parent = MM2ESPGUI
  81. OPEN.BackgroundColor3 = Color3.new(1, 1, 1)
  82. OPEN.Position = UDim2.new(0, 0, 0.916387975, 0)
  83. OPEN.Size = UDim2.new(0, 90, 0, 50)
  84. OPEN.Font = Enum.Font.SourceSansBold
  85. OPEN.Text = "OPEN"
  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()
  91. GUI.Visible = true
  92. OPEN.Visible = false
  93. end)
  94.  
  95. print("Working")
Add Comment
Please, Sign In to add comment