Hello Robloxians, so I am trying to integrate my data from Roblox to Discord, I am using this for an anti-cheat system so it is a live ran thing. But I can not figure out how to do it due to Roblox blocking Integrations with Discord.
I was curious because I see many people still doing it, I don’t know if they do Proxy’s or manages separate websites with a POST request.
My current script doesn’t run:
local JSON = game:GetService("HttpService")
local Webhook = "" -- My URL
local data = {
["content"] = "Hey! This is from Roblox."
}
JSON:PostAsync(Webhook, data)
research how to use the express module to create a simple website that can get posts
then for the simplest kind of proxy (just strings) use the get post function to get the body of the text and the discord api webhook link you want to send it to. then using xmlhttprequest (js module to post to http links) you will post to the discord webhook with the body
there isnt much guides on this kind of website so you will have to use the documentation more of express and xmlhttprequest to figure out how to do it
i suggest hosting with replit
for posting from roblox you would do the same as a discord webhook but with the proxied link