@rbxts/types 1.0.888 → 1.0.890

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -220,6 +220,7 @@ interface Services {
220
220
  UserInputService: UserInputService;
221
221
  UserService: UserService;
222
222
  VideoCaptureService: VideoCaptureService;
223
+ VideoScreenCaptureService: VideoScreenCaptureService;
223
224
  VideoService: VideoService;
224
225
  VisibilityCheckDispatcher: VisibilityCheckDispatcher;
225
226
  VisualizationModeService: VisualizationModeService;
@@ -722,6 +723,7 @@ interface Objects extends Instances {
722
723
  TerrainReadOperation: TerrainReadOperation;
723
724
  TerrainWriteOperation: TerrainWriteOperation;
724
725
  VideoCapture: VideoCapture;
726
+ VideoSampler: VideoSampler;
725
727
  WebStreamClient: WebStreamClient;
726
728
  }
727
729
  // GENERATED ROBLOX INSTANCE CLASSES
@@ -2470,8 +2472,11 @@ interface Instance extends RBXObject {
2470
2472
  * - **Tags**: CustomLuaState
2471
2473
  *
2472
2474
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#QueryDescendants)
2475
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
2476
+ * @param selector Selector string used to filter elements.
2477
+ * @returns An array of instances (empty if nothing matched the selector).
2473
2478
  */
2474
- QueryDescendants(this: Instance, selectorGroup: string): Array<Instance>;
2479
+ QueryDescendants(this: Instance, selector: string): Array<Instance>;
2475
2480
  /**
2476
2481
  * Removes a tag from the instance.
2477
2482
  *
@@ -3629,6 +3634,18 @@ interface AnimationTrack extends Instance {
3629
3634
  * @returns The signal created and fired when the animation reaches the created `KeyframeMarker`.
3630
3635
  */
3631
3636
  GetMarkerReachedSignal(this: AnimationTrack, name: string): RBXScriptSignal<(param?: string) => void>;
3637
+ /**
3638
+ * - **ThreadSafety**: Unsafe
3639
+ *
3640
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetParameter)
3641
+ */
3642
+ GetParameter(this: AnimationTrack, key: string): unknown;
3643
+ /**
3644
+ * - **ThreadSafety**: Unsafe
3645
+ *
3646
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetParameterDefaults)
3647
+ */
3648
+ GetParameterDefaults(this: AnimationTrack): object;
3632
3649
  /**
3633
3650
  * - **ThreadSafety**: Unsafe
3634
3651
  *
@@ -3668,6 +3685,12 @@ interface AnimationTrack extends Instance {
3668
3685
  * @param speed The playback speed of the animation.
3669
3686
  */
3670
3687
  Play(this: AnimationTrack, fadeTime?: number, weight?: number, speed?: number): void;
3688
+ /**
3689
+ * - **ThreadSafety**: Unsafe
3690
+ *
3691
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#SetParameter)
3692
+ */
3693
+ SetParameter(this: AnimationTrack, key: string, value: unknown): void;
3671
3694
  /**
3672
3695
  * - **ThreadSafety**: Unsafe
3673
3696
  *
@@ -4186,6 +4209,7 @@ interface AssetService extends Instance {
4186
4209
  * - `MetalnessMap` — A `Content` object that contains the metalness map. If more than one channel is present, only the red channel is used. Default is `nil`.
4187
4210
  * - `NormalMap` — A `Content` object that contains the normal map. Default is `nil`.
4188
4211
  * - `RoughnessMap` — A `Content` object that contains the roughness map. If more than one channel is present, only the red channel is used. Default is `nil`.
4212
+ * - `EmissiveMask` — A `Content` object that contains the emissive mask. If more than one channel is present, only the red channel is used. Default is `nil`.
4189
4213
  *
4190
4214
  *
4191
4215
  * @returns A new `SurfaceAppearance` instance with the given maps from the `content` parameter.
@@ -6203,6 +6227,12 @@ interface AudioPlayer extends Instance {
6203
6227
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#AutoLoad)
6204
6228
  */
6205
6229
  AutoLoad: boolean;
6230
+ /**
6231
+ * - **ThreadSafety**: ReadSafe
6232
+ *
6233
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#AutoPlay)
6234
+ */
6235
+ AutoPlay: boolean;
6206
6236
  /**
6207
6237
  * Denotes whether this `AudioPlayer` is currently playing.
6208
6238
  *
@@ -6703,8 +6733,6 @@ interface AudioSearchParams extends Instance {
6703
6733
  /**
6704
6734
  * Converts spoken audio into text.
6705
6735
  *
6706
- * - **Tags**: NotBrowsable
6707
- *
6708
6736
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
6709
6737
  */
6710
6738
  interface AudioSpeechToText extends Instance {
@@ -7490,10 +7518,19 @@ interface AvatarCreationService extends Instance {
7490
7518
  */
7491
7519
  PrepareAvatarForPreviewAsync(this: AvatarCreationService, humanoidModel: Model): void;
7492
7520
  /**
7521
+ * Prompts a `Player` to purchase and create an avatar asset from an `Instance`.
7522
+ *
7493
7523
  * - **ThreadSafety**: Unsafe
7494
7524
  * - **Tags**: Yields
7495
7525
  *
7496
7526
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#PromptCreateAvatarAssetAsync)
7527
+ * @param this A service to support developer avatar creators.
7528
+ * @param tokenId The ID of a creation token. The token must be valid in that the universe the method is called from is the same universe the token was created for. Furthermore, the token creator must maintain ID verification and [Roblox Premium](https://www.roblox.com/premium/membership). To create a token for utilization in this API, follow the [token creation](../../../production/monetization/avatar-creation-token.md) process. The token's creation type must match the `AvatarAssetType` passed in to the method.
7529
+ * @param player The `Player` intended to be presented with the creation prompt.
7530
+ * @param assetInstance The `Instance` of the avatar asset intended for creation.
7531
+ * @param assetType The `AvatarAssetType` of the expected creation. This must match the creation type of the provided token.
7532
+ * @returns A tuple containing, in order: - An `PromptCreateAssetResult` indicating the result of the creation prompt.
7533
+ * - A string result. In the case of `PromptCreateAssetResult.Success`, this will indicate the asset ID. In the case of any failure enum, this will indicate the resultant error message.
7497
7534
  */
7498
7535
  PromptCreateAvatarAssetAsync(this: AvatarCreationService, tokenId: string, player: Player, assetInstance: Instance, assetType: CastsToEnum<Enum.AvatarAssetType>): unknown;
7499
7536
  /**
@@ -7582,6 +7619,8 @@ interface AvatarCreationService extends Instance {
7582
7619
  */
7583
7620
  ValidateUGCFullBodyAsync(this: AvatarCreationService, player: Player, humanoidDescription: HumanoidDescription): unknown;
7584
7621
  /**
7622
+ * Fires when an in-experience-created avatar asset's moderation status has been updated from pending.
7623
+ *
7585
7624
  * - **ThreadSafety**: Unsafe
7586
7625
  *
7587
7626
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AvatarAssetModerationCompleted)
@@ -9884,6 +9923,12 @@ interface BodyPartDescription extends Instance {
9884
9923
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyPartDescription#Color)
9885
9924
  */
9886
9925
  Color: Color3;
9926
+ /**
9927
+ * - **ThreadSafety**: ReadSafe
9928
+ *
9929
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyPartDescription#HeadShape)
9930
+ */
9931
+ HeadShape: string;
9887
9932
  /**
9888
9933
  * A reference to the `Instance` that should be applied when applying this `BodyPartDescription`.
9889
9934
  *
@@ -15184,6 +15229,8 @@ interface EditableService extends Instance {
15184
15229
  readonly _nominal_EditableService: unique symbol;
15185
15230
  }
15186
15231
  /**
15232
+ * Service providing common encoding, hashing, and compression methods.
15233
+ *
15187
15234
  * - **Tags**: NotCreatable, Service, NotReplicated
15188
15235
  *
15189
15236
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService)
@@ -15201,42 +15248,69 @@ interface EncodingService extends Instance {
15201
15248
  * - **ThreadSafety**: Safe
15202
15249
  *
15203
15250
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#Base64Decode)
15251
+ * @param this Service providing common encoding, hashing, and compression methods.
15252
+ * @param input `buffer` containing Base64 data to decode
15253
+ * @returns `buffer` with the decoded result
15204
15254
  */
15205
15255
  Base64Decode(this: EncodingService, input: buffer): buffer;
15206
15256
  /**
15207
15257
  * - **ThreadSafety**: Safe
15208
15258
  *
15209
15259
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#Base64Encode)
15260
+ * @param this Service providing common encoding, hashing, and compression methods.
15261
+ * @param input `buffer` containing binary data to encode
15262
+ * @returns `buffer` with the encoded result
15210
15263
  */
15211
15264
  Base64Encode(this: EncodingService, input: buffer): buffer;
15212
15265
  /**
15213
15266
  * - **ThreadSafety**: Safe
15214
15267
  *
15215
15268
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#CompressBuffer)
15269
+ * @param this Service providing common encoding, hashing, and compression methods.
15270
+ * @param input `buffer` with binary data to compress
15271
+ * @param algorithm `CompressionAlgorithm` to use for compression
15272
+ * @param compressionLevel optional integer compression level to use
15273
+ * @returns `buffer` with compressed binary data
15216
15274
  */
15217
15275
  CompressBuffer(this: EncodingService, input: buffer, algorithm: CastsToEnum<Enum.CompressionAlgorithm>, compressionLevel?: number): buffer;
15218
15276
  /**
15219
15277
  * - **ThreadSafety**: Safe
15220
15278
  *
15221
15279
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#ComputeBufferHash)
15280
+ * @param this Service providing common encoding, hashing, and compression methods.
15281
+ * @param input `buffer` with binary data to compute hash for
15282
+ * @param algorithm `HashAlgorithm` cryptographic hash function
15283
+ * @returns `buffer` with the binary data of the hash
15222
15284
  */
15223
15285
  ComputeBufferHash(this: EncodingService, input: buffer, algorithm: CastsToEnum<Enum.HashAlgorithm>): buffer;
15224
15286
  /**
15225
15287
  * - **ThreadSafety**: Safe
15226
15288
  *
15227
15289
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#ComputeStringHash)
15290
+ * @param this Service providing common encoding, hashing, and compression methods.
15291
+ * @param input string to compute the hash for
15292
+ * @param algorithm `HashAlgorithm` cryptographic hash function
15293
+ * @returns String with the binary data of the hash
15228
15294
  */
15229
15295
  ComputeStringHash(this: EncodingService, input: string, algorithm: CastsToEnum<Enum.HashAlgorithm>): string;
15230
15296
  /**
15231
15297
  * - **ThreadSafety**: Safe
15232
15298
  *
15233
15299
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#DecompressBuffer)
15300
+ * @param this Service providing common encoding, hashing, and compression methods.
15301
+ * @param input `buffer` with compressed binary data
15302
+ * @param algorithm `CompressionAlgorithm` to use for decompression
15303
+ * @returns `buffer` with the decompressed binary data
15234
15304
  */
15235
15305
  DecompressBuffer(this: EncodingService, input: buffer, algorithm: CastsToEnum<Enum.CompressionAlgorithm>): buffer;
15236
15306
  /**
15237
15307
  * - **ThreadSafety**: Safe
15238
15308
  *
15239
15309
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService#GetDecompressedBufferSize)
15310
+ * @param this Service providing common encoding, hashing, and compression methods.
15311
+ * @param input `buffer` with compressed binary data
15312
+ * @param algorithm `CompressionAlgorithm` used to compress it
15313
+ * @returns Integer size of the decompressed data or 'nil'
15240
15314
  */
15241
15315
  GetDecompressedBufferSize(this: EncodingService, input: buffer, algorithm: CastsToEnum<Enum.CompressionAlgorithm>): number | undefined;
15242
15316
  }
@@ -16366,6 +16440,13 @@ interface GenerationService extends Instance {
16366
16440
  * @returns A tuple of the generation ID (a unique ID returned for each invocation of `GenerateMeshAsync()`) and context ID (not currently used).
16367
16441
  */
16368
16442
  GenerateMeshAsync(this: GenerationService, inputs: object, player: Player, options: object, intermediateResultCallback?: Callback): unknown;
16443
+ /**
16444
+ * - **ThreadSafety**: Unsafe
16445
+ * - **Tags**: Yields
16446
+ *
16447
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GenerationService#GenerateModelAsync)
16448
+ */
16449
+ GenerateModelAsync(this: GenerationService, inputs: object, schema: object, options?: object): unknown;
16369
16450
  /**
16370
16451
  * Retrieves and loads a mesh generated by `GenerationService:GenerateMeshAsync()` using the provided `generationId`.
16371
16452
  *
@@ -16444,6 +16525,13 @@ interface GeometryService extends Instance {
16444
16525
  * | `NoCollisionConstraintPart1` | `Class.BasePart` |
16445
16526
  */
16446
16527
  CalculateConstraintsToPreserve(this: GeometryService, source: Instance, destination: ReadonlyArray<Instance>, options?: CalculateConstraintsToPreserveConfig): Array<unknown>;
16528
+ /**
16529
+ * - **ThreadSafety**: Unsafe
16530
+ * - **Tags**: Yields
16531
+ *
16532
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#FragmentAsync)
16533
+ */
16534
+ FragmentAsync(this: GeometryService, part: BasePart, fragmentSites: Array<unknown>, options?: object, mainPartSites?: Array<unknown>): Array<unknown>;
16447
16535
  /**
16448
16536
  * Creates one or more `PartOperations` from the intersecting geometry of one part and other parts.
16449
16537
  *
@@ -16482,6 +16570,13 @@ interface GeometryService extends Instance {
16482
16570
  * @returns One or more `PartOperations` from the geometry of the main part (`part`) minus the geometry occupied by the other parts.
16483
16571
  */
16484
16572
  SubtractAsync(this: GeometryService, part: Part | PartOperation, parts: ReadonlyArray<Part | PartOperation>, options?: GeometryServiceAsyncMethodConfig): Array<PartOperation>;
16573
+ /**
16574
+ * - **ThreadSafety**: Unsafe
16575
+ * - **Tags**: Yields
16576
+ *
16577
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#SweepPartAsync)
16578
+ */
16579
+ SweepPartAsync(this: GeometryService, part: BasePart, cframes: Array<unknown>, options?: object): MeshPart;
16485
16580
  /**
16486
16581
  * Creates one or more `PartOperations` from one part plus the geometry occupied by other parts.
16487
16582
  *
@@ -22561,7 +22656,7 @@ interface Humanoid extends Instance {
22561
22656
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Humanoid#ApplyDescription)
22562
22657
  * @param this A special object that gives models the functionality of a character.
22563
22658
  * @param humanoidDescription The `HumanoidDescription` instance which you want to set the character to match.
22564
- * @param assetTypeVerification ⚠️ The default value for this parameter will change from `ClientOnly` to `Always` after 10/20/2025. See [here](https://devforum.roblox.com/t/potential-action-required-update-for-humanoiddescription-apis/3982903) for details.
22659
+ * @param assetTypeVerification The asset type verification mode.
22565
22660
  */
22566
22661
  ApplyDescription(this: Humanoid, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
22567
22662
  /**
@@ -22573,7 +22668,7 @@ interface Humanoid extends Instance {
22573
22668
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Humanoid#ApplyDescriptionReset)
22574
22669
  * @param this A special object that gives models the functionality of a character.
22575
22670
  * @param humanoidDescription The `HumanoidDescription` instance which you want to set the character to match.
22576
- * @param assetTypeVerification ⚠️ The default value for this parameter will change from `ClientOnly` to `Always` after 10/20/2025. See [here](https://devforum.roblox.com/t/potential-action-required-update-for-humanoiddescription-apis/3982903) for details.
22671
+ * @param assetTypeVerification The asset type verification mode.
22577
22672
  */
22578
22673
  ApplyDescriptionReset(this: Humanoid, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
22579
22674
  /**
@@ -23922,14 +24017,6 @@ interface HumanoidRigDescription extends Instance {
23922
24017
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#WaistTposeAdjustment)
23923
24018
  */
23924
24019
  WaistTposeAdjustment: CFrame;
23925
- /**
23926
- * - **ThreadSafety**: Safe
23927
- *
23928
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Automap)
23929
- * @param this
23930
- * @param character
23931
- */
23932
- Automap(this: HumanoidRigDescription, character: Instance): void;
23933
24020
  /**
23934
24021
  * - **ThreadSafety**: Safe
23935
24022
  *
@@ -24391,6 +24478,8 @@ interface InputBinding extends Instance {
24391
24478
  */
24392
24479
  ReleasedThreshold: number;
24393
24480
  /**
24481
+ * Numerical value to configure scaling for more precise thumbstick aiming.
24482
+ *
24394
24483
  * - **ThreadSafety**: ReadSafe
24395
24484
  *
24396
24485
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#ResponseCurve)
@@ -26984,6 +27073,13 @@ interface MarketplaceService extends Instance {
26984
27073
  * @returns Indicates whether the given player's inventory contains the given bundle.
26985
27074
  */
26986
27075
  PlayerOwnsBundle(this: MarketplaceService, player: Player, bundleId: number): boolean;
27076
+ /**
27077
+ * - **ThreadSafety**: Unsafe
27078
+ * - **Tags**: Yields
27079
+ *
27080
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#RecommendTopProductsAsync)
27081
+ */
27082
+ RecommendTopProductsAsync(this: MarketplaceService, infoTypes: Array<unknown>): Array<unknown>;
26987
27083
  /**
26988
27084
  * Returns true if the player with the given `UserId` owns the pass with the given `gamePassId`.
26989
27085
  *
@@ -27219,12 +27315,16 @@ interface MaterialVariant extends Instance {
27219
27315
  */
27220
27316
  CustomPhysicalProperties: PhysicalProperties;
27221
27317
  /**
27318
+ * Determines the strength of emissive contribution.
27319
+ *
27222
27320
  * - **ThreadSafety**: ReadSafe
27223
27321
  *
27224
27322
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#EmissiveStrength)
27225
27323
  */
27226
27324
  EmissiveStrength: number;
27227
27325
  /**
27326
+ * Determines the tinting color for emissive contribution.
27327
+ *
27228
27328
  * - **ThreadSafety**: ReadSafe
27229
27329
  *
27230
27330
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#EmissiveTint)
@@ -28071,9 +28171,13 @@ interface OmniRecommendationsService extends Instance {
28071
28171
  readonly _nominal_OmniRecommendationsService: unique symbol;
28072
28172
  }
28073
28173
  /**
28174
+ * **Deprecated:** This class is deprecated and should not be used for new work. Use `HttpService` instead and see the [In-experience HTTP requests guide](../../../cloud-services/http-service.md).
28175
+ *
28074
28176
  * - **Tags**: NotCreatable, NotReplicated
28075
28177
  *
28076
28178
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudApiV1)
28179
+ *
28180
+ * @deprecated HttpService
28077
28181
  */
28078
28182
  interface OpenCloudApiV1 extends Instance {
28079
28183
  /**
@@ -28085,29 +28189,41 @@ interface OpenCloudApiV1 extends Instance {
28085
28189
  */
28086
28190
  readonly _nominal_OpenCloudApiV1: unique symbol;
28087
28191
  /**
28192
+ * **Deprecated:**
28193
+ *
28088
28194
  * - **ThreadSafety**: Unsafe
28089
28195
  * - **Tags**: CustomLuaState
28090
28196
  *
28091
28197
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudApiV1#CreateModel)
28092
- * @param this
28198
+ * @param this **Deprecated:** This class is deprecated and should not be used for new work. Use `HttpService` instead and see the [In-experience HTTP requests guide](../../../cloud-services/http-service.md).
28093
28199
  * @param name
28200
+ *
28201
+ * @deprecated
28094
28202
  */
28095
28203
  CreateModel(this: OpenCloudApiV1, name: string): OpenCloudModel;
28096
28204
  /**
28205
+ * **Deprecated:**
28206
+ *
28097
28207
  * - **ThreadSafety**: Unsafe
28098
28208
  * - **Tags**: Yields
28099
28209
  *
28100
28210
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudApiV1#CreateUserNotificationAsync)
28101
- * @param this
28211
+ * @param this **Deprecated:** This class is deprecated and should not be used for new work. Use `HttpService` instead and see the [In-experience HTTP requests guide](../../../cloud-services/http-service.md).
28102
28212
  * @param user
28103
28213
  * @param userNotification
28214
+ *
28215
+ * @deprecated
28104
28216
  */
28105
28217
  CreateUserNotificationAsync(this: OpenCloudApiV1, user: string, userNotification: OpenCloudModel): OpenCloudModel;
28106
28218
  }
28107
28219
  /**
28220
+ * **Deprecated:** This class is deprecated and should not be used for new work. Use `HttpService` instead and see the [In-experience HTTP requests guide](../../../cloud-services/http-service.md).
28221
+ *
28108
28222
  * - **Tags**: NotCreatable, Service, NotReplicated
28109
28223
  *
28110
28224
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudService)
28225
+ *
28226
+ * @deprecated HttpService
28111
28227
  */
28112
28228
  interface OpenCloudService extends Instance {
28113
28229
  /**
@@ -28119,22 +28235,31 @@ interface OpenCloudService extends Instance {
28119
28235
  */
28120
28236
  readonly _nominal_OpenCloudService: unique symbol;
28121
28237
  /**
28238
+ * **Deprecated:**
28239
+ *
28122
28240
  * - **ThreadSafety**: Unsafe
28241
+ * - **Tags**:
28123
28242
  *
28124
28243
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudService#GetApiV1)
28125
- * @param this
28244
+ * @param this **Deprecated:** This class is deprecated and should not be used for new work. Use `HttpService` instead and see the [In-experience HTTP requests guide](../../../cloud-services/http-service.md).
28245
+ *
28246
+ * @deprecated
28126
28247
  */
28127
28248
  GetApiV1(this: OpenCloudService): OpenCloudApiV1;
28128
28249
  /**
28250
+ * **Deprecated:**
28251
+ *
28129
28252
  * - **ThreadSafety**: Unsafe
28130
28253
  * - **Tags**: Yields
28131
28254
  *
28132
28255
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudService#InvokeAsync)
28133
- * @param this
28256
+ * @param this **Deprecated:** This class is deprecated and should not be used for new work. Use `HttpService` instead and see the [In-experience HTTP requests guide](../../../cloud-services/http-service.md).
28134
28257
  * @param version
28135
28258
  * @param methodName
28136
28259
  * @param arguments
28137
28260
  * @param headers
28261
+ *
28262
+ * @deprecated
28138
28263
  */
28139
28264
  InvokeAsync(this: OpenCloudService, version: string, methodName: string, arguments: object, headers?: object): object;
28140
28265
  }
@@ -30985,7 +31110,7 @@ interface Model extends PVInstance {
30985
31110
  */
30986
31111
  GetPrimaryPartCFrame(this: Model): CFrame;
30987
31112
  /**
30988
- * Returns the canonical scale of the model, which defaults to 1 for newly created models and will change as it is scaled via `Model/ScaleTo`.
31113
+ * Returns the canonical scale of the model, which defaults to 1 for newly created models and will change as it is scaled via `Model:ScaleTo()`.
30989
31114
  *
30990
31115
  * - **ThreadSafety**: Unsafe
30991
31116
  *
@@ -34477,7 +34602,7 @@ interface Players extends Instance {
34477
34602
  * @param this A service that contains presently connected `Player` objects.
34478
34603
  * @param description Specifies the appearance of the returned character.
34479
34604
  * @param rigType Specifies whether the returned character will be R6 or R15.
34480
- * @param assetTypeVerification Asset type verification determines if this function will load models or not. ⚠️ The default value for this parameter will change from `ClientOnly` to `Always` after 10/20/2025. See [here](https://devforum.roblox.com/t/potential-action-required-update-for-humanoiddescription-apis/3982903) for details.
34605
+ * @param assetTypeVerification The asset type verification mode.
34481
34606
  * @returns A `Humanoid` character `Model`.
34482
34607
  */
34483
34608
  CreateHumanoidModelFromDescription(this: Players, description: HumanoidDescription, rigType: CastsToEnum<Enum.HumanoidRigType>, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): Model;
@@ -35619,6 +35744,7 @@ interface ReflectionService extends Instance {
35619
35744
  readonly _nominal_ReflectionService: unique symbol;
35620
35745
  /**
35621
35746
  * - **ThreadSafety**: Unsafe
35747
+ * - **Tags**: CustomLuaState
35622
35748
  *
35623
35749
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClass)
35624
35750
  * @param this
@@ -35628,6 +35754,7 @@ interface ReflectionService extends Instance {
35628
35754
  GetClass(this: ReflectionService, className: string, filter?: object): object | undefined;
35629
35755
  /**
35630
35756
  * - **ThreadSafety**: Unsafe
35757
+ * - **Tags**: CustomLuaState
35631
35758
  *
35632
35759
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClasses)
35633
35760
  * @param this
@@ -35636,6 +35763,7 @@ interface ReflectionService extends Instance {
35636
35763
  GetClasses(this: ReflectionService, filter?: object): Array<unknown>;
35637
35764
  /**
35638
35765
  * - **ThreadSafety**: Unsafe
35766
+ * - **Tags**: CustomLuaState
35639
35767
  *
35640
35768
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetPropertiesOfClass)
35641
35769
  * @param this
@@ -36082,6 +36210,12 @@ interface RunService extends Instance {
36082
36210
  * @param function The custom function being bound.
36083
36211
  */
36084
36212
  BindToRenderStep(this: RunService, name: string, priority: number, callback: (deltaTime: number) => void): void;
36213
+ /**
36214
+ * - **ThreadSafety**: Unsafe
36215
+ *
36216
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#BindToSimulation)
36217
+ */
36218
+ BindToSimulation(this: RunService, callback: Callback, frequency?: CastsToEnum<Enum.StepFrequency>): RBXScriptConnection;
36085
36219
  /**
36086
36220
  * Returns whether the current environment is running on the client.
36087
36221
  *
@@ -36142,12 +36276,6 @@ interface RunService extends Instance {
36142
36276
  * @param name The name of the function being unbound.
36143
36277
  */
36144
36278
  UnbindFromRenderStep(this: RunService, name: string): void;
36145
- /**
36146
- * - **ThreadSafety**: Unsafe
36147
- *
36148
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#FixedHeartbeat)
36149
- */
36150
- readonly FixedHeartbeat: RBXScriptSignal<(deltaTime: number) => void>;
36151
36279
  /**
36152
36280
  * Fires every frame, after the physics simulation has completed.
36153
36281
  *
@@ -37718,10 +37846,15 @@ interface SocialService extends Instance {
37718
37846
  */
37719
37847
  GetEventRsvpStatusAsync(this: SocialService, eventId: string): Enum.RsvpStatus;
37720
37848
  /**
37849
+ * Returns details for the specified experience event or `nil` if it is unavailable.
37850
+ *
37721
37851
  * - **ThreadSafety**: Unsafe
37722
37852
  * - **Tags**: Yields
37723
37853
  *
37724
37854
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetExperienceEventAsync)
37855
+ * @param this Facilitates social functions that impact relationships made on the Roblox platform.
37856
+ * @param eventId The string identifier of the event to retrieve. Must correspond to an event in the current experience.
37857
+ * @returns A dictionary describing the event, or `nil` if the event does not exist, belongs to another experience, or is otherwise unavailable.
37725
37858
  */
37726
37859
  GetExperienceEventAsync(this: SocialService, eventId: string): object | undefined;
37727
37860
  /**
@@ -37737,10 +37870,14 @@ interface SocialService extends Instance {
37737
37870
  */
37738
37871
  GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
37739
37872
  /**
37873
+ * Returns active and upcoming experience events for the current experience.
37874
+ *
37740
37875
  * - **ThreadSafety**: Unsafe
37741
37876
  * - **Tags**: Yields
37742
37877
  *
37743
37878
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetUpcomingExperienceEventsAsync)
37879
+ * @param this Facilitates social functions that impact relationships made on the Roblox platform.
37880
+ * @returns An array of dictionaries describing each active or upcoming event in the current experience, ordered by soonest start time first.
37744
37881
  */
37745
37882
  GetUpcomingExperienceEventsAsync(this: SocialService): Array<unknown>;
37746
37883
  /**
@@ -39530,6 +39667,12 @@ interface StudioCameraService extends Instance {
39530
39667
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCameraService#LockCameraSpeed)
39531
39668
  */
39532
39669
  LockCameraSpeed: boolean;
39670
+ /**
39671
+ * - **ThreadSafety**: ReadSafe
39672
+ *
39673
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCameraService#LoggingEnabled)
39674
+ */
39675
+ LoggingEnabled: boolean;
39533
39676
  /**
39534
39677
  * - **ThreadSafety**: Unsafe
39535
39678
  *
@@ -39921,6 +40064,30 @@ interface StyleQuery extends Instance {
39921
40064
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#MinSize)
39922
40065
  */
39923
40066
  MinSize: Vector2;
40067
+ /**
40068
+ * - **ThreadSafety**: Unsafe
40069
+ *
40070
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#GetCondition)
40071
+ */
40072
+ GetCondition(this: StyleQuery, name: string): unknown;
40073
+ /**
40074
+ * - **ThreadSafety**: Unsafe
40075
+ *
40076
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#GetConditions)
40077
+ */
40078
+ GetConditions(this: StyleQuery): object;
40079
+ /**
40080
+ * - **ThreadSafety**: Unsafe
40081
+ *
40082
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#SetCondition)
40083
+ */
40084
+ SetCondition(this: StyleQuery, name: string, value: unknown): void;
40085
+ /**
40086
+ * - **ThreadSafety**: Unsafe
40087
+ *
40088
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#SetConditions)
40089
+ */
40090
+ SetConditions(this: StyleQuery, conditions: object): void;
39924
40091
  }
39925
40092
  /**
39926
40093
  * - **Tags**: NotCreatable, Service, NotReplicated
@@ -39975,18 +40142,24 @@ interface SurfaceAppearance extends Instance {
39975
40142
  */
39976
40143
  get ColorMapContent(): Content;
39977
40144
  /**
40145
+ * Determines the emissivity across the surface.
40146
+ *
39978
40147
  * - **ThreadSafety**: ReadSafe
39979
40148
  *
39980
40149
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveMaskContent)
39981
40150
  */
39982
40151
  get EmissiveMaskContent(): Content;
39983
40152
  /**
40153
+ * Determines the strength of emissive contribution.
40154
+ *
39984
40155
  * - **ThreadSafety**: ReadSafe
39985
40156
  *
39986
40157
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveStrength)
39987
40158
  */
39988
40159
  EmissiveStrength: number;
39989
40160
  /**
40161
+ * Determines the tinting color for emissive contribution.
40162
+ *
39990
40163
  * - **ThreadSafety**: ReadSafe
39991
40164
  *
39992
40165
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveTint)
@@ -40461,6 +40634,13 @@ interface TeleportService extends Instance {
40461
40634
  number,
40462
40635
  string
40463
40636
  ]>;
40637
+ /**
40638
+ * - **ThreadSafety**: Unsafe
40639
+ * - **Tags**: Yields
40640
+ *
40641
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#PromptExperienceDetailsAsync)
40642
+ */
40643
+ PromptExperienceDetailsAsync(this: TeleportService, player: Player, universeId: number): Enum.PromptExperienceDetailsResult;
40464
40644
  /**
40465
40645
  * Returns an access code that can be used to teleport players to a reserved server, along with the `DataModel.PrivateServerId` for it.
40466
40646
  *
@@ -40567,12 +40747,16 @@ interface TerrainDetail extends Instance {
40567
40747
  */
40568
40748
  readonly _nominal_TerrainDetail: unique symbol;
40569
40749
  /**
40750
+ * Determines the strength of emissive contribution.
40751
+ *
40570
40752
  * - **ThreadSafety**: ReadSafe
40571
40753
  *
40572
40754
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#EmissiveStrength)
40573
40755
  */
40574
40756
  EmissiveStrength: number;
40575
40757
  /**
40758
+ * Determines the tinting color for emissive contribution.
40759
+ *
40576
40760
  * - **ThreadSafety**: ReadSafe
40577
40761
  *
40578
40762
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#EmissiveTint)
@@ -46025,6 +46209,21 @@ interface VideoPlayer extends Instance {
46025
46209
  */
46026
46210
  readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
46027
46211
  }
46212
+ /**
46213
+ * - **Tags**: NotCreatable, Service
46214
+ *
46215
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoScreenCaptureService)
46216
+ */
46217
+ interface VideoScreenCaptureService extends Instance {
46218
+ /**
46219
+ * **DO NOT USE!**
46220
+ *
46221
+ * This field exists to force TypeScript to recognize this as a nominal type
46222
+ * @hidden
46223
+ * @deprecated
46224
+ */
46225
+ readonly _nominal_VideoScreenCaptureService: unique symbol;
46226
+ }
46028
46227
  /**
46029
46228
  * An internal service that offers no functionality to developers.
46030
46229
  *
@@ -46041,6 +46240,21 @@ interface VideoService extends Instance {
46041
46240
  * @deprecated
46042
46241
  */
46043
46242
  readonly _nominal_VideoService: unique symbol;
46243
+ /**
46244
+ * Creates a `VideoSampler` that samples frames from the provided video content.
46245
+ *
46246
+ * - **ThreadSafety**: Unsafe
46247
+ * - **Tags**: Yields
46248
+ *
46249
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoService#CreateVideoSamplerAsync)
46250
+ * @param this An internal service that offers no functionality to developers.
46251
+ * @param content The video content to sample from.
46252
+ * @param options Options table for creating the `VideoSampler`: - `Size` – A `VideoSampleSize` value that determines the resolution of textures produced by the `VideoSampler`. Defaults to `VideoSampleSize.Small`. Use the smallest resolution that meets your needs to minimize memory usage and improve sampling performance.
46253
+ *
46254
+ *
46255
+ * @returns The created `VideoSampler`.
46256
+ */
46257
+ CreateVideoSamplerAsync(this: VideoService, content: Content, options?: object): VideoSampler;
46044
46258
  }
46045
46259
  /**
46046
46260
  * - **Tags**: NotCreatable, Service
@@ -46679,6 +46893,54 @@ interface TerrainWriteOperation extends RBXObject {
46679
46893
  */
46680
46894
  GetBlock(this: TerrainWriteOperation): object;
46681
46895
  }
46896
+ /**
46897
+ * An object for sampling frames from video content.
46898
+ *
46899
+ * - **Tags**: NotCreatable
46900
+ *
46901
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoSampler)
46902
+ */
46903
+ interface VideoSampler extends RBXObject {
46904
+ /**
46905
+ * **DO NOT USE!**
46906
+ *
46907
+ * This field exists to force TypeScript to recognize this as a nominal type
46908
+ * @hidden
46909
+ * @deprecated
46910
+ */
46911
+ readonly _nominal_VideoSampler: unique symbol;
46912
+ /**
46913
+ * The length of the `VideoContent` in seconds.
46914
+ *
46915
+ * - **ThreadSafety**: ReadSafe
46916
+ * - **Tags**: NotReplicated
46917
+ *
46918
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoSampler#TimeLength)
46919
+ */
46920
+ readonly TimeLength: number;
46921
+ /**
46922
+ * The asset loaded into the `VideoSampler`.
46923
+ *
46924
+ * - **ThreadSafety**: ReadSafe
46925
+ * - **Tags**: NotReplicated
46926
+ *
46927
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoSampler#VideoContent)
46928
+ */
46929
+ readonly VideoContent: Content;
46930
+ /**
46931
+ * Gets image frames at the specified timestamps.
46932
+ *
46933
+ * - **ThreadSafety**: Unsafe
46934
+ * - **Tags**: Yields
46935
+ *
46936
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoSampler#GetSamplesAtTimesAsync)
46937
+ * @param this An object for sampling frames from video content.
46938
+ * @param times An array of requested timestamps in seconds for which to retrieve image frames. Each timestamp should be a number between `0` and `TimeLength`.
46939
+ * @returns An array of dictionary or nil values for each requested timestamp. If a requested timestamp is out of range or the `VideoSampler` was unable to produce a sample, the corresponding entry in the returned array will be nil. Each dictionary contains the following keys: - `Time` (number): The timestamp of the returned image frame in seconds. This value may differ slightly from the requested timestamp.
46940
+ * - `Image` (`Content`): A `Content` with a `SourceType` of `ContentSourceType.Opaque` containing the image frame at the corresponding timestamp.
46941
+ */
46942
+ GetSamplesAtTimesAsync(this: VideoSampler, times: Array<unknown>): Array<unknown>;
46943
+ }
46682
46944
  /**
46683
46945
  * Maintains a streaming connection.
46684
46946
  *
@@ -242,6 +242,7 @@ interface Services {
242
242
  UserService: UserService;
243
243
  VersionControlService: VersionControlService;
244
244
  VideoCaptureService: VideoCaptureService;
245
+ VideoScreenCaptureService: VideoScreenCaptureService;
245
246
  VideoService: VideoService;
246
247
  VisibilityCheckDispatcher: VisibilityCheckDispatcher;
247
248
  VisualizationModeService: VisualizationModeService;
@@ -774,6 +775,7 @@ interface Objects extends Instances {
774
775
  TerrainReadOperation: TerrainReadOperation;
775
776
  TerrainWriteOperation: TerrainWriteOperation;
776
777
  VideoCapture: VideoCapture;
778
+ VideoSampler: VideoSampler;
777
779
  WebStreamClient: WebStreamClient;
778
780
  }
779
781
  // GENERATED ROBLOX INSTANCE CLASSES
@@ -1932,8 +1934,6 @@ interface AudioSearchParams extends Instance {
1932
1934
  /**
1933
1935
  * Converts spoken audio into text.
1934
1936
  *
1935
- * - **Tags**: NotBrowsable
1936
- *
1937
1937
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSpeechToText)
1938
1938
  */
1939
1939
  interface AudioSpeechToText extends Instance {
@@ -4578,6 +4578,8 @@ interface EditableService extends Instance {
4578
4578
  readonly _nominal_EditableService: unique symbol;
4579
4579
  }
4580
4580
  /**
4581
+ * Service providing common encoding, hashing, and compression methods.
4582
+ *
4581
4583
  * - **Tags**: NotCreatable, Service, NotReplicated
4582
4584
  *
4583
4585
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EncodingService)
@@ -8068,6 +8070,8 @@ interface MaterialVariant extends Instance {
8068
8070
  */
8069
8071
  ColorMapContent: Content;
8070
8072
  /**
8073
+ * Determines the emissivity across the surface.
8074
+ *
8071
8075
  * - **ThreadSafety**: ReadSafe
8072
8076
  *
8073
8077
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#EmissiveMaskContent)
@@ -8608,9 +8612,13 @@ interface OmniRecommendationsService extends Instance {
8608
8612
  readonly _nominal_OmniRecommendationsService: unique symbol;
8609
8613
  }
8610
8614
  /**
8615
+ * **Deprecated:** This class is deprecated and should not be used for new work. Use `HttpService` instead and see the [In-experience HTTP requests guide](../../../cloud-services/http-service.md).
8616
+ *
8611
8617
  * - **Tags**: NotCreatable, NotReplicated
8612
8618
  *
8613
8619
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudApiV1)
8620
+ *
8621
+ * @deprecated HttpService
8614
8622
  */
8615
8623
  interface OpenCloudApiV1 extends Instance {
8616
8624
  /**
@@ -8623,9 +8631,13 @@ interface OpenCloudApiV1 extends Instance {
8623
8631
  readonly _nominal_OpenCloudApiV1: unique symbol;
8624
8632
  }
8625
8633
  /**
8634
+ * **Deprecated:** This class is deprecated and should not be used for new work. Use `HttpService` instead and see the [In-experience HTTP requests guide](../../../cloud-services/http-service.md).
8635
+ *
8626
8636
  * - **Tags**: NotCreatable, Service, NotReplicated
8627
8637
  *
8628
8638
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudService)
8639
+ *
8640
+ * @deprecated HttpService
8629
8641
  */
8630
8642
  interface OpenCloudService extends Instance {
8631
8643
  /**
@@ -13416,6 +13428,8 @@ interface SurfaceAppearance extends Instance {
13416
13428
  */
13417
13429
  set ColorMapContent(value: Content);
13418
13430
  /**
13431
+ * Determines the emissivity across the surface.
13432
+ *
13419
13433
  * - **ThreadSafety**: ReadSafe
13420
13434
  *
13421
13435
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveMaskContent)
@@ -13701,6 +13715,8 @@ interface TerrainDetail extends Instance {
13701
13715
  */
13702
13716
  ColorMapContent: Content;
13703
13717
  /**
13718
+ * Determines the emissivity across the surface.
13719
+ *
13704
13720
  * - **ThreadSafety**: ReadSafe
13705
13721
  *
13706
13722
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#EmissiveMaskContent)
@@ -15081,6 +15097,21 @@ interface VideoPlayer extends Instance {
15081
15097
  */
15082
15098
  readonly _nominal_VideoPlayer: unique symbol;
15083
15099
  }
15100
+ /**
15101
+ * - **Tags**: NotCreatable, Service
15102
+ *
15103
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoScreenCaptureService)
15104
+ */
15105
+ interface VideoScreenCaptureService extends Instance {
15106
+ /**
15107
+ * **DO NOT USE!**
15108
+ *
15109
+ * This field exists to force TypeScript to recognize this as a nominal type
15110
+ * @hidden
15111
+ * @deprecated
15112
+ */
15113
+ readonly _nominal_VideoScreenCaptureService: unique symbol;
15114
+ }
15084
15115
  /**
15085
15116
  * An internal service that offers no functionality to developers.
15086
15117
  *
@@ -15375,6 +15406,23 @@ interface TerrainWriteOperation extends RBXObject {
15375
15406
  */
15376
15407
  readonly _nominal_TerrainWriteOperation: unique symbol;
15377
15408
  }
15409
+ /**
15410
+ * An object for sampling frames from video content.
15411
+ *
15412
+ * - **Tags**: NotCreatable
15413
+ *
15414
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoSampler)
15415
+ */
15416
+ interface VideoSampler extends RBXObject {
15417
+ /**
15418
+ * **DO NOT USE!**
15419
+ *
15420
+ * This field exists to force TypeScript to recognize this as a nominal type
15421
+ * @hidden
15422
+ * @deprecated
15423
+ */
15424
+ readonly _nominal_VideoSampler: unique symbol;
15425
+ }
15378
15426
  /**
15379
15427
  * Maintains a streaming connection.
15380
15428
  *
@@ -1590,6 +1590,51 @@ declare namespace Enum {
1590
1590
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationClipFromVideoStatus | undefined;
1591
1591
  }
1592
1592
  export type AnimationClipFromVideoStatus = AnimationClipFromVideoStatus.Initializing | AnimationClipFromVideoStatus.Pending | AnimationClipFromVideoStatus.Processing | AnimationClipFromVideoStatus.ErrorGeneric | AnimationClipFromVideoStatus.Success | AnimationClipFromVideoStatus.ErrorVideoTooLong | AnimationClipFromVideoStatus.ErrorNoPersonDetected | AnimationClipFromVideoStatus.ErrorVideoUnstable | AnimationClipFromVideoStatus.Timeout | AnimationClipFromVideoStatus.Cancelled | AnimationClipFromVideoStatus.ErrorMultiplePeople | AnimationClipFromVideoStatus.ErrorUploadingVideo;
1593
+ /**
1594
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePlayMode)
1595
+ */
1596
+ export namespace AnimationNodePlayMode {
1597
+ /**
1598
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePlayMode#Loop)
1599
+ */
1600
+ export interface Loop extends globalThis.EnumItem {
1601
+ Name: "Loop";
1602
+ Value: 0;
1603
+ EnumType: typeof globalThis.Enum.AnimationNodePlayMode;
1604
+ }
1605
+ export const Loop: Loop;
1606
+ /**
1607
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePlayMode#PingPong)
1608
+ */
1609
+ export interface PingPong extends globalThis.EnumItem {
1610
+ Name: "PingPong";
1611
+ Value: 1;
1612
+ EnumType: typeof globalThis.Enum.AnimationNodePlayMode;
1613
+ }
1614
+ export const PingPong: PingPong;
1615
+ /**
1616
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePlayMode#OnceAndHold)
1617
+ */
1618
+ export interface OnceAndHold extends globalThis.EnumItem {
1619
+ Name: "OnceAndHold";
1620
+ Value: 2;
1621
+ EnumType: typeof globalThis.Enum.AnimationNodePlayMode;
1622
+ }
1623
+ export const OnceAndHold: OnceAndHold;
1624
+ /**
1625
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePlayMode#OnceAndReset)
1626
+ */
1627
+ export interface OnceAndReset extends globalThis.EnumItem {
1628
+ Name: "OnceAndReset";
1629
+ Value: 3;
1630
+ EnumType: typeof globalThis.Enum.AnimationNodePlayMode;
1631
+ }
1632
+ export const OnceAndReset: OnceAndReset;
1633
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodePlayMode>;
1634
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodePlayMode | undefined;
1635
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodePlayMode | undefined;
1636
+ }
1637
+ export type AnimationNodePlayMode = AnimationNodePlayMode.Loop | AnimationNodePlayMode.PingPong | AnimationNodePlayMode.OnceAndHold | AnimationNodePlayMode.OnceAndReset;
1593
1638
  /**
1594
1639
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeType)
1595
1640
  */
@@ -3147,6 +3192,33 @@ declare namespace Enum {
3147
3192
  EnumType: typeof globalThis.Enum.AssetType;
3148
3193
  }
3149
3194
  export const DynamicHead: DynamicHead;
3195
+ /**
3196
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#FaceMakeup)
3197
+ */
3198
+ export interface FaceMakeup extends globalThis.EnumItem {
3199
+ Name: "FaceMakeup";
3200
+ Value: 88;
3201
+ EnumType: typeof globalThis.Enum.AssetType;
3202
+ }
3203
+ export const FaceMakeup: FaceMakeup;
3204
+ /**
3205
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#LipMakeup)
3206
+ */
3207
+ export interface LipMakeup extends globalThis.EnumItem {
3208
+ Name: "LipMakeup";
3209
+ Value: 89;
3210
+ EnumType: typeof globalThis.Enum.AssetType;
3211
+ }
3212
+ export const LipMakeup: LipMakeup;
3213
+ /**
3214
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EyeMakeup)
3215
+ */
3216
+ export interface EyeMakeup extends globalThis.EnumItem {
3217
+ Name: "EyeMakeup";
3218
+ Value: 90;
3219
+ EnumType: typeof globalThis.Enum.AssetType;
3220
+ }
3221
+ export const EyeMakeup: EyeMakeup;
3150
3222
  /**
3151
3223
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EarAccessory)
3152
3224
  */
@@ -3169,7 +3241,7 @@ declare namespace Enum {
3169
3241
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AssetType | undefined;
3170
3242
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AssetType | undefined;
3171
3243
  }
3172
- export type AssetType = AssetType.Image | AssetType.TShirt | AssetType.Audio | AssetType.Mesh | AssetType.Lua | AssetType.Hat | AssetType.Place | AssetType.Model | AssetType.Shirt | AssetType.Pants | AssetType.Decal | AssetType.Head | AssetType.Face | AssetType.Gear | AssetType.Badge | AssetType.Animation | AssetType.Torso | AssetType.RightArm | AssetType.LeftArm | AssetType.LeftLeg | AssetType.RightLeg | AssetType.Package | AssetType.GamePass | AssetType.Plugin | AssetType.MeshPart | AssetType.HairAccessory | AssetType.FaceAccessory | AssetType.NeckAccessory | AssetType.ShoulderAccessory | AssetType.FrontAccessory | AssetType.BackAccessory | AssetType.WaistAccessory | AssetType.ClimbAnimation | AssetType.DeathAnimation | AssetType.FallAnimation | AssetType.IdleAnimation | AssetType.JumpAnimation | AssetType.RunAnimation | AssetType.SwimAnimation | AssetType.WalkAnimation | AssetType.PoseAnimation | AssetType.EmoteAnimation | AssetType.Video | AssetType.TShirtAccessory | AssetType.ShirtAccessory | AssetType.PantsAccessory | AssetType.JacketAccessory | AssetType.SweaterAccessory | AssetType.ShortsAccessory | AssetType.LeftShoeAccessory | AssetType.RightShoeAccessory | AssetType.DressSkirtAccessory | AssetType.FontFamily | AssetType.EyebrowAccessory | AssetType.EyelashAccessory | AssetType.MoodAnimation | AssetType.DynamicHead | AssetType.EarAccessory | AssetType.EyeAccessory;
3244
+ export type AssetType = AssetType.Image | AssetType.TShirt | AssetType.Audio | AssetType.Mesh | AssetType.Lua | AssetType.Hat | AssetType.Place | AssetType.Model | AssetType.Shirt | AssetType.Pants | AssetType.Decal | AssetType.Head | AssetType.Face | AssetType.Gear | AssetType.Badge | AssetType.Animation | AssetType.Torso | AssetType.RightArm | AssetType.LeftArm | AssetType.LeftLeg | AssetType.RightLeg | AssetType.Package | AssetType.GamePass | AssetType.Plugin | AssetType.MeshPart | AssetType.HairAccessory | AssetType.FaceAccessory | AssetType.NeckAccessory | AssetType.ShoulderAccessory | AssetType.FrontAccessory | AssetType.BackAccessory | AssetType.WaistAccessory | AssetType.ClimbAnimation | AssetType.DeathAnimation | AssetType.FallAnimation | AssetType.IdleAnimation | AssetType.JumpAnimation | AssetType.RunAnimation | AssetType.SwimAnimation | AssetType.WalkAnimation | AssetType.PoseAnimation | AssetType.EmoteAnimation | AssetType.Video | AssetType.TShirtAccessory | AssetType.ShirtAccessory | AssetType.PantsAccessory | AssetType.JacketAccessory | AssetType.SweaterAccessory | AssetType.ShortsAccessory | AssetType.LeftShoeAccessory | AssetType.RightShoeAccessory | AssetType.DressSkirtAccessory | AssetType.FontFamily | AssetType.EyebrowAccessory | AssetType.EyelashAccessory | AssetType.MoodAnimation | AssetType.DynamicHead | AssetType.FaceMakeup | AssetType.LipMakeup | AssetType.EyeMakeup | AssetType.EarAccessory | AssetType.EyeAccessory;
3173
3245
  /**
3174
3246
  * Determines the asset type verification mode.
3175
3247
  *
@@ -4143,11 +4215,38 @@ declare namespace Enum {
4143
4215
  EnumType: typeof globalThis.Enum.AvatarAssetType;
4144
4216
  }
4145
4217
  export const DynamicHead: DynamicHead;
4218
+ /**
4219
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarAssetType#FaceMakeup)
4220
+ */
4221
+ export interface FaceMakeup extends globalThis.EnumItem {
4222
+ Name: "FaceMakeup";
4223
+ Value: 88;
4224
+ EnumType: typeof globalThis.Enum.AvatarAssetType;
4225
+ }
4226
+ export const FaceMakeup: FaceMakeup;
4227
+ /**
4228
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarAssetType#LipMakeup)
4229
+ */
4230
+ export interface LipMakeup extends globalThis.EnumItem {
4231
+ Name: "LipMakeup";
4232
+ Value: 89;
4233
+ EnumType: typeof globalThis.Enum.AvatarAssetType;
4234
+ }
4235
+ export const LipMakeup: LipMakeup;
4236
+ /**
4237
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarAssetType#EyeMakeup)
4238
+ */
4239
+ export interface EyeMakeup extends globalThis.EnumItem {
4240
+ Name: "EyeMakeup";
4241
+ Value: 90;
4242
+ EnumType: typeof globalThis.Enum.AvatarAssetType;
4243
+ }
4244
+ export const EyeMakeup: EyeMakeup;
4146
4245
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AvatarAssetType>;
4147
4246
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AvatarAssetType | undefined;
4148
4247
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AvatarAssetType | undefined;
4149
4248
  }
4150
- export type AvatarAssetType = AvatarAssetType.TShirt | AvatarAssetType.Hat | AvatarAssetType.Shirt | AvatarAssetType.Pants | AvatarAssetType.Head | AvatarAssetType.Face | AvatarAssetType.Gear | AvatarAssetType.Torso | AvatarAssetType.RightArm | AvatarAssetType.LeftArm | AvatarAssetType.LeftLeg | AvatarAssetType.RightLeg | AvatarAssetType.HairAccessory | AvatarAssetType.FaceAccessory | AvatarAssetType.NeckAccessory | AvatarAssetType.ShoulderAccessory | AvatarAssetType.FrontAccessory | AvatarAssetType.BackAccessory | AvatarAssetType.WaistAccessory | AvatarAssetType.ClimbAnimation | AvatarAssetType.FallAnimation | AvatarAssetType.IdleAnimation | AvatarAssetType.JumpAnimation | AvatarAssetType.RunAnimation | AvatarAssetType.SwimAnimation | AvatarAssetType.WalkAnimation | AvatarAssetType.MoodAnimation | AvatarAssetType.EmoteAnimation | AvatarAssetType.TShirtAccessory | AvatarAssetType.ShirtAccessory | AvatarAssetType.PantsAccessory | AvatarAssetType.JacketAccessory | AvatarAssetType.SweaterAccessory | AvatarAssetType.ShortsAccessory | AvatarAssetType.LeftShoeAccessory | AvatarAssetType.RightShoeAccessory | AvatarAssetType.DressSkirtAccessory | AvatarAssetType.EyebrowAccessory | AvatarAssetType.EyelashAccessory | AvatarAssetType.DynamicHead;
4249
+ export type AvatarAssetType = AvatarAssetType.TShirt | AvatarAssetType.Hat | AvatarAssetType.Shirt | AvatarAssetType.Pants | AvatarAssetType.Head | AvatarAssetType.Face | AvatarAssetType.Gear | AvatarAssetType.Torso | AvatarAssetType.RightArm | AvatarAssetType.LeftArm | AvatarAssetType.LeftLeg | AvatarAssetType.RightLeg | AvatarAssetType.HairAccessory | AvatarAssetType.FaceAccessory | AvatarAssetType.NeckAccessory | AvatarAssetType.ShoulderAccessory | AvatarAssetType.FrontAccessory | AvatarAssetType.BackAccessory | AvatarAssetType.WaistAccessory | AvatarAssetType.ClimbAnimation | AvatarAssetType.FallAnimation | AvatarAssetType.IdleAnimation | AvatarAssetType.JumpAnimation | AvatarAssetType.RunAnimation | AvatarAssetType.SwimAnimation | AvatarAssetType.WalkAnimation | AvatarAssetType.MoodAnimation | AvatarAssetType.EmoteAnimation | AvatarAssetType.TShirtAccessory | AvatarAssetType.ShirtAccessory | AvatarAssetType.PantsAccessory | AvatarAssetType.JacketAccessory | AvatarAssetType.SweaterAccessory | AvatarAssetType.ShortsAccessory | AvatarAssetType.LeftShoeAccessory | AvatarAssetType.RightShoeAccessory | AvatarAssetType.DressSkirtAccessory | AvatarAssetType.EyebrowAccessory | AvatarAssetType.EyelashAccessory | AvatarAssetType.DynamicHead | AvatarAssetType.FaceMakeup | AvatarAssetType.LipMakeup | AvatarAssetType.EyeMakeup;
4151
4250
  /**
4152
4251
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AvatarChatServiceFeature)
4153
4252
  */
@@ -8404,6 +8503,15 @@ declare namespace Enum {
8404
8503
  EnumType: typeof globalThis.Enum.ConnectionError;
8405
8504
  }
8406
8505
  export const DisconnectionNotification: DisconnectionNotification;
8506
+ /**
8507
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#DisconnectVerboselyModeratedGame)
8508
+ */
8509
+ export interface DisconnectVerboselyModeratedGame extends globalThis.EnumItem {
8510
+ Name: "DisconnectVerboselyModeratedGame";
8511
+ Value: 309;
8512
+ EnumType: typeof globalThis.Enum.ConnectionError;
8513
+ }
8514
+ export const DisconnectVerboselyModeratedGame: DisconnectVerboselyModeratedGame;
8407
8515
  /**
8408
8516
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchErrors)
8409
8517
  */
@@ -8633,7 +8741,7 @@ declare namespace Enum {
8633
8741
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
8634
8742
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
8635
8743
  }
8636
- export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.ConnectErrors | ConnectionError.AlreadyConnected | ConnectionError.NoFreeIncomingConnections | ConnectionError.ConnectionBanned | ConnectionError.InvalidPassword | ConnectionError.IncompatibleProtocolVersion | ConnectionError.IPRecentlyConnected | ConnectionError.OurSystemRequiresSecurity | ConnectionError.SecurityKeyMismatch | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.ServerEmpty | ConnectionError.PhantomFreeze | ConnectionError.AndroidAnticheatKick | ConnectionError.AndroidEmulatorKick | ConnectionError.AndroidRootedKick | ConnectionError.ScreentimeLockoutKick | ConnectionError.DisconnectionNotification | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
8744
+ export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.ConnectErrors | ConnectionError.AlreadyConnected | ConnectionError.NoFreeIncomingConnections | ConnectionError.ConnectionBanned | ConnectionError.InvalidPassword | ConnectionError.IncompatibleProtocolVersion | ConnectionError.IPRecentlyConnected | ConnectionError.OurSystemRequiresSecurity | ConnectionError.SecurityKeyMismatch | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.ServerEmpty | ConnectionError.PhantomFreeze | ConnectionError.AndroidAnticheatKick | ConnectionError.AndroidEmulatorKick | ConnectionError.AndroidRootedKick | ConnectionError.ScreentimeLockoutKick | ConnectionError.DisconnectionNotification | ConnectionError.DisconnectVerboselyModeratedGame | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
8637
8745
  /**
8638
8746
  * Used to determine the connection state of the client to the game server.
8639
8747
  *
@@ -8707,6 +8815,8 @@ declare namespace Enum {
8707
8815
  }
8708
8816
  export const Object: Object;
8709
8817
  /**
8818
+ * A non-`nil` `Opaque` reference contained in `Content.Opaque`.
8819
+ *
8710
8820
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ContentSourceType#Opaque)
8711
8821
  */
8712
8822
  export interface Opaque extends globalThis.EnumItem {
@@ -11347,6 +11457,33 @@ declare namespace Enum {
11347
11457
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceEventStatus | undefined;
11348
11458
  }
11349
11459
  export type ExperienceEventStatus = ExperienceEventStatus.Active | ExperienceEventStatus.Cancelled | ExperienceEventStatus.Moderated | ExperienceEventStatus.Unpublished | ExperienceEventStatus.Unknown;
11460
+ /**
11461
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateCaptureSelectionMode)
11462
+ */
11463
+ export namespace ExperienceStateCaptureSelectionMode {
11464
+ /**
11465
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateCaptureSelectionMode#Default)
11466
+ */
11467
+ export interface Default extends globalThis.EnumItem {
11468
+ Name: "Default";
11469
+ Value: 0;
11470
+ EnumType: typeof globalThis.Enum.ExperienceStateCaptureSelectionMode;
11471
+ }
11472
+ export const Default: Default;
11473
+ /**
11474
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateCaptureSelectionMode#SafetyHighlightMode)
11475
+ */
11476
+ export interface SafetyHighlightMode extends globalThis.EnumItem {
11477
+ Name: "SafetyHighlightMode";
11478
+ Value: 1;
11479
+ EnumType: typeof globalThis.Enum.ExperienceStateCaptureSelectionMode;
11480
+ }
11481
+ export const SafetyHighlightMode: SafetyHighlightMode;
11482
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ExperienceStateCaptureSelectionMode>;
11483
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ExperienceStateCaptureSelectionMode | undefined;
11484
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ExperienceStateCaptureSelectionMode | undefined;
11485
+ }
11486
+ export type ExperienceStateCaptureSelectionMode = ExperienceStateCaptureSelectionMode.Default | ExperienceStateCaptureSelectionMode.SafetyHighlightMode;
11350
11487
  /**
11351
11488
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ExperienceStateRecordingLoadMode)
11352
11489
  */
@@ -16047,6 +16184,8 @@ declare namespace Enum {
16047
16184
  }
16048
16185
  export const Direction3D: Direction3D;
16049
16186
  /**
16187
+ * The `InputAction` will receive `Vector2` values representing the absolute pixel (**X**, **Y**) coordinates of a pointer input in the viewport.
16188
+ *
16050
16189
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/InputActionType#ViewportPosition)
16051
16190
  */
16052
16191
  export interface ViewportPosition extends globalThis.EnumItem {
@@ -18130,6 +18269,8 @@ declare namespace Enum {
18130
18269
  }
18131
18270
  export const Thumbstick2: Thumbstick2;
18132
18271
  /**
18272
+ * Up vector on the gamepad primary thumbstick. Primarily used in the [Input Action System](../../../input/input-action-system.md).
18273
+ *
18133
18274
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick1Up)
18134
18275
  */
18135
18276
  export interface Thumbstick1Up extends globalThis.EnumItem {
@@ -18139,6 +18280,8 @@ declare namespace Enum {
18139
18280
  }
18140
18281
  export const Thumbstick1Up: Thumbstick1Up;
18141
18282
  /**
18283
+ * Down vector on the gamepad primary thumbstick. Primarily used in the [Input Action System](../../../input/input-action-system.md).
18284
+ *
18142
18285
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick1Down)
18143
18286
  */
18144
18287
  export interface Thumbstick1Down extends globalThis.EnumItem {
@@ -18148,6 +18291,8 @@ declare namespace Enum {
18148
18291
  }
18149
18292
  export const Thumbstick1Down: Thumbstick1Down;
18150
18293
  /**
18294
+ * Left vector on the gamepad primary thumbstick. Primarily used in the [Input Action System](../../../input/input-action-system.md).
18295
+ *
18151
18296
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick1Left)
18152
18297
  */
18153
18298
  export interface Thumbstick1Left extends globalThis.EnumItem {
@@ -18157,6 +18302,8 @@ declare namespace Enum {
18157
18302
  }
18158
18303
  export const Thumbstick1Left: Thumbstick1Left;
18159
18304
  /**
18305
+ * Right vector on the gamepad primary thumbstick. Primarily used in the [Input Action System](../../../input/input-action-system.md).
18306
+ *
18160
18307
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick1Right)
18161
18308
  */
18162
18309
  export interface Thumbstick1Right extends globalThis.EnumItem {
@@ -18166,6 +18313,8 @@ declare namespace Enum {
18166
18313
  }
18167
18314
  export const Thumbstick1Right: Thumbstick1Right;
18168
18315
  /**
18316
+ * Up vector on the gamepad secondary thumbstick. Primarily used in the [Input Action System](../../../input/input-action-system.md).
18317
+ *
18169
18318
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick2Up)
18170
18319
  */
18171
18320
  export interface Thumbstick2Up extends globalThis.EnumItem {
@@ -18175,6 +18324,8 @@ declare namespace Enum {
18175
18324
  }
18176
18325
  export const Thumbstick2Up: Thumbstick2Up;
18177
18326
  /**
18327
+ * Down vector on the gamepad secondary thumbstick. Primarily used in the [Input Action System](../../../input/input-action-system.md).
18328
+ *
18178
18329
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick2Down)
18179
18330
  */
18180
18331
  export interface Thumbstick2Down extends globalThis.EnumItem {
@@ -18184,6 +18335,8 @@ declare namespace Enum {
18184
18335
  }
18185
18336
  export const Thumbstick2Down: Thumbstick2Down;
18186
18337
  /**
18338
+ * Left vector on the gamepad secondary thumbstick. Primarily used in the [Input Action System](../../../input/input-action-system.md).
18339
+ *
18187
18340
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick2Left)
18188
18341
  */
18189
18342
  export interface Thumbstick2Left extends globalThis.EnumItem {
@@ -18193,6 +18346,8 @@ declare namespace Enum {
18193
18346
  }
18194
18347
  export const Thumbstick2Left: Thumbstick2Left;
18195
18348
  /**
18349
+ * Right vector on the gamepad secondary thumbstick. Primarily used in the [Input Action System](../../../input/input-action-system.md).
18350
+ *
18196
18351
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Thumbstick2Right)
18197
18352
  */
18198
18353
  export interface Thumbstick2Right extends globalThis.EnumItem {
@@ -18229,6 +18384,8 @@ declare namespace Enum {
18229
18384
  }
18230
18385
  export const MouseMiddleButton: MouseMiddleButton;
18231
18386
  /**
18387
+ * The position of a mouse in the viewport. Primarily used in the [Input Action System](../../../input/input-action-system.md).
18388
+ *
18232
18389
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MousePosition)
18233
18390
  */
18234
18391
  export interface MousePosition extends globalThis.EnumItem {
@@ -23428,7 +23585,7 @@ declare namespace Enum {
23428
23585
  */
23429
23586
  export namespace PhysicsSteppingMethod {
23430
23587
  /**
23431
- * The current default is Fixed.
23588
+ * The current default is `Adaptive`.
23432
23589
  *
23433
23590
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PhysicsSteppingMethod#Default)
23434
23591
  */
@@ -24978,6 +25135,33 @@ declare namespace Enum {
24978
25135
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptCreateAvatarResult | undefined;
24979
25136
  }
24980
25137
  export type PromptCreateAvatarResult = PromptCreateAvatarResult.Success | PromptCreateAvatarResult.PermissionDenied | PromptCreateAvatarResult.Timeout | PromptCreateAvatarResult.UploadFailed | PromptCreateAvatarResult.NoUserInput | PromptCreateAvatarResult.InvalidHumanoidDescription | PromptCreateAvatarResult.UGCValidationFailed | PromptCreateAvatarResult.ModeratedName | PromptCreateAvatarResult.MaxOutfits | PromptCreateAvatarResult.PurchaseFailure | PromptCreateAvatarResult.UnknownFailure | PromptCreateAvatarResult.TokenInvalid;
25138
+ /**
25139
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptExperienceDetailsResult)
25140
+ */
25141
+ export namespace PromptExperienceDetailsResult {
25142
+ /**
25143
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptExperienceDetailsResult#PromptClosed)
25144
+ */
25145
+ export interface PromptClosed extends globalThis.EnumItem {
25146
+ Name: "PromptClosed";
25147
+ Value: 0;
25148
+ EnumType: typeof globalThis.Enum.PromptExperienceDetailsResult;
25149
+ }
25150
+ export const PromptClosed: PromptClosed;
25151
+ /**
25152
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptExperienceDetailsResult#TeleportAttempted)
25153
+ */
25154
+ export interface TeleportAttempted extends globalThis.EnumItem {
25155
+ Name: "TeleportAttempted";
25156
+ Value: 1;
25157
+ EnumType: typeof globalThis.Enum.PromptExperienceDetailsResult;
25158
+ }
25159
+ export const TeleportAttempted: TeleportAttempted;
25160
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PromptExperienceDetailsResult>;
25161
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PromptExperienceDetailsResult | undefined;
25162
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptExperienceDetailsResult | undefined;
25163
+ }
25164
+ export type PromptExperienceDetailsResult = PromptExperienceDetailsResult.PromptClosed | PromptExperienceDetailsResult.TeleportAttempted;
24981
25165
  /**
24982
25166
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptLinkSharingResult)
24983
25167
  */
@@ -28939,6 +29123,69 @@ declare namespace Enum {
28939
29123
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.Status | undefined;
28940
29124
  }
28941
29125
  export type Status = Status.Poison | Status.Confusion;
29126
+ /**
29127
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency)
29128
+ */
29129
+ export namespace StepFrequency {
29130
+ /**
29131
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz60)
29132
+ */
29133
+ export interface Hz60 extends globalThis.EnumItem {
29134
+ Name: "Hz60";
29135
+ Value: 0;
29136
+ EnumType: typeof globalThis.Enum.StepFrequency;
29137
+ }
29138
+ export const Hz60: Hz60;
29139
+ /**
29140
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz30)
29141
+ */
29142
+ export interface Hz30 extends globalThis.EnumItem {
29143
+ Name: "Hz30";
29144
+ Value: 1;
29145
+ EnumType: typeof globalThis.Enum.StepFrequency;
29146
+ }
29147
+ export const Hz30: Hz30;
29148
+ /**
29149
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz15)
29150
+ */
29151
+ export interface Hz15 extends globalThis.EnumItem {
29152
+ Name: "Hz15";
29153
+ Value: 2;
29154
+ EnumType: typeof globalThis.Enum.StepFrequency;
29155
+ }
29156
+ export const Hz15: Hz15;
29157
+ /**
29158
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz10)
29159
+ */
29160
+ export interface Hz10 extends globalThis.EnumItem {
29161
+ Name: "Hz10";
29162
+ Value: 3;
29163
+ EnumType: typeof globalThis.Enum.StepFrequency;
29164
+ }
29165
+ export const Hz10: Hz10;
29166
+ /**
29167
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz5)
29168
+ */
29169
+ export interface Hz5 extends globalThis.EnumItem {
29170
+ Name: "Hz5";
29171
+ Value: 4;
29172
+ EnumType: typeof globalThis.Enum.StepFrequency;
29173
+ }
29174
+ export const Hz5: Hz5;
29175
+ /**
29176
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/StepFrequency#Hz1)
29177
+ */
29178
+ export interface Hz1 extends globalThis.EnumItem {
29179
+ Name: "Hz1";
29180
+ Value: 5;
29181
+ EnumType: typeof globalThis.Enum.StepFrequency;
29182
+ }
29183
+ export const Hz1: Hz1;
29184
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.StepFrequency>;
29185
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.StepFrequency | undefined;
29186
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.StepFrequency | undefined;
29187
+ }
29188
+ export type StepFrequency = StepFrequency.Hz60 | StepFrequency.Hz30 | StepFrequency.Hz15 | StepFrequency.Hz10 | StepFrequency.Hz5 | StepFrequency.Hz1;
28942
29189
  /**
28943
29190
  * Determines how content is streamed away from Players.
28944
29191
  *
@@ -35801,6 +36048,53 @@ declare namespace Enum {
35801
36048
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VideoError | undefined;
35802
36049
  }
35803
36050
  export type VideoError = VideoError.Ok | VideoError.Eof | VideoError.EAgain | VideoError.BadParameter | VideoError.AllocFailed | VideoError.CodecInitFailed | VideoError.CodecCloseFailed | VideoError.DecodeFailed | VideoError.ParsingFailed | VideoError.Unsupported | VideoError.Generic | VideoError.DownloadFailed | VideoError.StreamNotFound | VideoError.EncodeFailed | VideoError.CreateFailed | VideoError.NoPermission | VideoError.NoService | VideoError.ReleaseFailed | VideoError.Unknown;
36051
+ /**
36052
+ * The size of textures produced by `VideoSampler`.
36053
+ *
36054
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize)
36055
+ */
36056
+ export namespace VideoSampleSize {
36057
+ /**
36058
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize#Small)
36059
+ */
36060
+ export interface Small extends globalThis.EnumItem {
36061
+ Name: "Small";
36062
+ Value: 0;
36063
+ EnumType: typeof globalThis.Enum.VideoSampleSize;
36064
+ }
36065
+ export const Small: Small;
36066
+ /**
36067
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize#Medium)
36068
+ */
36069
+ export interface Medium extends globalThis.EnumItem {
36070
+ Name: "Medium";
36071
+ Value: 1;
36072
+ EnumType: typeof globalThis.Enum.VideoSampleSize;
36073
+ }
36074
+ export const Medium: Medium;
36075
+ /**
36076
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize#Large)
36077
+ */
36078
+ export interface Large extends globalThis.EnumItem {
36079
+ Name: "Large";
36080
+ Value: 2;
36081
+ EnumType: typeof globalThis.Enum.VideoSampleSize;
36082
+ }
36083
+ export const Large: Large;
36084
+ /**
36085
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VideoSampleSize#Full)
36086
+ */
36087
+ export interface Full extends globalThis.EnumItem {
36088
+ Name: "Full";
36089
+ Value: 3;
36090
+ EnumType: typeof globalThis.Enum.VideoSampleSize;
36091
+ }
36092
+ export const Full: Full;
36093
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VideoSampleSize>;
36094
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VideoSampleSize | undefined;
36095
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VideoSampleSize | undefined;
36096
+ }
36097
+ export type VideoSampleSize = VideoSampleSize.Small | VideoSampleSize.Medium | VideoSampleSize.Large | VideoSampleSize.Full;
35804
36098
  /**
35805
36099
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ViewMode)
35806
36100
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.888",
3
+ "version": "1.0.890",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },