There is no valid KeyCode enum for the Section key (§), which is present on some keyboards including mine.
It is also not present in the Enum.KeyCode docs.
Reproduction steps:
- Run the following command in the command bar in Studio:
local cn = game.UserInputService.InputBegan:Connect(function(input) print(input.KeyCode, input.UserInputType) end) task.wait(3) cn:Disconnect() - Focus on the viewport and press the § key, if available (there might be keyboard options on your system that include this key binding if it’s not physically present).
- In the output,
Enum.KeyCode.Unknownwill print.
My use case is a key to activate the in-game admin command bar.
Expected behavior
I expect a relevant KeyCode enum to print when using the repro steps above.