Use the RocketBots (Roblox API) through your RocketApps account! We take care of maintaining your Cookie & storing it in a secure way. No more “Damn, I accidentally put my Glitch project on public!”
npm install rocketbots
- Head to rocketapps.bloxtech.tech.
- Sign up (or login) for an account.
- Create a team (Make sure to input the right Roblox group ID here, as this is the group ID that the module will use.)
- Once the team is created, press "manage" next to your team.
- Now head to the "integrations" tab.
- Press "Link Bot" button.
- In the input field, enter the cookie of your Robot and press the green "next" button.
- Confirm that we are linking the correct Roblox account.
- The page will now reload. Head to the "integrations" tab once again.
- On the bottom it will say "RocketApps also allows you to use your bots through our API. View the api here". Press the "here".
- You'll now be redirected to our API documentation. Head to the "settings" tab.
- Copy your team / loader ID here :-)
const RocketBots = require('rocketbots');
(Make sure to run npm install rocketbots
first! Else this will not work.)
const Bot = new RocketBots("YOUR_TEAM_ID_HERE")
Bot.info().then((botInfo) => {
console.log(botInfo);
});
const botInfo = await Bot.info();
console.log(botInfo);
Click to expand.
{
id: '12345', // Bot Roblox id
name: 'roblox', // Bot Roblox username
created: '2021-03-01T21:51:27.097Z'
}
[
{
requester: {
userId: 1234,
username: 'roblox',
displayName: 'roblox'
},
created: "2021-03-03T17:45:02.75Z"
},
]
{
success: true,
response: "Successfully accepted users join request."
}
{
success: true,
response: "Successfully declined user from join requests."
}
{
success: true,
response: "Successfully shouted to group."
}
{
success: true,
response: "Successfully sent message to user."
}
{
success: true,
response: "Successfully sent message to user."
}
{
success: true,
response: "Successfully ranked user in group."
}
{
success: true,
response: "Successfully ranked user in group."
}
{
success: true,
response: "Successfully ranked user in group."
}
{
success: true,
response: "Successfully exiled user from group."
}
You can join our Discord server and open a ticket for support.