I’m using this script to disable plr movement but idk why it disable then i can’t use script like:
game:GetService("UserInputService").InputEnded:Connect(function(input, IsTyping) if input.KeyCode == Enum.KeyCode.W then --STH end end)
Script Disable Move:
local ContextActionService = game:GetService(“ContextActionService”)
local Arguments = {false, Enum.ContextActionPriority.High.Value, Enum.KeyCode.Up, Enum.KeyCode.Down, Enum.KeyCode.Left, Enum.KeyCode.Right, Enum.KeyCode.A, Enum.KeyCode.W, Enum.KeyCode.S, Enum.KeyCode.D}
ContextActionService:BindActionAtPriority("DisableArrowKeys", function()
return Enum.ContextActionResult.Sink
end, unpack(Arguments))
Can someone help me pls