No idea why it bugs out for you, but you can make some parts of your script simpler, below is what I use.
Re-enable chat:
; Suspend script when opening chat and reenable script when sending message
*~Enter::Suspend
Multi-functional WASD keys that don't get stuck (order is important):
; Disable Control Key except as modifier key
*LCtrl::return
; Set Space to Control
*Space::LCtrl
; Following 3 sections: WASD functions as arrow keys if Control is held down and as WASD if not.
w Up::Send {up Up}{w Up}
a Up::Send {left Up}{a Up}
s Up::Send {down Up}{s Up}
d Up::Send {right Up}{d Up}
#if GetKeyState("LCtrl", "P")
w::up
a::left
s::down
d::right
#if !GetKeyState("LCtrl", "P")
w::w
a::a
s::s
d::d