Hey there!
So I’m checking for a list of my friend requests using noblox.js, but suddenly it keeps saying I’m missing permission
all relevant script is the following:
noblox.setCookie(Cookie, true)
noblox.getIdFromUsername(split)
.then(async (id) => {
robloxuserid = id
await channel.send("Succesfully found your roblox account, verifying...")
})
.catch(async (err) => {
await channel.send("This username does not exist, please try a different username.")
})
let freq = await noblox.getFriendRequests(undefined, 100)
Let me know if you foun anything that’s wrong, thanks!