How to use roblox - 1 common examples

To help you get started, we’ve selected a few roblox examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github suufi / noblox.js / lib / util / clearSession.js View on Github external
exports.func = function (args) {
  var jar = args.jar
  if (settings.session_only) {
    jar.session = ''
  } else {
    var cookies = jar._jar.store.idx['roblox.com']
    if (cookies) {
      var cookie = cookies['/']
      if (cookie && cookie['.ROBLOSECURITY']) {
        delete cookies['/']['.ROBLOSECURITY']
      }
    }
  }
}

roblox

This module is intended to be used to access the Roblox platform and handle (the best it can) mumbojumbo like `X-CSRF-Token` headers and throttling/retries.

MIT
Latest version published 2 years ago

Package Health Score

42 / 100
Full package analysis

Popular roblox functions