Is it possible to change your websites text from a roblox scipt?

So, I’m not even sure if this is possible. But basically I want to see if you are able to change the text on your website from roblox.

(I’m sorry if there is threads similar to this one, I couldn’t find any, if there are, please tell me)

Of course! Using HTTPService you can send and receive messages to and from your server/website
Your website has to have code to accept the messages and change what it needs but its definitely possible.

Hmm alright thank you! How would you go about this? (I’m not asking for a full script at all, just an idea of where to start.)

I basically have no experience with HTTPService but if I had to try I’d probably go with something like:
This is a example

local httpService = game:GetService("HttpService")
local requestDictionary = {
	['Url'] = "https://www.someapi.com/";
	['Method'] = 'POST';
	["Body"] = "I am cool text";
}

-- maybe a event or something
local response = httpService:RequestAsync(requestDictionary)
print(response)

Hopefully this gives a good idea how to use it