Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 763 Bytes

File metadata and controls

17 lines (16 loc) · 763 Bytes

captchaCodeMakerV2

Make Roblox's signup funcaptcha code so you can send to discord bots (REMADE)
If this version is giving you a hard time try mogolicoo's which is made in node.js

Example on how to get the code after

Better example link
Test the example here: link

import base64
code = "Code here"
decoded = base64.b64decode(code).decode('utf-8').split(',')
captchaId = decoded[0]
captchaToken = decoded[1]
print(f'Captcha ID: {captchaId}')
print(f'Captcha Token: {captchaToken}')