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?