Skip to content
This repository has been archived by the owner on Nov 5, 2023. It is now read-only.

RobloxThot/captchaCodeMakerV2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PATCHED

captchaCodeMakerV2

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)

Example on how to get the code after

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}')