Roblox to Discord Webhook Messages

I want to send a message to Discord via webhook from Roblox, but I’m not sure if this is still possible. I’ve read around and I’ve seen inconsistencies on whether this is even possible. If so, how can I do this? If not, are there any workarounds to solve this issue? Thanks!

Heard a while ago that Discord has blocked requests from Roblox.

Pretty sure that’s still true. Sure there’s proxys but y’know you’ll have to find one yourself since I don’t know of any working ones at the moment

You could also host a server with JavaScript code and make a POST request whenever you make a request to the server

Something like Glitch should do the trick

// (receiving request)
let Req = new XMLHttpRequest()
const Webhook = "webhookURL"

Req.open("POST", Webhook)
Req.setRequestHeader("Content-Type", "application/json; charset=UTF-8")
// create a JSON object with the post info
const Info = JSON.stringify({
   // blah blah blah
}]
// error handling here
Req.send(Info)

sorry for all the comments telling ya what to put… was too lazy to write everything out lol

1 Like

atleast bother to try googling it first, its been long since discord blocked roblox servers, and existing solutions have been available for just as long.

proxies just reroute the traffic to overcome this block