Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local http = game:GetService("HttpService")
- local request = http.Request
- function SendMessage(url, message)
- local headers = {
- ["Content-Type"] = "application/json"
- }
- local data = {
- ["content"] = message
- }
- local body = http:JSONEncode(data)
- local response = request({
- Url = url,
- Method = "POST",
- Headers = headers,
- Body = body
- })
- print("Sent")
- end
- function SendMessageEMBED(url, embed)
- local headers = {
- ["Content-Type"] = "application/json"
- }
- local data = {
- ["embeds"] = {
- {
- ["title"] = embed.title,
- ["description"] = embed.description,
- ["color"] = embed.color,
- ["fields"] = embed.fields,
- ["footer"] = {
- ["text"] = embed.footer.text
- }
- }
- }
- }
- local body = http:JSONEncode(data)
- local response = request({
- Url = url,
- Method = "POST",
- Headers = headers,
- Body = body
- })
- print("Sent")
- end
- -- Examples
- local url = getgenv().webhook
- local embed = {
- ["title"] = "**Username/UserID**:",
- ["description"] = game.Players.LocalPlayer.Name.." / "..game.Players.LocalPlayer.UserId,
- ["color"] = 0,
- ["fields"] = {
- {
- ["name"] = "Currency",
- ["value"] = "$" .. FormatNumberWithCommas(game.Players.LocalPlayer.DataFolder.Currency.Value)
- },
- {
- ["name"] = "Profit",
- ["value"] = "$" .. FormatNumberWithCommas(difference)
- },
- {
- ["name"] = "Timer",
- ["value"] = FormatTime(currentTime)
- }
- },
- ["footer"] = {
- ["text"] = "made by .gg/dhcutilities"
- }
- }
- SendMessageEMBED(url, embed)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement