#I keep getting a bad request

4 messages · Page 1 of 1 (latest)

wild plover
#

function onChatSaid()
local http = game:GetService("HttpService")

local url = "https://discord.com/api/webhooks/1102328159292096572/ZGcpohACmCf0C0QLATKVWdpwENGMbY5a9Mtif_KwRLf5dwPZiy-xTC0r5evOc-nIBiW5"


local data = {
    ["content"] = Welcome
}
local finaldata = http:JSONEncode(data)
http:PostAsync(url, finaldata)

end

game.Players.PlayerAdded:Connect(function(player)
if player.UserId == 3096946925 then
player.Chatted:Connect(function(msg)
if msg == "goodone" then
onChatSaid()
end
end)
end
end)

obtuse epoch
#

you can't send discord hooks from roblox

#

u need a proxy

trim mesa