Advertisement
DanOnScripts

mm2 script hub

Jun 23rd, 2023
603
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 1 2
  1. mm2 script hub:
  2.  
  3. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wall%20v3')))()
  4.  
  5. local w = library:CreateWindow("Mm2Hub-Micro") -- Creates the window
  6.  
  7. local b = w:CreateFolder("Mm2Scripts") -- Creates the folder(U will put here your buttons,etc)
  8.  
  9. b:Label("Murder Mystery",{
  10. TextSize = 25; -- Self Explaining
  11. TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
  12. BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
  13.  
  14. })
  15.  
  16. b:Button("Mm2 Script 1",function()
  17. loadstring(game:HttpGet("https://raw.githubusercontent.com/Drifter0507/scripts/main/mm2", true))()
  18. end)
  19.  
  20. b:Button("Mm2 Script 2",function()
  21. loadstring(game:HttpGet(('https://raw.githubusercontent.com/MarsQQ/ScriptHubScripts/master/MM2%20Admin%20Panel'),true))()
  22. end)
  23.  
  24. b:Button("Mm2 Script 2",function()
  25. loadstring(game:HttpGet("https://raw.githubusercontent.com/Neon-Fox/roblox-scripts/main/VynixuMM2"))()
  26. end)
  27.  
  28. b:Toggle("Toggle",function(state)
  29. shared.toggle = state
  30. print("Toggled")
  31. end)
  32.  
  33. b:Slider("Slider",{
  34. min = 10; -- min value of the slider
  35. max = 50; -- max value of the slider
  36. precise = true; -- max 2 decimals
  37. },function(value)
  38. print(value)
  39. end)
  40.  
  41. b:Dropdown("Dropdown",{"A","B","C"},true,function(mob) --true/false, replaces the current title "Dropdown" with the option that t
  42. print(mob)
  43. end)
  44.  
  45. b:Bind("Bind",Enum.KeyCode.C,function() --Default bind
  46. print("Yes")
  47. end)
  48.  
  49. b:ColorPicker("ColorPicker",Color3.fromRGB(255,0,0),function(color) --Default color
  50. print(color)
  51. end)
  52.  
  53. b:Box("Box","number",function(value) -- "number" or "string"
  54. print(value)
  55. end)
  56.  
  57. b:DestroyGui()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement