How to disable the native F1 key?

I want to use the F1 key to show a Help/Documentation frame.

UserInputService.InputBegan:Connect(function(Input,GPE)
	if Input.KeyCode == Enum.KeyCode.F1 then ShowMyHelp() end
end

However, when I press F1, it’s opening this page:

How to disable the native F1 key?

2 Likes

You can’t disable the native F1 key bind

1 Like

I think that it’s reserved key bind and you cannot do anything about it. I recommend you to use other key bind instead or make a button.

2 Likes

Try opening a feature request for UIS:DisableNativeKeybind(key) and UIS:EnableNativeKeybind(key)

1 Like