Advertisement
Helgodxdd

copy-hwid

Mar 13th, 2022 (edited)
523
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.91 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local name = Instance.new("TextBox")
  9. local TextButton = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. ScreenGui.Parent = game.CoreGui
  14.  
  15. Frame.Parent = ScreenGui
  16. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  17. Frame.BackgroundTransparency = 0.250
  18. Frame.Position = UDim2.new(0.219387755, 0, 0.301115245, 0)
  19. Frame.Size = UDim2.new(0, 769, 0, 320)
  20.  
  21. name.Name = "name"
  22. name.Parent = Frame
  23. name.BackgroundColor3 = Color3.fromRGB(25, 28, 33)
  24. name.BackgroundTransparency = 1.000
  25. name.Position = UDim2.new(0.261378407, 0, 0.181250006, 0)
  26. name.Size = UDim2.new(0, 367, 0, 77)
  27. name.Font = Enum.Font.SourceSans
  28. name.PlaceholderColor3 = Color3.fromRGB(255, 255, 255)
  29. name.PlaceholderText = "Discord Name? (for me -Jon)"
  30. name.Text = ""
  31. name.TextColor3 = Color3.fromRGB(255, 255, 255)
  32. name.TextScaled = true
  33. name.TextSize = 14.000
  34. name.TextWrapped = true
  35.  
  36. TextButton.Parent = Frame
  37. TextButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  38. TextButton.BackgroundTransparency = 0.350
  39. TextButton.BorderColor3 = Color3.fromRGB(85, 255, 255)
  40. TextButton.Position = UDim2.new(0.369310796, 0, 0.540624976, 0)
  41. TextButton.Size = UDim2.new(0, 200, 0, 50)
  42. TextButton.Font = Enum.Font.SourceSans
  43. TextButton.Text = "Copy Hwid"
  44. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  45. TextButton.TextScaled = true
  46. TextButton.TextSize = 14.000
  47. TextButton.TextStrokeColor3 = Color3.fromRGB(85, 255, 255)
  48. TextButton.TextStrokeTransparency = 0.350
  49. TextButton.TextWrapped = true
  50.  
  51. -- Scripts:
  52.  
  53. local function BBUT_fake_script() -- TextButton.LocalScript
  54. local script = Instance.new('LocalScript', TextButton)
  55. script.Parent.MouseButton1Down:Connect(function()
  56. if script.Parent.Parent.name.Text == "" then
  57. return
  58. else
  59. if (not identifyexecutor()) then
  60. game.Players.LocalPlayer:Kick("Unable To Read Executor Name, Which Means You can't Use My script")
  61. end
  62.  
  63. local Exploit = identifyexecutor()
  64. local httpGet;
  65.  
  66. if Exploit == "Synapse X" then
  67. httpGet = syn.request
  68. elseif Exploit == "ScriptWare" then
  69. httpGet = http.request
  70. elseif Exploit == "Fluxus" then
  71. httpGet = http_request
  72. elseif Exploit == "Krnl" then
  73. httpGet = http_request
  74. elseif Exploit == "SirHurt V4" then
  75. httpGet = http_request
  76. elseif Exploit == "PSU" then
  77. httpGet = http_request
  78. else
  79. print("We Detected That.."..Exploit.." Is Not Supported Or Johhny Haven't Whitelisted it. Dm Him This")
  80. end
  81.  
  82. if httpGet then
  83. print("Congratulations Your Exploit-->"..identifyexecutor().." Supports Http Request(), You Are Ready To Use The Script!")
  84. end
  85.  
  86.  
  87. local body = httpGet({Url = 'https://httpbin.org/get'; Method = 'GET'}).Body;
  88. local decoded = game:GetService('HttpService'):JSONDecode(body)
  89. local hwid_list = {"Syn-Fingerprint",
  90. "Exploit-Guid",
  91. "Proto-User-Identifier",
  92. "Sentinel-Fingerprint",
  93. "Krnl-Fingerprint",
  94. "Seraph-Fingerprint",
  95. "Bleu-Fingerprint",
  96. "Hexus-Fingerprint",
  97. "Cyber-Fingerprint",
  98. "Tervylla-Fingerprint",
  99. "Veil-Fingerprint",
  100. "Elysian-Fingerprint",
  101. "Reign-Fingerprint",
  102. "RVX-4-Fingerprint",
  103. "TEC-7-Fingerprint",
  104. "Rein-Fingerprint",
  105. "Fingerprint"};
  106. local hwid = "";
  107.  
  108. for i, v in next, hwid_list do
  109. if decoded.headers[v] then
  110. hwid = decoded.headers[v];
  111. break
  112. end
  113. end
  114.  
  115. if hwid then
  116. if Exploit ~= "PSU" then
  117. setclipboard('"'..hwid..'" //'..script.Parent.Parent.name.Text)
  118. else
  119. game:GetService("Players").LocalPlayer:Kick('unable to find hwid')
  120. end
  121. game:GetService("Players").LocalPlayer:Kick("Successfully Copied Your Hwid, Please Go To @Jonatan's dm And Dm Him Ctrl + v")
  122. else
  123. game:GetService("Players").LocalPlayer:Kick('unable to find hwid')
  124. end
  125. end
  126. end)
  127. end
  128. coroutine.wrap(BBUT_fake_script)()
  129.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement