SimpleBlackHoleRegionInfo
BeaconCount
The amount of beacons in the region at the time of the scan.
It is of the type number
.
Name
The name of the region.
It is of the type string
.
Size
The visual size of the black hole.
It ranges between 500 and 15000.
It increments by 1.
It is of the type number
.
Type
The type of the region.
It is always the string BlackHole
.
Luau Type
This is the luau type for SimpleBlackHoleRegionInfo
. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).
export type SimpleBlackHoleRegionInfo = {
BeaconCount: number,
Type: "BlackHole",
Name: string,
Size: number,
}