Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- mm2 script hub:
- local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wall%20v3')))()
- local w = library:CreateWindow("Mm2Hub-Micro") -- Creates the window
- local b = w:CreateFolder("Mm2Scripts") -- Creates the folder(U will put here your buttons,etc)
- b:Label("Murder Mystery",{
- TextSize = 25; -- Self Explaining
- TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
- BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
- })
- b:Button("Mm2 Script 1",function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Drifter0507/scripts/main/mm2", true))()
- end)
- b:Button("Mm2 Script 2",function()
- loadstring(game:HttpGet(('https://raw.githubusercontent.com/MarsQQ/ScriptHubScripts/master/MM2%20Admin%20Panel'),true))()
- end)
- b:Button("Mm2 Script 2",function()
- loadstring(game:HttpGet("https://raw.githubusercontent.com/Neon-Fox/roblox-scripts/main/VynixuMM2"))()
- end)
- b:Toggle("Toggle",function(state)
- shared.toggle = state
- print("Toggled")
- end)
- b:Slider("Slider",{
- min = 10; -- min value of the slider
- max = 50; -- max value of the slider
- precise = true; -- max 2 decimals
- },function(value)
- print(value)
- end)
- b:Dropdown("Dropdown",{"A","B","C"},true,function(mob) --true/false, replaces the current title "Dropdown" with the option that t
- print(mob)
- end)
- b:Bind("Bind",Enum.KeyCode.C,function() --Default bind
- print("Yes")
- end)
- b:ColorPicker("ColorPicker",Color3.fromRGB(255,0,0),function(color) --Default color
- print(color)
- end)
- b:Box("Box","number",function(value) -- "number" or "string"
- print(value)
- end)
- b:DestroyGui()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement