I believe this method of getting captchas is patched/broken now
Make Roblox's signup funcaptcha code so you can send to discord bots (REMADE)
Better example 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}')