How do you add a picture/model to your button in the vgui
this is my current code for the button
local AButton = vgui.Create( "DButton", BackGround )
AButton:SetSize(150, 80 )
AButton:SetText( "Ak47" )
AButton:SetPos( 50, 20 )
AButton.DoClick = function ()
ply:ConCommand("Give weapon_ak47")
end
Do i add a AButton:SetPic(File name) or is it something more complicated?