1.0.5 • Published 4 years ago
bloxget v1.0.5
Welcome to BloxGet
you can with bloxget get all data of any thing in roblox game
How To Install
write in cmds
npm i bloxget1.0 Version
you can get all data of any group in roblox with 1.0 version and get all data of any user in roblox with 1.0 version
What's News in 1.0
blox.group.getowner(/* groupid */ 1, /* call back */ (data) => {
console.log(data)
}) // return a json with data of group ownerblox.group.groupdata(/* groupid */ 1, /* call back */ (data) => {
console.log(data)
}) // return group datablox.group.namehistory(/* groupid */ 1, /* call back */ (data) => {
console.log(data)
}) // return name history of groupExampls
to get username history with username not id
let userid = 1; // default id
const username = '0Bo_Dy' // username of user
blox.user.getid(username /*username to get id of it*/, (suc /* response data */, err /* if error in data */) => {
if(err) return console.log(err); // if error return console.log err
userid = suc.id // recharging the id
blox.user.usernamehistory(userid /*user id*/, 0, (datajson) => {
console.log(datajson) // your code
})
})