📜  将 webhook 发送到 discord roblox - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:47.729000             🧑  作者: Mango

代码示例1
local http = game:GetService("HttpService")
local Data = {
    ["content"] = "Hey! This is a message sent from roblox!"
}

Data = http:JSONEncode(Data)

http:PostAsync("", Data) --Put the link you saved between the two quotes.