Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to enable certain keys in roblox?

Asked by 3 years ago
Edited by JesseSong 3 years ago

Hey, scriptinghelpers users. So, I disabled a certain key, but i need to enable it. Here's my code:

01local CAS = game:GetService("ContextActionService")
02local 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

0
something u can do is .. make ur script a bit simple its hard to understand so hard to help TheUltimateTNTFriend 109 — 3y
0
something you can do is fix ur bindactionatpriority, You wrote only 1 thing of 4 needed after writing freeze command, the name of the action, you have to write the function to bind for example make a function and bind ur key to that function. then write false or true after that whether u want it to be a touch button, Then after that write the priority number of that bind key, just use 1 as that is TheUltimateTNTFriend 109 — 3y
0
the only bind, And then finally write the key that will activate this or the other thing TheUltimateTNTFriend 109 — 3y

Answer this question