From my knowledge, the Triggered event fires when the player held the proximity prompt for the same amount of time as the HoldDuration property.
What’s the difference between the Triggered event and the PromptButtonHoldEnded event? Does ProximityPrompt.PromptButtonHoldEnded trigger when ProximityPrompt.Triggered does?
Triggered is fired when the prompt key is pressed or after holding the prompt key down for the specified amount of time in HoldDuration
PromptButtonHoldEnded is fired when the user stops holding the prompt key on a ProximityPrompt that has a non-zero HoldDuration, meaning this event can trigger earlier if you let go of the key, whilst Triggered only fires when the Prompt reaches a criteria
I don’t think PromptButtonHoldEnded will trigger when Triggered does as they fire from 2 completely different conditions.
Edit: Tested it out now, yes PromptButtonHoldEnded DOES fire when triggered is fired. I had a ProximityPrompt for a seat and I added PromptButtonHoldEnded with Triggered, when I finished interacting after 3 seconds, Code for Triggered happened as well as the code for PromptButtonHoldEnded