PlayableRegionInfo
A region that can be entered by the player, say, the orbit of a planet, the planet itself or a space region.
Coordinate
The coordinates of the region in the non-serialisable Coordinates format.
It is of the type Coordinates.
EnterLocation
The location where the player warps into the region.
It is of the type RegionEntryLocation.
Name
The name of the region.
It is of the type string.
RegionSeed
It is of the type number.
RegionServer
It is of the type string.
StringCoordinate
The coordinates of the region as a string (i.e., 0, 0, 0, 0, false).
It is of the type string.
Luau Type
This is the luau type for PlayableRegionInfo. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).
export type PlayableRegionInfo = {
Name: string,
EnterLocation: RegionEntryLocation,
Coordinate: Coordinates,
StringCoordinate: string,
RegionServer: string,
RegionSeed: number,
}