Question Setup: My game utilizes ROBLOX's Game Access feature where users must purchase access to the game. The access will only be charged temporarily, due to the game being unfinished, like Early-Access.
Question: Is there any possible way to reward a player if they purchased access to the game WITHOUT using badges?
Examples: Normally, to see if a player has something in their inventory, I'd use the PlayerOwnsAsset()
method. To see if a player has a pass, I'd use the PlayerHasPass()
method. But what would I use to see if the player has purchased access to my game?
(I apologize if I did not describe everything correctly...)
I don't think so.
Instead, mark every visitor (at time of paid access) as a purchaser.
Since only people who paid can access, you just mark every single visitor during that time.
That info can be saved to Data Stores or Data Persistence and be brought up in later versions.