I have bound two actions to the left and right mouse button as shown below:
ContextActionService:BindAction("primaryAction", function(actionName, actionType) inventory:usePrimary(actionType) end, false, Enum.UserInputType.MouseButton1) ContextActionService:BindAction("secondaryAction", function(actionName, actionType) inventory:useSecondary(actionType) end, false, Enum.UserInputType.MouseButton2)
The issue is that this overwrites the keybinds for regular clicking and moving the camera. Is there any way to not do this? Ie, have multiple actions bound to a single input type.