Hey, scriptinghelpers users. So, I disabled a certain key, but i need to enable it. Here's my code:
01 | local CAS = game:GetService( "ContextActionService" ) |
02 | local FREEZE_COMMAND = "Stunned" |
03 |
04 | isSwimming = true |
05 | CAS:BindActionAtPriority( |
06 | FREEZE_COMMAND, |
07 | function () |
08 | return Enum.ContextActionResult.Sink |
09 | end , |
10 | false , |
11 | Enum.ContextActionPriority.High.Value, |
12 | Enum.KeyCode.R |
13 | ) |
And i need to enable the R key