@rbxts/types 1.0.881 → 1.0.883

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.
@@ -897,9 +897,8 @@ interface ConfigSnapshot extends RBXObject {
897
897
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigSnapshot#GetValue)
898
898
  * @param this
899
899
  * @param key
900
- * @param defaultValue
901
900
  */
902
- GetValue(this: ConfigSnapshot, key: string, defaultValue: unknown): unknown;
901
+ GetValue(this: ConfigSnapshot, key: string): unknown;
903
902
  /**
904
903
  * - **ThreadSafety**: Unsafe
905
904
  *
@@ -2361,6 +2360,12 @@ interface Instance extends RBXObject {
2361
2360
  * @returns The full name of the `Instance`.
2362
2361
  */
2363
2362
  GetFullName(this: Instance): string;
2363
+ /**
2364
+ * - **ThreadSafety**: Unsafe
2365
+ *
2366
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetPredictionMode)
2367
+ */
2368
+ GetPredictionMode(this: Instance): Enum.PredictionMode;
2364
2369
  /**
2365
2370
  * Returns the styled or explicitly modified value of the specified property, or else the default property value if it hasn't been styled/modified.
2366
2371
  *
@@ -4298,7 +4303,7 @@ interface Atmosphere extends Instance {
4298
4303
  Offset: number;
4299
4304
  }
4300
4305
  /**
4301
- * Defines a point and orientation relative to a parent `BasePart`, `Bone`, or another `Attachment`.
4306
+ * Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
4302
4307
  *
4303
4308
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment)
4304
4309
  */
@@ -4443,7 +4448,7 @@ interface Attachment extends Instance {
4443
4448
  * - **Tags**:
4444
4449
  *
4445
4450
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment#GetAxis)
4446
- * @param this Defines a point and orientation relative to a parent `BasePart`, `Bone`, or another `Attachment`.
4451
+ * @param this Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
4447
4452
  *
4448
4453
  * @deprecated Axis
4449
4454
  */
@@ -4454,7 +4459,7 @@ interface Attachment extends Instance {
4454
4459
  * - **ThreadSafety**: Unsafe
4455
4460
  *
4456
4461
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment#GetConstraints)
4457
- * @param this Defines a point and orientation relative to a parent `BasePart`, `Bone`, or another `Attachment`.
4462
+ * @param this Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
4458
4463
  */
4459
4464
  GetConstraints(this: Attachment): Array<Instance>;
4460
4465
  /**
@@ -4466,7 +4471,7 @@ interface Attachment extends Instance {
4466
4471
  * - **Tags**:
4467
4472
  *
4468
4473
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment#GetSecondaryAxis)
4469
- * @param this Defines a point and orientation relative to a parent `BasePart`, `Bone`, or another `Attachment`.
4474
+ * @param this Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
4470
4475
  *
4471
4476
  * @deprecated SecondaryAxis
4472
4477
  */
@@ -4480,7 +4485,7 @@ interface Attachment extends Instance {
4480
4485
  * - **Tags**:
4481
4486
  *
4482
4487
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment#SetAxis)
4483
- * @param this Defines a point and orientation relative to a parent `BasePart`, `Bone`, or another `Attachment`.
4488
+ * @param this Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
4484
4489
  * @param axis
4485
4490
  *
4486
4491
  * @deprecated Axis
@@ -4495,7 +4500,7 @@ interface Attachment extends Instance {
4495
4500
  * - **Tags**:
4496
4501
  *
4497
4502
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment#SetSecondaryAxis)
4498
- * @param this Defines a point and orientation relative to a parent `BasePart`, `Bone`, or another `Attachment`.
4503
+ * @param this Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
4499
4504
  * @param axis
4500
4505
  *
4501
4506
  * @deprecated SecondaryAxis
@@ -7287,17 +7292,27 @@ interface AvatarCreationService extends Instance {
7287
7292
  */
7288
7293
  AutoSetupAvatarAsync(this: AvatarCreationService, player: Player, model: Model, progressCallback?: Callback): string;
7289
7294
  /**
7295
+ * Creates a 2D avatar preview and returns a previewId.
7296
+ *
7290
7297
  * - **ThreadSafety**: Unsafe
7291
7298
  * - **Tags**: Yields
7292
7299
  *
7293
7300
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GenerateAvatar2DPreviewAsync)
7301
+ * @param this A service to support developer avatar creators.
7302
+ * @param avatarGeneration2dPreviewParams A table of arguments for 2D preview generation. Type: `avatarGeneration2dPreviewParams: {SessionId: string, FileId: string, TextPrompt: string?}`
7303
+ * @returns A string previewId
7294
7304
  */
7295
7305
  GenerateAvatar2DPreviewAsync(this: AvatarCreationService, avatarGeneration2dPreviewParams: object): string;
7296
7306
  /**
7307
+ * Generates an avatar and returns a generationId.
7308
+ *
7297
7309
  * - **ThreadSafety**: Unsafe
7298
7310
  * - **Tags**: Yields
7299
7311
  *
7300
7312
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GenerateAvatarAsync)
7313
+ * @param this A service to support developer avatar creators.
7314
+ * @param avatarGenerationParams A table of arguments for generating an avatar. Type: `avatarGenerationParams: {SessionId: string, PreviewId: string}`
7315
+ * @returns A string generationId.
7301
7316
  */
7302
7317
  GenerateAvatarAsync(this: AvatarCreationService, avatarGenerationParams: object): string;
7303
7318
  /**
@@ -7313,10 +7328,15 @@ interface AvatarCreationService extends Instance {
7313
7328
  */
7314
7329
  GetBatchTokenDetailsAsync(this: AvatarCreationService, tokenIds: Array<unknown>): Array<unknown>;
7315
7330
  /**
7331
+ * Load an AvatarGeneration 2D preview on the client from a previewId.
7332
+ *
7316
7333
  * - **ThreadSafety**: Unsafe
7317
7334
  * - **Tags**: Yields
7318
7335
  *
7319
7336
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#LoadAvatar2DPreviewAsync)
7337
+ * @param this A service to support developer avatar creators.
7338
+ * @param previewId Load the preview generated from `GenerateAvatar2DPreviewAsync()`.
7339
+ * @returns An `EditableImage` containing the preview image.
7320
7340
  */
7321
7341
  LoadAvatar2DPreviewAsync(this: AvatarCreationService, previewId: string): EditableImage;
7322
7342
  /**
@@ -7342,6 +7362,13 @@ interface AvatarCreationService extends Instance {
7342
7362
  * @param humanoidModel The `Model` containing `MeshPart` children with `WrapDeformer` instances that require HSR data updating for preview.
7343
7363
  */
7344
7364
  PrepareAvatarForPreviewAsync(this: AvatarCreationService, humanoidModel: Model): void;
7365
+ /**
7366
+ * - **ThreadSafety**: Unsafe
7367
+ * - **Tags**: Yields
7368
+ *
7369
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#PromptCreateAvatarAssetAsync)
7370
+ */
7371
+ PromptCreateAvatarAssetAsync(this: AvatarCreationService, tokenId: string, player: Player, assetInstance: Instance, assetType: CastsToEnum<Enum.AvatarAssetType>): unknown;
7345
7372
  /**
7346
7373
  * Prompts a `Player` to purchase and create an avatar from a `HumanoidDescription`.
7347
7374
  *
@@ -7359,17 +7386,28 @@ interface AvatarCreationService extends Instance {
7359
7386
  */
7360
7387
  PromptCreateAvatarAsync(this: AvatarCreationService, tokenId: string, player: Player, humanoidDescription: HumanoidDescription): unknown;
7361
7388
  /**
7389
+ * Prompt the `Player` to take a selfie and return the FileId.
7390
+ *
7362
7391
  * - **ThreadSafety**: Unsafe
7363
7392
  * - **Tags**: Yields
7364
7393
  *
7365
7394
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#PromptSelectAvatarGenerationImageAsync)
7395
+ * @param this A service to support developer avatar creators.
7396
+ * @param player The `Player` to prompt for taking a selfie.
7397
+ * @returns A string FileId of the selfie.
7366
7398
  */
7367
7399
  PromptSelectAvatarGenerationImageAsync(this: AvatarCreationService, player: Player): string;
7368
7400
  /**
7401
+ * Request an AvatarGeneration session for a `Player`.
7402
+ *
7369
7403
  * - **ThreadSafety**: Unsafe
7370
7404
  * - **Tags**: Yields
7371
7405
  *
7372
7406
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#RequestAvatarGenerationSessionAsync)
7407
+ * @param this A service to support developer avatar creators.
7408
+ * @param player The `Player` to request an AvatarGeneration session for.
7409
+ * @param callback Callback function that is invoked with a SessionInfo table, with information about the session. Type: `(SessionInfo: { SessionId: string, Allowed2DGenerations: number, Allowed3DGenerations: number, SessionTime: number }) -> ()`
7410
+ * @returns A tuple containing a `RBXScriptConnection` that can be used to cancel the session request and the estimated wait time in seconds.
7373
7411
  */
7374
7412
  RequestAvatarGenerationSessionAsync(this: AvatarCreationService, player: Player, callback: Callback): unknown;
7375
7413
  /**
@@ -7416,6 +7454,12 @@ interface AvatarCreationService extends Instance {
7416
7454
  * - An optional table of strings. This includes failure reasons if validation was unsuccessful; otherwise `nil` if validation was successful.
7417
7455
  */
7418
7456
  ValidateUGCFullBodyAsync(this: AvatarCreationService, player: Player, humanoidDescription: HumanoidDescription): unknown;
7457
+ /**
7458
+ * - **ThreadSafety**: Unsafe
7459
+ *
7460
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AvatarAssetModerationCompleted)
7461
+ */
7462
+ readonly AvatarAssetModerationCompleted: RBXScriptSignal<(assetId: number, moderationStatus: Enum.ModerationStatus) => void>;
7419
7463
  /**
7420
7464
  * Fires when an in-experience-created avatar's moderation status has been updated from pending.
7421
7465
  *
@@ -21278,6 +21322,12 @@ interface HapticEffect extends Instance {
21278
21322
  * @param this
21279
21323
  */
21280
21324
  Stop(this: HapticEffect): void;
21325
+ /**
21326
+ * - **ThreadSafety**: Unsafe
21327
+ *
21328
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Ended)
21329
+ */
21330
+ readonly Ended: RBXScriptSignal<() => void>;
21281
21331
  }
21282
21332
  /**
21283
21333
  * Provides haptic feedback to controllers and devices.
@@ -25477,6 +25527,14 @@ interface Lighting extends Instance {
25477
25527
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Lighting#GlobalShadows)
25478
25528
  */
25479
25529
  GlobalShadows: boolean;
25530
+ /**
25531
+ * The artistic intent behind lighting in the experience.
25532
+ *
25533
+ * - **ThreadSafety**: ReadSafe
25534
+ *
25535
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Lighting#LightingStyle)
25536
+ */
25537
+ get LightingStyle(): Enum.LightingStyle;
25480
25538
  /**
25481
25539
  * The lighting hue applied to outdoor areas.
25482
25540
  *
@@ -25498,6 +25556,14 @@ interface Lighting extends Instance {
25498
25556
  * @deprecated
25499
25557
  */
25500
25558
  Outlines: boolean;
25559
+ /**
25560
+ * Indicates whether you prefer lighting/shading quality or view distance to scale down first.
25561
+ *
25562
+ * - **ThreadSafety**: ReadSafe
25563
+ *
25564
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Lighting#PrioritizeLightingQuality)
25565
+ */
25566
+ get PrioritizeLightingQuality(): boolean;
25501
25567
  /**
25502
25568
  * **Deprecated:** This item is deprecated and has no current functionality. Do not use it for new work.
25503
25569
  *
@@ -26890,6 +26956,18 @@ interface MaterialVariant extends Instance {
26890
26956
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#CustomPhysicalProperties)
26891
26957
  */
26892
26958
  CustomPhysicalProperties: PhysicalProperties;
26959
+ /**
26960
+ * - **ThreadSafety**: ReadSafe
26961
+ *
26962
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#EmissiveStrength)
26963
+ */
26964
+ EmissiveStrength: number;
26965
+ /**
26966
+ * - **ThreadSafety**: ReadSafe
26967
+ *
26968
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#EmissiveTint)
26969
+ */
26970
+ EmissiveTint: Color3;
26893
26971
  /**
26894
26972
  * Determines texture tiling method.
26895
26973
  *
@@ -27793,7 +27871,7 @@ interface OperationGraph extends Instance {
27793
27871
  readonly _nominal_OperationGraph: unique symbol;
27794
27872
  }
27795
27873
  /**
27796
- * Abstract class for all objects that have a physical location in the world, specifically `BaseParts` and `Models`.
27874
+ * Abstract class for all objects that have a physical location in the world.
27797
27875
  *
27798
27876
  * - **Tags**: NotCreatable, NotBrowsable
27799
27877
  *
@@ -27814,7 +27892,7 @@ interface PVInstance extends Instance {
27814
27892
  * - **ThreadSafety**: Safe
27815
27893
  *
27816
27894
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PVInstance#GetPivot)
27817
- * @param this Abstract class for all objects that have a physical location in the world, specifically `BaseParts` and `Models`.
27895
+ * @param this Abstract class for all objects that have a physical location in the world.
27818
27896
  */
27819
27897
  GetPivot(this: PVInstance): CFrame;
27820
27898
  /**
@@ -27823,7 +27901,7 @@ interface PVInstance extends Instance {
27823
27901
  * - **ThreadSafety**: Unsafe
27824
27902
  *
27825
27903
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PVInstance#PivotTo)
27826
- * @param this Abstract class for all objects that have a physical location in the world, specifically `BaseParts` and `Models`.
27904
+ * @param this Abstract class for all objects that have a physical location in the world.
27827
27905
  * @param targetCFrame The `CFrame` that the `PVInstance` pivot should equal after moving it.
27828
27906
  */
27829
27907
  PivotTo(this: PVInstance, targetCFrame: CFrame): void;
@@ -28688,6 +28766,8 @@ interface BasePart extends PVInstance {
28688
28766
  */
28689
28767
  GetRenderCFrame(this: BasePart): CFrame;
28690
28768
  /**
28769
+ * **Deprecated:**
28770
+ *
28691
28771
  * Returns the base part of an assembly of parts.
28692
28772
  *
28693
28773
  * - **ThreadSafety**: Safe
@@ -31949,6 +32029,18 @@ interface ParticleEmitter extends Instance {
31949
32029
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ParticleEmitter#FlipbookMode)
31950
32030
  */
31951
32031
  FlipbookMode: Enum.ParticleFlipbookMode;
32032
+ /**
32033
+ * - **ThreadSafety**: ReadSafe
32034
+ *
32035
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ParticleEmitter#FlipbookSizeX)
32036
+ */
32037
+ FlipbookSizeX: number;
32038
+ /**
32039
+ * - **ThreadSafety**: ReadSafe
32040
+ *
32041
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ParticleEmitter#FlipbookSizeY)
32042
+ */
32043
+ FlipbookSizeY: number;
31952
32044
  /**
31953
32045
  * Determines whether the animation starts at a random frame chosen per particle instead of always starting at frame zero.
31954
32046
  *
@@ -38168,6 +38260,12 @@ interface SoundService extends Instance {
38168
38260
  * @deprecated
38169
38261
  */
38170
38262
  readonly _nominal_SoundService: unique symbol;
38263
+ /**
38264
+ * - **ThreadSafety**: ReadSafe
38265
+ *
38266
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SoundService#AcousticSimulationEnabled)
38267
+ */
38268
+ AcousticSimulationEnabled: boolean;
38171
38269
  /**
38172
38270
  * The ambient sound environment preset used by `SoundService`.
38173
38271
  *
@@ -39456,6 +39554,24 @@ interface SurfaceAppearance extends Instance {
39456
39554
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#ColorMapContent)
39457
39555
  */
39458
39556
  get ColorMapContent(): Content;
39557
+ /**
39558
+ * - **ThreadSafety**: ReadSafe
39559
+ *
39560
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveMaskContent)
39561
+ */
39562
+ get EmissiveMaskContent(): Content;
39563
+ /**
39564
+ * - **ThreadSafety**: ReadSafe
39565
+ *
39566
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveStrength)
39567
+ */
39568
+ EmissiveStrength: number;
39569
+ /**
39570
+ * - **ThreadSafety**: ReadSafe
39571
+ *
39572
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveTint)
39573
+ */
39574
+ EmissiveTint: Color3;
39459
39575
  /**
39460
39576
  * - **ThreadSafety**: ReadSafe
39461
39577
  * - **Tags**: Hidden
@@ -40030,6 +40146,18 @@ interface TerrainDetail extends Instance {
40030
40146
  * @deprecated
40031
40147
  */
40032
40148
  readonly _nominal_TerrainDetail: unique symbol;
40149
+ /**
40150
+ * - **ThreadSafety**: ReadSafe
40151
+ *
40152
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#EmissiveStrength)
40153
+ */
40154
+ EmissiveStrength: number;
40155
+ /**
40156
+ * - **ThreadSafety**: ReadSafe
40157
+ *
40158
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#EmissiveTint)
40159
+ */
40160
+ EmissiveTint: Color3;
40033
40161
  /**
40034
40162
  * The face this TerrainDetail overrides.
40035
40163
  *
@@ -41623,7 +41751,7 @@ interface TextGenerator extends Instance {
41623
41751
  */
41624
41752
  readonly _nominal_TextGenerator: unique symbol;
41625
41753
  /**
41626
- * Sets a fixed seed for the random number generator, allowing reproducible responses in cases where the same input parameters are used across multiple requests.
41754
+ * Sets a fixed seed for the random number generator, allowing reproducible responses in cases where the same input parameters are used across multiple requests.
41627
41755
  *
41628
41756
  * - **ThreadSafety**: ReadSafe
41629
41757
  *
@@ -41662,7 +41790,7 @@ interface TextGenerator extends Instance {
41662
41790
  *
41663
41791
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextGenerator#GenerateTextAsync)
41664
41792
  * @param this Gives access to a large language model for text generation.
41665
- * @param request A dictionary containing optional parameters for the text generation request. The currently supported parameters are `UserPrompt`, `ContextToken`, and `MaxTokens`.
41793
+ * @param request A dictionary containing optional parameters for the text generation request. The currently supported parameters are `UserPrompt`, `ContextToken`, and `MaxTokens`.
41666
41794
  * @returns A dictionary containing the LLM's generated response.
41667
41795
  */
41668
41796
  GenerateTextAsync(this: TextGenerator, request: object): object;
@@ -45847,6 +45975,24 @@ interface WrapTextureTransfer extends Instance {
45847
45975
  * @deprecated
45848
45976
  */
45849
45977
  readonly _nominal_WrapTextureTransfer: unique symbol;
45978
+ /**
45979
+ * - **ThreadSafety**: ReadSafe
45980
+ *
45981
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer#ReferenceCageMeshContent)
45982
+ */
45983
+ ReferenceCageMeshContent: Content;
45984
+ /**
45985
+ * - **ThreadSafety**: ReadSafe
45986
+ *
45987
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer#UVMaxBound)
45988
+ */
45989
+ UVMaxBound: Vector2;
45990
+ /**
45991
+ * - **ThreadSafety**: ReadSafe
45992
+ *
45993
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapTextureTransfer#UVMinBound)
45994
+ */
45995
+ UVMinBound: Vector2;
45850
45996
  }
45851
45997
  /**
45852
45998
  * - **Tags**: NotCreatable, NotReplicated
@@ -1506,7 +1506,7 @@ interface Atmosphere extends Instance {
1506
1506
  readonly _nominal_Atmosphere: unique symbol;
1507
1507
  }
1508
1508
  /**
1509
- * Defines a point and orientation relative to a parent `BasePart`, `Bone`, or another `Attachment`.
1509
+ * Defines a point and orientation relative to an ancestor `PVInstance`, `Bone`, or another `Attachment`.
1510
1510
  *
1511
1511
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Attachment)
1512
1512
  */
@@ -8003,6 +8003,12 @@ interface MaterialVariant extends Instance {
8003
8003
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#ColorMapContent)
8004
8004
  */
8005
8005
  ColorMapContent: Content;
8006
+ /**
8007
+ * - **ThreadSafety**: ReadSafe
8008
+ *
8009
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#EmissiveMaskContent)
8010
+ */
8011
+ EmissiveMaskContent: Content;
8006
8012
  /**
8007
8013
  * Determines which parts of the surface are metal and are non-metal.
8008
8014
  *
@@ -8581,7 +8587,7 @@ interface OperationGraph extends Instance {
8581
8587
  readonly _nominal_OperationGraph: unique symbol;
8582
8588
  }
8583
8589
  /**
8584
- * Abstract class for all objects that have a physical location in the world, specifically `BaseParts` and `Models`.
8590
+ * Abstract class for all objects that have a physical location in the world.
8585
8591
  *
8586
8592
  * - **Tags**: NotCreatable, NotBrowsable
8587
8593
  *
@@ -10145,14 +10151,19 @@ interface Plugin extends Instance {
10145
10151
  */
10146
10152
  Negate(this: Plugin, objects: Array<Instance>): Array<Instance>;
10147
10153
  /**
10154
+ * **Deprecated:**
10155
+ *
10148
10156
  * Used to open the given script instance in an editor window, in Roblox studio, at the given line. If no line is given as an argument it will default to 1.
10149
10157
  *
10150
10158
  * - **ThreadSafety**: Unsafe
10159
+ * - **Tags**:
10151
10160
  *
10152
10161
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plugin#OpenScript)
10153
10162
  * @param this
10154
10163
  * @param script
10155
10164
  * @param lineNumber
10165
+ *
10166
+ * @deprecated
10156
10167
  */
10157
10168
  OpenScript(this: Plugin, script: LuaSourceContainer, lineNumber?: number): void;
10158
10169
  /**
@@ -13310,6 +13321,12 @@ interface SurfaceAppearance extends Instance {
13310
13321
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#ColorMapContent)
13311
13322
  */
13312
13323
  set ColorMapContent(value: Content);
13324
+ /**
13325
+ * - **ThreadSafety**: ReadSafe
13326
+ *
13327
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#EmissiveMaskContent)
13328
+ */
13329
+ set EmissiveMaskContent(value: Content);
13313
13330
  /**
13314
13331
  * Determines which parts of the surface are metal or non-metal.
13315
13332
  *
@@ -13589,6 +13606,12 @@ interface TerrainDetail extends Instance {
13589
13606
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#ColorMapContent)
13590
13607
  */
13591
13608
  ColorMapContent: Content;
13609
+ /**
13610
+ * - **ThreadSafety**: ReadSafe
13611
+ *
13612
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainDetail#EmissiveMaskContent)
13613
+ */
13614
+ EmissiveMaskContent: Content;
13592
13615
  /**
13593
13616
  * Determines which parts of the surface are metal and are non-metal.
13594
13617
  *
@@ -2149,11 +2149,20 @@ declare namespace Enum {
2149
2149
  EnumType: typeof globalThis.Enum.AppUpdateStatus;
2150
2150
  }
2151
2151
  export const AvailableBoundChannel: AvailableBoundChannel;
2152
+ /**
2153
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AppUpdateStatus#AvailableBetaProgram)
2154
+ */
2155
+ export interface AvailableBetaProgram extends globalThis.EnumItem {
2156
+ Name: "AvailableBetaProgram";
2157
+ Value: 6;
2158
+ EnumType: typeof globalThis.Enum.AppUpdateStatus;
2159
+ }
2160
+ export const AvailableBetaProgram: AvailableBetaProgram;
2152
2161
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AppUpdateStatus>;
2153
2162
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AppUpdateStatus | undefined;
2154
2163
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AppUpdateStatus | undefined;
2155
2164
  }
2156
- export type AppUpdateStatus = AppUpdateStatus.Unknown | AppUpdateStatus.NotSupported | AppUpdateStatus.Failed | AppUpdateStatus.NotAvailable | AppUpdateStatus.Available | AppUpdateStatus.AvailableBoundChannel;
2165
+ export type AppUpdateStatus = AppUpdateStatus.Unknown | AppUpdateStatus.NotSupported | AppUpdateStatus.Failed | AppUpdateStatus.NotAvailable | AppUpdateStatus.Available | AppUpdateStatus.AvailableBoundChannel | AppUpdateStatus.AvailableBetaProgram;
2157
2166
  /**
2158
2167
  * Used by `UIStroke.ApplyStrokeMode` to determine where to apply the stroke.
2159
2168
  *
@@ -2770,24 +2779,6 @@ declare namespace Enum {
2770
2779
  EnumType: typeof globalThis.Enum.AssetType;
2771
2780
  }
2772
2781
  export const PoseAnimation: PoseAnimation;
2773
- /**
2774
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EarAccessory)
2775
- */
2776
- export interface EarAccessory extends globalThis.EnumItem {
2777
- Name: "EarAccessory";
2778
- Value: 57;
2779
- EnumType: typeof globalThis.Enum.AssetType;
2780
- }
2781
- export const EarAccessory: EarAccessory;
2782
- /**
2783
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EyeAccessory)
2784
- */
2785
- export interface EyeAccessory extends globalThis.EnumItem {
2786
- Name: "EyeAccessory";
2787
- Value: 58;
2788
- EnumType: typeof globalThis.Enum.AssetType;
2789
- }
2790
- export const EyeAccessory: EyeAccessory;
2791
2782
  /**
2792
2783
  * The asset is an emote animation.
2793
2784
  *
@@ -2940,11 +2931,29 @@ declare namespace Enum {
2940
2931
  EnumType: typeof globalThis.Enum.AssetType;
2941
2932
  }
2942
2933
  export const DynamicHead: DynamicHead;
2934
+ /**
2935
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EarAccessory)
2936
+ */
2937
+ export interface EarAccessory extends globalThis.EnumItem {
2938
+ Name: "EarAccessory";
2939
+ Value: 57;
2940
+ EnumType: typeof globalThis.Enum.AssetType;
2941
+ }
2942
+ export const EarAccessory: EarAccessory;
2943
+ /**
2944
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AssetType#EyeAccessory)
2945
+ */
2946
+ export interface EyeAccessory extends globalThis.EnumItem {
2947
+ Name: "EyeAccessory";
2948
+ Value: 58;
2949
+ EnumType: typeof globalThis.Enum.AssetType;
2950
+ }
2951
+ export const EyeAccessory: EyeAccessory;
2943
2952
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AssetType>;
2944
2953
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AssetType | undefined;
2945
2954
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AssetType | undefined;
2946
2955
  }
2947
- 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.EarAccessory | AssetType.EyeAccessory | 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;
2956
+ 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;
2948
2957
  /**
2949
2958
  * Determines the asset type verification mode.
2950
2959
  *
@@ -8011,6 +8020,15 @@ declare namespace Enum {
8011
8020
  EnumType: typeof globalThis.Enum.ConnectionError;
8012
8021
  }
8013
8022
  export const AndroidRootedKick: AndroidRootedKick;
8023
+ /**
8024
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#ScreentimeLockoutKick)
8025
+ */
8026
+ export interface ScreentimeLockoutKick extends globalThis.EnumItem {
8027
+ Name: "ScreentimeLockoutKick";
8028
+ Value: 307;
8029
+ EnumType: typeof globalThis.Enum.ConnectionError;
8030
+ }
8031
+ export const ScreentimeLockoutKick: ScreentimeLockoutKick;
8014
8032
  /**
8015
8033
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ConnectionError#PlacelaunchErrors)
8016
8034
  */
@@ -8240,7 +8258,7 @@ declare namespace Enum {
8240
8258
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ConnectionError | undefined;
8241
8259
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ConnectionError | undefined;
8242
8260
  }
8243
- export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | 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.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;
8261
+ export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | 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.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;
8244
8262
  /**
8245
8263
  * Used to determine the connection state of the client to the game server.
8246
8264
  *
@@ -22027,11 +22045,20 @@ declare namespace Enum {
22027
22045
  EnumType: typeof globalThis.Enum.ParticleFlipbookLayout;
22028
22046
  }
22029
22047
  export const Grid8x8: Grid8x8;
22048
+ /**
22049
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/ParticleFlipbookLayout#Custom)
22050
+ */
22051
+ export interface Custom extends globalThis.EnumItem {
22052
+ Name: "Custom";
22053
+ Value: 4;
22054
+ EnumType: typeof globalThis.Enum.ParticleFlipbookLayout;
22055
+ }
22056
+ export const Custom: Custom;
22030
22057
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ParticleFlipbookLayout>;
22031
22058
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.ParticleFlipbookLayout | undefined;
22032
22059
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ParticleFlipbookLayout | undefined;
22033
22060
  }
22034
- export type ParticleFlipbookLayout = ParticleFlipbookLayout.None | ParticleFlipbookLayout.Grid2x2 | ParticleFlipbookLayout.Grid4x4 | ParticleFlipbookLayout.Grid8x8;
22061
+ export type ParticleFlipbookLayout = ParticleFlipbookLayout.None | ParticleFlipbookLayout.Grid2x2 | ParticleFlipbookLayout.Grid4x4 | ParticleFlipbookLayout.Grid8x8 | ParticleFlipbookLayout.Custom;
22035
22062
  /**
22036
22063
  * Determines the type of the flipbook animation.
22037
22064
  *
@@ -22331,6 +22358,33 @@ declare namespace Enum {
22331
22358
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PathfindingUseImprovedSearch | undefined;
22332
22359
  }
22333
22360
  export type PathfindingUseImprovedSearch = PathfindingUseImprovedSearch.Default | PathfindingUseImprovedSearch.Disabled | PathfindingUseImprovedSearch.Enabled;
22361
+ /**
22362
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PeoplePageLayout)
22363
+ */
22364
+ export namespace PeoplePageLayout {
22365
+ /**
22366
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PeoplePageLayout#Card)
22367
+ */
22368
+ export interface Card extends globalThis.EnumItem {
22369
+ Name: "Card";
22370
+ Value: 0;
22371
+ EnumType: typeof globalThis.Enum.PeoplePageLayout;
22372
+ }
22373
+ export const Card: Card;
22374
+ /**
22375
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PeoplePageLayout#List)
22376
+ */
22377
+ export interface List extends globalThis.EnumItem {
22378
+ Name: "List";
22379
+ Value: 1;
22380
+ EnumType: typeof globalThis.Enum.PeoplePageLayout;
22381
+ }
22382
+ export const List: List;
22383
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PeoplePageLayout>;
22384
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PeoplePageLayout | undefined;
22385
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PeoplePageLayout | undefined;
22386
+ }
22387
+ export type PeoplePageLayout = PeoplePageLayout.Card | PeoplePageLayout.List;
22334
22388
  /**
22335
22389
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PerformanceOverlayMode)
22336
22390
  */
@@ -23266,14 +23320,14 @@ declare namespace Enum {
23266
23320
  */
23267
23321
  export namespace PredictionMode {
23268
23322
  /**
23269
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#Auto)
23323
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#Automatic)
23270
23324
  */
23271
- export interface Auto extends globalThis.EnumItem {
23272
- Name: "Auto";
23325
+ export interface Automatic extends globalThis.EnumItem {
23326
+ Name: "Automatic";
23273
23327
  Value: 0;
23274
23328
  EnumType: typeof globalThis.Enum.PredictionMode;
23275
23329
  }
23276
- export const Auto: Auto;
23330
+ export const Automatic: Automatic;
23277
23331
  /**
23278
23332
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PredictionMode#On)
23279
23333
  */
@@ -23296,7 +23350,7 @@ declare namespace Enum {
23296
23350
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PredictionMode | undefined;
23297
23351
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PredictionMode | undefined;
23298
23352
  }
23299
- export type PredictionMode = PredictionMode.Auto | PredictionMode.On | PredictionMode.Off;
23353
+ export type PredictionMode = PredictionMode.Automatic | PredictionMode.On | PredictionMode.Off;
23300
23354
  /**
23301
23355
  * This enum is used with `UserInputService.PreferredInput` to indicate the primary input type a player is likely using.
23302
23356
  *
@@ -23741,11 +23795,47 @@ declare namespace Enum {
23741
23795
  EnumType: typeof globalThis.Enum.PromptCreateAssetResult;
23742
23796
  }
23743
23797
  export const UnknownFailure: UnknownFailure;
23798
+ /**
23799
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateAssetResult#UGCValidationFailed)
23800
+ */
23801
+ export interface UGCValidationFailed extends globalThis.EnumItem {
23802
+ Name: "UGCValidationFailed";
23803
+ Value: 7;
23804
+ EnumType: typeof globalThis.Enum.PromptCreateAssetResult;
23805
+ }
23806
+ export const UGCValidationFailed: UGCValidationFailed;
23807
+ /**
23808
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateAssetResult#ModeratedName)
23809
+ */
23810
+ export interface ModeratedName extends globalThis.EnumItem {
23811
+ Name: "ModeratedName";
23812
+ Value: 8;
23813
+ EnumType: typeof globalThis.Enum.PromptCreateAssetResult;
23814
+ }
23815
+ export const ModeratedName: ModeratedName;
23816
+ /**
23817
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateAssetResult#PurchaseFailure)
23818
+ */
23819
+ export interface PurchaseFailure extends globalThis.EnumItem {
23820
+ Name: "PurchaseFailure";
23821
+ Value: 9;
23822
+ EnumType: typeof globalThis.Enum.PromptCreateAssetResult;
23823
+ }
23824
+ export const PurchaseFailure: PurchaseFailure;
23825
+ /**
23826
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateAssetResult#TokenInvalid)
23827
+ */
23828
+ export interface TokenInvalid extends globalThis.EnumItem {
23829
+ Name: "TokenInvalid";
23830
+ Value: 10;
23831
+ EnumType: typeof globalThis.Enum.PromptCreateAssetResult;
23832
+ }
23833
+ export const TokenInvalid: TokenInvalid;
23744
23834
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.PromptCreateAssetResult>;
23745
23835
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.PromptCreateAssetResult | undefined;
23746
23836
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.PromptCreateAssetResult | undefined;
23747
23837
  }
23748
- export type PromptCreateAssetResult = PromptCreateAssetResult.Success | PromptCreateAssetResult.PermissionDenied | PromptCreateAssetResult.Timeout | PromptCreateAssetResult.UploadFailed | PromptCreateAssetResult.NoUserInput | PromptCreateAssetResult.UnknownFailure;
23838
+ export type PromptCreateAssetResult = PromptCreateAssetResult.Success | PromptCreateAssetResult.PermissionDenied | PromptCreateAssetResult.Timeout | PromptCreateAssetResult.UploadFailed | PromptCreateAssetResult.NoUserInput | PromptCreateAssetResult.UnknownFailure | PromptCreateAssetResult.UGCValidationFailed | PromptCreateAssetResult.ModeratedName | PromptCreateAssetResult.PurchaseFailure | PromptCreateAssetResult.TokenInvalid;
23749
23839
  /**
23750
23840
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/PromptCreateAvatarResult)
23751
23841
  */
@@ -34496,6 +34586,96 @@ declare namespace Enum {
34496
34586
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VoiceChatState | undefined;
34497
34587
  }
34498
34588
  export type VoiceChatState = VoiceChatState.Idle | VoiceChatState.Joining | VoiceChatState.JoiningRetry | VoiceChatState.Joined | VoiceChatState.Leaving | VoiceChatState.Ended | VoiceChatState.Failed;
34589
+ /**
34590
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceClientLeaveReasons)
34591
+ */
34592
+ export namespace VoiceClientLeaveReasons {
34593
+ /**
34594
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceClientLeaveReasons#Unknown)
34595
+ */
34596
+ export interface Unknown extends globalThis.EnumItem {
34597
+ Name: "Unknown";
34598
+ Value: 0;
34599
+ EnumType: typeof globalThis.Enum.VoiceClientLeaveReasons;
34600
+ }
34601
+ export const Unknown: Unknown;
34602
+ /**
34603
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceClientLeaveReasons#ClientNetworkDisconnected)
34604
+ */
34605
+ export interface ClientNetworkDisconnected extends globalThis.EnumItem {
34606
+ Name: "ClientNetworkDisconnected";
34607
+ Value: 1;
34608
+ EnumType: typeof globalThis.Enum.VoiceClientLeaveReasons;
34609
+ }
34610
+ export const ClientNetworkDisconnected: ClientNetworkDisconnected;
34611
+ /**
34612
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceClientLeaveReasons#PlayerLeft)
34613
+ */
34614
+ export interface PlayerLeft extends globalThis.EnumItem {
34615
+ Name: "PlayerLeft";
34616
+ Value: 2;
34617
+ EnumType: typeof globalThis.Enum.VoiceClientLeaveReasons;
34618
+ }
34619
+ export const PlayerLeft: PlayerLeft;
34620
+ /**
34621
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceClientLeaveReasons#ClientShutdown)
34622
+ */
34623
+ export interface ClientShutdown extends globalThis.EnumItem {
34624
+ Name: "ClientShutdown";
34625
+ Value: 3;
34626
+ EnumType: typeof globalThis.Enum.VoiceClientLeaveReasons;
34627
+ }
34628
+ export const ClientShutdown: ClientShutdown;
34629
+ /**
34630
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceClientLeaveReasons#PublishFailed)
34631
+ */
34632
+ export interface PublishFailed extends globalThis.EnumItem {
34633
+ Name: "PublishFailed";
34634
+ Value: 4;
34635
+ EnumType: typeof globalThis.Enum.VoiceClientLeaveReasons;
34636
+ }
34637
+ export const PublishFailed: PublishFailed;
34638
+ /**
34639
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceClientLeaveReasons#RejoinReceived)
34640
+ */
34641
+ export interface RejoinReceived extends globalThis.EnumItem {
34642
+ Name: "RejoinReceived";
34643
+ Value: 5;
34644
+ EnumType: typeof globalThis.Enum.VoiceClientLeaveReasons;
34645
+ }
34646
+ export const RejoinReceived: RejoinReceived;
34647
+ /**
34648
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceClientLeaveReasons#VoiceReboot)
34649
+ */
34650
+ export interface VoiceReboot extends globalThis.EnumItem {
34651
+ Name: "VoiceReboot";
34652
+ Value: 6;
34653
+ EnumType: typeof globalThis.Enum.VoiceClientLeaveReasons;
34654
+ }
34655
+ export const VoiceReboot: VoiceReboot;
34656
+ /**
34657
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceClientLeaveReasons#ImguiDebugLeave)
34658
+ */
34659
+ export interface ImguiDebugLeave extends globalThis.EnumItem {
34660
+ Name: "ImguiDebugLeave";
34661
+ Value: 7;
34662
+ EnumType: typeof globalThis.Enum.VoiceClientLeaveReasons;
34663
+ }
34664
+ export const ImguiDebugLeave: ImguiDebugLeave;
34665
+ /**
34666
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceClientLeaveReasons#LuaInitiated)
34667
+ */
34668
+ export interface LuaInitiated extends globalThis.EnumItem {
34669
+ Name: "LuaInitiated";
34670
+ Value: 8;
34671
+ EnumType: typeof globalThis.Enum.VoiceClientLeaveReasons;
34672
+ }
34673
+ export const LuaInitiated: LuaInitiated;
34674
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.VoiceClientLeaveReasons>;
34675
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.VoiceClientLeaveReasons | undefined;
34676
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.VoiceClientLeaveReasons | undefined;
34677
+ }
34678
+ export type VoiceClientLeaveReasons = VoiceClientLeaveReasons.Unknown | VoiceClientLeaveReasons.ClientNetworkDisconnected | VoiceClientLeaveReasons.PlayerLeft | VoiceClientLeaveReasons.ClientShutdown | VoiceClientLeaveReasons.PublishFailed | VoiceClientLeaveReasons.RejoinReceived | VoiceClientLeaveReasons.VoiceReboot | VoiceClientLeaveReasons.ImguiDebugLeave | VoiceClientLeaveReasons.LuaInitiated;
34499
34679
  /**
34500
34680
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VoiceControlPath)
34501
34681
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.881",
3
+ "version": "1.0.883",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },