hexanium

Hexanium is an empty server finder for roblox, which also allows you to stream snipe others.

Usage no npm install needed!

<script type="module">
  import hexanium from 'https://cdn.skypack.dev/hexanium';
</script>

README

Empty Server Finder Example

var Hexanium = require('hexanium')

var Finder = new Hexanium("Roblox Cookie")

async function Start() {
    let GUID = await Finder.FindServer(292439477) // Phantom Forces
    console.log(GUID)
}

Player Finder Example

var Hexanium = require('hexanium')

var Finder = new Hexanium("Roblox Cookie")

async function Start() {
    let GUID = await Finder.FindPlayer(1, 292439477) // Looks for player with the id of 1 (PlayerId), in 292439477 (PlaceId)
    console.log(GUID)
}