Lancere

hwid scriptt

May 14th, 2022 (edited)
803
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.82 KB | None | 0 0
  1. local http_request = http_request;
  2. if syn then
  3. http_request = syn.request
  4. elseif SENTINEL_V2 then
  5. function http_request(tb)
  6. return {
  7. StatusCode = 200;
  8. Body = request(tb.Url, tb.Method, (tb.Body or ''))
  9. }
  10. end
  11. end
  12.  
  13. local body = http_request({Url = 'https://httpbin.org/get'; Method = 'GET'}).Body;
  14. local decoded = game:GetService('HttpService'):JSONDecode(body)
  15. local hwid_list = {"Syn-User-Identifier", "Krnl-Fingerprint", "Exploit-Guid", "Proto-User-Identifier", "Sentinel-Fingerprint", "Sw-User-Identifier"};
  16. local hwid = "";
  17.  
  18. for i, v in next, hwid_list do
  19. if decoded.headers[v] then
  20. hwid = decoded.headers[v];
  21. break
  22. end
  23. end
  24.  
  25. if hwid then
  26. setclipboard(hwid)
  27. game:GetService("Players").LocalPlayer:Kick('copied hwid to clipboard')
  28. else
  29. game:GetService("Players").LocalPlayer:Kick('unable to find hwid')
  30. end
Add Comment
Please, Sign In to add comment