Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

My simple ROBLOX to Discord webhook isn't working?

Asked by
ACHRONlX 255 Moderation Voter
5 years ago

I made a simple suggestion command in ROBLOX, I have enabled HTTP Services and everything but it still doesn't work? I've tried using proxy servers and everything, yet to no avail, could someone help?

01local Http = game:GetService('HttpService')
03 
04 
05game.Players.PlayerAdded(function(plr)
06plr.Chatted:connect(function(msg)
07 
08 
09    local data = {
10 
11        ['content'] = msg,
12        ['username'] = plr.Name
13     }
14 
15 
View all 22 lines...
0
It's URL first and then Data. So, flip flop newData and url. killerbrenden 1537 — 5y
0
Please don't publicly post webhooks, someone could easily abuse them. y3_th 176 — 5y

Answer this question