And what your issue? Usually you aren’t supposed to ask people to code for you on the developer forums.
Also, you should use ProximityPrompt.Triggered in this case, instead of ProximityPromptService.PromptTriggered, because the latter (ProximityPromtService) fires if ANY proximity prompt is triggered while the former (ProximityPrompt) fires only for the single object.
--in the script you want to fire it from
BindableEvent:Fire()
--in the script listening for the bindable event
BindableEvent.Event:Connect(function()
print("Fired!")
end)