Advertisement
gerisx

Untitled

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