Enabling WASD again

so this is the code I use to disable wasd:

local ContextActionService = game:GetService("ContextActionService")

local Arguments = {false, Enum.ContextActionPriority.High.Value, Enum.KeyCode.W, Enum.KeyCode.A, Enum.KeyCode.S, Enum.KeyCode.D}

				ContextActionService:BindActionAtPriority("DisableArrowKeys", function()
					return Enum.ContextActionResult.Sink 
				end, unpack(Arguments))

but I don*t know how I can enable wasd again. Can someone help me?

ContextActionService:UnbindAction("DisableArrowKeys")
1 Like

Didn’t know it was that simple thanks

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.