Before opening a bug report I would like to confirm:
-
Create a TextButton:
-
Run this LocalScript:
local ContextActionService = game:GetService("ContextActionService")
local function Input(ActionName, InputState, InputObject)
print(InputState)
end
ContextActionService:BindAction("Input", Input, false, Enum.UserInputType.MouseMovement)
- Move the mouse outside and inside the button.
- When the mouse is over the button, the BindAction function will not be executed.
Is that correct? @incapaz