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.
It is read-only, it cannot be assigned to.
EnterLocation
The location where the player warps into the region.
It is of the type RegionEntryLocation.
It is read-only, it cannot be assigned to.
Name
The name of the region.
It is of the type string.
It is read-only, it cannot be assigned to.
RegionSeed
It is of the type number.
It is read-only, it cannot be assigned to.
RegionServer
It is of the type string.
It is read-only, it cannot be assigned to.
StringCoordinate
The coordinates of the region as a string (i.e., 0, 0, 0, 0, false).
It is of the type string.
It is read-only, it cannot be assigned to.
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 = {
read Name: string,
read EnterLocation: RegionEntryLocation,
read Coordinate: Coordinates,
read StringCoordinate: string,
read RegionServer: string,
read RegionSeed: number,
}