No relevant KeyCode enum for the section (§) key

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:

  1. 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()
  2. 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).
  3. In the output, Enum.KeyCode.Unknown will 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.

1 Like

Thanks for the report! I filed a ticket in our internal database.