How do i make a store to buy guns

I wanna make it to where you can buy guns then equip them, ut not have it before you bu it for 2k gold, how do I make a money system

I use PlayFab as bagend for these. I like it but there are many others out there…

1 Like

what are those

@thebosser24, PlayFab essentially helps you store data from your game, in this case money - https://playfab.com/. As for the actual selection itself, you can have the guns in a selection where each model shows when you press an arrow/‘next’ button. Then, if the player attempts to buy it, check his current store of game currency, if it is greater than or equal to the price of the gun, then add the gun to the player’s inventory, and subtract the price from his currency earned.
Furthermore, for the storage part, you could also look at indexedDB if you find PlayFab confusing - https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API, or even localStorage - https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage.

Hope this helps!

2 Likes

How do i use playfab
im kinda new

PlayFab’s site has an exhaustive documentation once you sign up, and again, if you’re not comfortable using it, do check the docs I sent for indexedDB and/or localStorage.

Ummm :expressionless: what?
can you dumb it down

Use these links for indexedDB or localStorage.

Use this for PlayFab - https://docs.microsoft.com/en-us/gaming/playfab/.