- Initiateur de la discussion
- Banni
Estebouboun
Geek
- Messages
- 205
- Score réaction
- 6
- Points
- 95
Bonjour, Je suis null en Lua
Mais bon j'ai fait un petit menu avec des "Button"
Je veux un menu pour mes admins genre les 2 "Button"
C'est
Mais bon j'ai fait un petit menu avec des "Button"
Je veux un menu pour mes admins genre les 2 "Button"
C'est
Code:
local GESTION = vgui.Create( "DButton", panel2 ) GESTION:SetText( "Action RolePlay" ) GESTION:SetPos( 180, 200 ) GESTION:SetSize( 150, 50 ) GESTION.Paint = function( self, w, h ) DrawBlur(self, 2) draw.RoundedBox( 5, 0, 0, w, h, Color( 0, 255, 255, 200 ) ) end GESTION.DoClick = function() chat.AddText( Color( 38, 255, 0, 200 ), "[Intrépide | Administration]", Color( 255, 255, 255 )," EsteboubounCreations" ) RunConsoleCommand( "" ) MENU_BASIC:Close() end local ULX = vgui.Create( "DButton", panel2 ) ULX:SetText( "Administration" ) ULX:SetPos( 500, 200 ) ULX:SetSize( 150, 50 ) ULX.Paint = function( self, w, h ) DrawBlur(self, 2) draw.RoundedBox( 5, 0, 0, w, h, Color( 0, 255, 255, 200 ) ) end ULX.DoClick = function() chat.AddText( Color( 38, 255, 0, 200 ), "[Intrépide | Administration]", Color( 255, 255, 255 )," EsteboubounCreations" ) RunConsoleCommand("") MENU_BASIC:Close() end return true end
end)