ContextActionService bound actions stop iterating the bind-stack if script who bound the given action is deleted.
This stops other still valid binds bound before it from ever being reached.
You can fix this by manually unbinding it or rebinding the same actionName.
Uploading a place that replicates the problem.
It binds prints to E on keyboard & X on Gamepad.
Comment out OnReset:17 “Actions.Unbind(id - 1)
” to trigger the issue.
If you comment out that line and reset the character, the bind “0 - Static” will no longer be reached.
ContextActionService Bind Bug.rbxl (57.0 KB)
Expected behavior
I expect a bound action in a LocalScript under CharacterStarterScripts either to be automatically unbound, remain a valid bind until explicitly unbound, or at least not to break iteration for other still valid binds after respawning character removing the original script. If it “should” break then an error would be nice.
In my test file I expect the first bind “0 - Static” to always be reached even after respawning the character.
This also affects ResetOnSpawn GUIs that have LocalScripts binding inputs.