Well It's time to learn new things, and trying to use HttpService
Is one of them, however this one of those topics I don't seem to understand like 100% of it I've checked the wiki.
the most helpful examples to know what does what helps the most! <3
To understand how HTTP Service works you have to understand that HTTP is a request protocol between client to server. Servers are requested to do things and they output a response usually or change something etc. So HTTP Service essentially posts information to a server and expect.
HTTP Service is not automatically enabled
POST
This posts a JSON table to a site, for this to work you have to have a server set up and code that interpret POST requests.
GET
This returns information based on the website, this is useful if you have something you want your users to see and it's easy to change without going through studio for example. An example of this is Roblox's API it returns json and nothing else so you could decode the GET and essentially create a table out of what Roblox wants to return.
To use HTTP Service you must need knowledge of servers or an API that let's you do this like Trello