DermaMenu
Example
Creates a DMenu with buttons to commit suicide or close it.
local menu = DermaMenu()
menu:AddOption( "Die", function() RunConsoleCommand( "kill" ) end )
menu:AddOption( "Close", function() print( "Close pressed" ) end ) -- The menu will remove itself, we don't have to do anything.
menu:Open()
Output: 
