Need help with having links only appear once

Twine version: latest
Story format: harlow 3.3.3
I need help with having a passage only pop up once
Example i need to walk in the bedroom but then once i leave said room i can’t ever go back in/ link to passage is gone. Please try to be simple if possible.

Welcome Kurtz,

There’s the (visited:) macro (https://twine2.neocities.org/#macro_visited) that may help you.
Combined with the (unless:) macro (https://twine2.neocities.org/#macro_unless) it looks like (given passage "Room 101 exists):

(unless: (visited: "Room 101"))[[Room 101]]

The link will appear only until the reader visits Room 101.