Advertisement
gerisx

Untitled

Sep 17th, 2023
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. function SendMessage(url, message)
  2. local http = game:GetService("HttpService")
  3. local headers = {
  4. ["Content-Type"] = "application/json"
  5. }
  6. local data = {
  7. ["content"] = message
  8. }
  9. local body = http:JSONEncode(data)
  10. local response = request({
  11. Url = url,
  12. Method = "POST",
  13. Headers = headers,
  14. Body = body
  15. })
  16. print("Sent")
  17. end
  18.  
  19. function SendMessageEMBED(url, embed)
  20. local http = game:GetService("HttpService")
  21. local headers = {
  22. ["Content-Type"] = "application/json"
  23. }
  24. local data = {
  25. ["embeds"] = {
  26. {
  27. ["title"] = embed.title,
  28. ["description"] = embed.description,
  29. ["color"] = embed.color,
  30. ["fields"] = embed.fields,
  31. ["footer"] = {
  32. ["text"] = embed.footer.text
  33. }
  34. }
  35. }
  36. }
  37. local body = http:JSONEncode(data)
  38. local response = request({
  39. Url = url,
  40. Method = "POST",
  41. Headers = headers,
  42. Body = body
  43. })
  44. print("Sent")
  45. end
  46.  
  47. --Examples
  48.  
  49. local url = getgenv().webhook
  50.  
  51. local embed = {
  52. ["title"] = game.Players.LocalPlayer.Name,
  53. ["description"] = " ",
  54. ["color"] = 00000,
  55. ["fields"] = {
  56. {
  57. ["name"] = "Currency",
  58. ["value"] = "$" .. FormatNumberWithCommas(game.Players.LocalPlayer.DataFolder.Currency.Value)
  59. },
  60. {
  61. ["name"] = "Profit",
  62. ["value"] = "$" .. FormatNumberWithCommas(difference)
  63. },
  64. {
  65. ["name"] = "Timer",
  66. ["value"] = FormatTime(currentTime)
  67. }
  68. },
  69. ["footer"] = {
  70. ["text"] = "made by .gg/dhcutilities"
  71. }
  72. }
  73. SendMessageEMBED(url, embed)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement