Authorize on website using Roblox account

I want to create a bot which will send users PM with security code to login. First question is, will it be bad for Roblox servers? Should I add some restrictions for code sending? Second, will my bot get banned? If it will, will my primary account be banned? And last question: how can I store coes in PHP? I don’t have a database so I want to save code in file. But if I have a lot of users my server will be overflow with code files.

3 Likes

it’s impossible as you need to do captcha before logging in to prove that you’re not a bot

A Bot in game? Or like a discord bot? Im pretty sure BloxLink does this type of thing. Why not just use a database in a game?

1 Like

a roblox account bot

it’s impossible because of a captcha (but it can be bypassed by changing the .ROBLOSECURITY cookie)

1 Like

There are bots that already do that on Roblox

1 Like

How can I use ROBLOSECURIY cookie? Imagine bot proving that it isn’t a bot lol

1 Like

ok but the API requires a captcha to log in

You must pass the robot test before logging in.

Roblox Authentication API

{
  "ctype": "Email",
  "cvalue": "string",
  "password": "string",
  "userId": 0,
  "securityQuestionSessionId": "string",
  "securityQuestionRedemptionToken": "string",
  "secureAuthenticationIntent": {
    "clientPublicKey": "string",
    "clientEpochTimestamp": 0,
    "saiSignature": "string",
    "serverNonce": "string"
  },
  "captchaId": "string",
  "captchaToken": "string",
  "captchaProvider": "string",
  "challengeId": "string"
}

press F12, go to Application, then scroll down until you find .ROBLOSECURITY
image

(I had to censor my cookie so no one hacks me)

1 Like

You can use roblox cookie and xcsfr token to authorize in bot account using roblox apis

2 Likes

How can I get xcsfr token? charlimittttttt

2 Likes

You can use the noblox library to simple login with cookie or roblox auth apis to get xcrsf token

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.