Keybind to toggle HUD (AHK)
A very simple Autohotkey script to toggle the hud with F11.
Install Autohotkey v1.1
Download the .ahk and then run it
Or
Create a new text file and rename it to whatever.ahk
Copy the code into the file and then run it
You can replace f11 with any keybind
SetKeyDelay 0,50
f11::
Send, {“}
Sleep 100
Send, t
Send, m
Send, {Enter}
Send, {“}
return