Advertisement
Nice_exploit

Untitled

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