IUSING

Untitled

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