I'm trying to understand how to Use this service
You can use this for connecting to the web, using it to encode things into JSON and decode it from. You could make a facebook post with it, a discord bot, etc.
HTTPService
is very useful. As hiimgoodpack said, you can send HTTP Requests to Discord or Trello. I've written an example for you on making a discord bot using HTTP Requests. This should make sense, just make sure HTTPService
is enabled.
local url = "discord webhook url" --research on how to make a webhook, it's very easy. local content = { ['username'] = "This is a bot!", ['content'] = "This is what the bot says!" } content = http:JSONEncode(content) game:GetService("HTTPService"):PostAsync(url, content) --Post our content
Please accept my answer if this helped!
HTTP Service has a wide range of uses from sending messages outside of roblox to getting live messages from discord to trello! It's mainly used for applications, live shouts and more that allows people to get live results of anything!
Live time bans are possible thanks to http service