So, I don’t know where else to ask this!
But I was wondering, I’m trying to make a Ranking bot (ON MY OWN) No Noblox,
How can I enter someone account with the cookie?
And rank someone?
Not asking for the complete answer!
I will use JavaScript, but what I mean is, where do I check this?
How does Noblox do this?
Is there a Developer Api for this?
Thanks!
You will need to host a 3rd party application like glitch.com for this which will be online all the time and controlling the bot account.
From the Roblox server you send requests using HttpService to the 3rd party application which will then rank someone.
You can login into a account with this line: await rbx.cookieLogin(cookie);
In order to apply this method using JavaScript, check out this Node HTTP request tutorial - Just make sure to require https instead of http and use https:// in your API urls as the Roblox API enforces HTTPS.
Adding on to the tutorial, the headers have to be submitted via the headers field in the options object (see tutorial). For example, options could look like this: