What is the Enum for the ` key?

I made a custom main menu for my game and im trying to use the " ` " key to activate it but i cant find the enum keycode for it, i looked online apperently its called a “grave accent” a keycode for that doesent exist, i am aware that the inventory is binded to that but i dissabled the default inventory, can anyone help me out?

function InputManager(input,gameprosessed)
if not gameprosessed then
	if input.KeyCode == '`' then
		ActivateMain()
	end
end
end
UserInputService.InputBegan:Connect(InputManager)

The Enum for the ` key is Enum.KeyCode.Backquote.

1 Like