- Initiateur de la discussion
Maisko
Têtard
- Messages
- 3
- Score réaction
- 0
- Points
- 10
Bonjour j'ai un problème avec mon toggle, j'ai associer mon la touche K mais je dois appuyer aussi sur une autre touche pour qu'il s'ouvre comme K + E ou K + Clique gauche/droit
Voici mon code:
Merci d'avoir lu ce post
Voici mon code:
Code:
local function HUDToggle() local DermaPanel = vgui.Create("DFrame") DermaPanel:SetSize(500, 300) DermaPanel:Center() DermaPanel:SetTitle("") DermaPanel:SetDraggable(false) DermaPanel:MakePopup() DermaPanel.Paint = function(self, w, h) local faded_black = Color(0, 0, 0, 200) draw.RoundedBox(5, 0, 0, w, h, faded_black) draw.SimpleText("Derma Frame", "Font", 250, 5, color_white, TEXT_ALIGN_CENTER, TEXT_ALIGN_TOP) end end
hook.Add("KeyPress", "ToggleHUD", function() if input.IsKeyDown(KEY_K) then print("ouverture") return HUDToggle() end
end)