Add Enum.KeyCode.Paragraph (§)

As a Roblox developer, it is currently impossible to to bind commands to the button that is left of the 1 key on Swedish keyboards.

If Roblox is able to address this issue, it would improve my game / my development experience because I can bind developer consoles such as cmdr to the key that is natural to people who has played Quake, Counter Strike etc.

Running the following code and pressing § prints: Enum.KeyCode.Unknown

local UserInputService = game:GetService("UserInputService")

UserInputService.InputBegan:Connect(function(io, p)
    print(io.KeyCode)
end)

Swedish keyboard layout for reference:

Key code printed from JavaScript:

5 Likes