Reference API Roblox

Engine API

Website

Related

Reference API Roblox

ContextActionPriority

Describes the priority of a context action.

Items 3

HistoryNameValueLegacy NamesDescription
295Low1000

The lowest named priority level (value 1000); an action at this level is invoked after High and Medium actions bound to the same input.

536Medium2000Default

The default priority level (value 2000); used automatically by ContextActionService:BindAction() and falls between High and Low in processing order.

534High3000

The highest named priority level (value 3000); an action at this level is invoked before Medium and Low actions bound to the same input.

Removed items 1

HistoryNameValue
534Default2000

Description

ContextActionPriority specifies the relative priority of an action bound via ContextActionService:BindActionAtPriority(). When multiple actions are bound to the same input, ContextActionService invokes them in descending priority order — the action with the highest priority value runs first and may sink the input before lower-priority actions receive it. The three named levels map to the integer values Low = 1000, Medium = 2000, and High = 3000; arbitrary integers are also accepted by BindActionAtPriority. Medium is the default priority used by ContextActionService:BindAction().

History 8

Settings