Answers for "send webhook to discord roblox"

1

send webhook to discord roblox

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.
Posted by: Guest on February-16-2020

Code answers related to "send webhook to discord roblox"

Browse Popular Code Answers by Language