I am currently in the process of implementing profileservice. I currently also have this donation scoreboard, where the amount of robux people donated is stored in a datastore that is only used by this scoreboard. Now because this system isn’t flawless, I want to make it work with profileservice. Is there a way to create a profile with profile service that isnt connected to a player, but rather the game itself?
You shouldn’t use profile service for your game data because profile service uses session locking. If you open the game datastore on one server you won’t access it from another server causing some problems. Also, profile service uses regular datastores not ordered datastores so you can’t create leaderboards with it.
You should do some research on ordered data stores to create your leaderboard. You can start here: