PlayerPrefs

Alright so I’m trying to set up a system in my game where there are hidden pickup items. These items increase something about the player, damage, health, speead, ect. So I’m trying to figure out how I could use PlayerPrefs bool to set this up. I’m just not sure where I should put this script, the script to set the bools. Any help?
Just saw that PlayerPrefs doesn’t have a bool so I’ll have to come up with another way.

I do not really get why you would like to use PlayerPrefs. Playerprefs can be used for save datas after closing your program. Something like the level the player progressed or the money he collected etc… And you can read these entries even if he closed your game.

What you are trying to do is pretty straightforward without any built-in help. Store these datas about your items in a file and read them when the program starts.