PredictionStatus
Enum used with RunService:GetPredictionStatus() to check the status of a specific instance.
Items 3
| History | Name | Value | Description | |
|---|---|---|---|---|
| 700 | Authoritative | 0 | This instance is authoritative. | |
| 700 | Predicted | 1 | This instance is being predicted. | |
| 700 | None | 2 | The instance will not be resimulated; classic simulation rules apply instead. |
Description
Enum used with RunService:GetPredictionStatus() to check the status of a specific instance.
This prediction status can be used to determine whether any associated scripts
should run. If the status is Authoritative or Predicted, such scripts
should run, since the local node is either the authority for the instance or
is predicting it. If the status is None, such scripts do not need to run.
History 4
- 700 Add Predicted
- 700 Add None
- 700 Add Authoritative
- 700 Add PredictionStatus