Note System

Hello everyone. In my horror game,I am going to put some notes for players to read. But what I want is,player can take the notes and can read them later by pressing “N” whenever they want. How can I make such system?

Hey, So I also had trouble with this but figured it out recently, so I’m assuming you already have a widget open by pressing N. As I just figured this out my system isn’t nice but I have 1 button for the first note. You want this button to be visible and pressable.

Then if you set the code up from below your button should no longer do anything when pressed, make sure to create the boolean variable for setting the note has been destroyed.

Then finally make sure when the button is pressed you call to make sure the note has been destroyed then true open up a seperate widget with the note.

Also side note - in my game once the player picks up the note I destory it which is how the system works. Not sure whether you want the player to put the note back down after I don’t know how that’d work.