So I'm trying to use ContextActionService to bind keys for certain functions, however, I can't seem to use the same keys and I don't want to use different keys :
local cas = game:GetService("ContextActionService") local function onpress() print("first") end local function onpress2() print("second") end cas:BindAction("onpress", onpress, false, "f" cas:BindAction("onpress", onpress2, false, "f"