How to store data

Hello everyone!
I was thinking, is there any possible way to store data like “coins collected” or “damage dealt” and store them in a web place to create global charts like this one from Bedwars?
image

This post might sound hard to understand but I would really appreciate if someone could help :slight_smile: Thanks!

For your own game? Yes, it’s possible. I do something like this for my own game and it’s not as difficult as some people make it out to be. Is there a specific concept of external databases you don’t understand? You’ll need to learn about HttpService for this in general, but if you don’t understand a specfic concept let me know.

I know how to work with HttpService, I was just wondering what site or api or something that I could use. Do you know anything I could try?

Google Firebase might be a good option.
Although if you dont want to be rate-limited then you have to pay for your database.

Edit: Another alternative would be setting up your own linux based database, but that would mean needing to have a public router ip and setting up networking. + costs for actually building a server.

As a Javascript developer, Mongo DB was actually a quite convenient solution since it provides free datastores in a “JSON-like” style with which you can use to create external projects such as the chart from BedWars.

I’ll try it out and see how it goes.