Skip to main content

SimpleSpaceRegionInfo


BeaconCount

The amount of beacons in the region at the time of the scan. It is of the type number.


HasRings

Whether the region has planetary rings. It is of the type boolean.


Name

The name of the region. It is of the type string.


TidallyLocked

This value contains meaningless data for a space region, but is nonetheless present. It is of the type boolean.


Type

The type of the region. It is always the string Planet.

Luau Type

This is the luau type for SimpleSpaceRegionInfo. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).

export type SimpleSpaceRegionInfo = {
BeaconCount: number,
Type: "Planet",
Name: string,
HasRings: boolean,
SubType: never,
TidallyLocked: boolean,
}