Proximity Prompts

ProximityPrompt objects encourage user interaction to trigger an action when they approach in-experience objects such as doors, light switches, and buttons. Using this object, you can:

  • Indicate what objects a user can interact with in the experience.
  • Display the action a user can take on the object, then trigger the action through user input such as pressing or holding a key.
  • Display the correct input for all input types, such a keyboard, gamepad, and touchscreen keys.

Creating Proximity Prompts

You must parent proximity prompts to the part, model, or attachment that you want a user to interact with. To add a proximity prompt to a BasePart, Model, or Attachment object:

  1. In the Explorer window, hover over the BasePart, Model, or Attachment and click the ⊕ button. A contextual menu displays.

  2. From the menu, insert a ProximityPrompt.

    Explorer hierarchy showing a ProximityPrompt parented to an Attachment

Customizing Proximity Prompts

You can customize a proximity prompt based on how you want it to appear, when you want it to be visible, and what you want a user to do to trigger the action.

Appearance

Proximity prompts need to communicate three things:

  • The object that a user can interact with.
  • The action that triggers when they interact with the proximity prompt.
  • The key that a user must press or hold.

You can specify these through the following properties:

  • ObjectText An optional name for the object a user can interact with.

  • ActionText An optional name for the action a user will trigger.

  • KeyboardKeyCode The keyboard key a user must press or hold to trigger the action.

  • GamepadKeyCode The gamepad key a user must press or hold to trigger the action.

    Diagram indicating basic elements of a ProximityPrompt

Visibility

You can control when the proximity prompt is visible through its MaxActivationDistance, RequiresLineOfSight, and Exclusivity properties.

MaxActivationDistance

The MaxActivationDistance property allows you to define the range from around the ProximityPrompt object that activates the visibility of the proximity prompt. Once a user's character enters that range, the proximity prompt becomes visible.

Diagram indicating how a character's distance from a ProximityPrompt object affects whether the prompt appears on screen

RequiresLineOfSight

The RequiresLineOfSight property activates the visibility of the proximity prompt when there's a clear path from the camera to the ProximityPrompt object. By default, this property is set to true.

Exclusivity

If a user's character is within range of multiple proximity prompts, each proximity prompt's visibility depends on which proximity prompt the camera is pointing at, as well as each proximity prompt's Exclusivity property value.

ProximityPrompt objects set to exclusivity of OnePerButton
Only one proximity prompt is visible per input keycode. If multiple in-range proximity prompts use different keycodes, they are all visible. However, if multiple in-range proximity prompts use the same keycode, only one proximity prompt is visible at any given time, depending on the camera's view direction.

Interactivity

You can customize how a user interacts with a proximity prompt through its HoldDuration and ClickablePrompt properties.

HoldDuration

The HoldDuration property determines how many seconds a user has to press a key before the proximity prompt's action triggers. If this property has a value of 0, the proximity prompt's action triggers immediately.

ClickablePrompt

The ClickablePrompt property specifies if a user can click on a proximity prompt to trigger its action. When set to true, a user can interact with the proximity prompt by directly clicking the proximity prompt or by pressing the specified key. When set to false, a user can only interact with the proximity prompt by pressing the specified key.

Scripting Proximity Prompts

You can connect to proximity prompt events either on the ProximityPrompt object itself or globally through ProximityPromptService. The ProximityPromptService allows you to manage all proximity prompt behavior from one location, preventing any need for duplicate code in your experience.

EventDescription
TriggeredFires when a player interacts with a proximity prompt (after the duration for a prompt with non-zero HoldDuration).
TriggeredEndedTriggers when the player stops interacting with a proximity prompt.
PromptButtonHoldBeganFires when a player begins interacting with a proximity prompt with a non-zero HoldDuration value.
PromptButtonHoldEndedFires when a player stops interacting with a proximity prompt with a non-zero HoldDuration value.
PromptShownTriggers in LocalScripts when a proximity prompt is made visible.
PromptHiddenTriggers in LocalScripts when a prompt is hidden.

The following code sample includes a basic framework for using ProximityPromptService:


local ProximityPromptService = game:GetService("ProximityPromptService")
-- Detect when prompt is triggered
local function onPromptTriggered(promptObject, player)
end
-- Detect when prompt hold begins
local function onPromptHoldBegan(promptObject, player)
end
-- Detect when prompt hold ends
local function onPromptHoldEnded(promptObject, player)
end
-- Connect prompt events to handling functions
ProximityPromptService.Triggered:Connect(onPromptTriggered)
ProximityPromptService.PromptButtonHoldBegan:Connect(onPromptHoldBegan)
ProximityPromptService.PromptButtonHoldEnded:Connect(onPromptHoldEnded)