@rbxts/types 1.0.893 → 1.0.895

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.
@@ -19,6 +19,7 @@ interface Services {
19
19
  AssetDeliveryProxy: AssetDeliveryProxy;
20
20
  AssetImportService: AssetImportService;
21
21
  AssetManagerService: AssetManagerService;
22
+ AssetQualityService: AssetQualityService;
22
23
  AssetService: AssetService;
23
24
  AudioFocusService: AudioFocusService;
24
25
  AuroraScriptService: AuroraScriptService;
@@ -31,6 +32,7 @@ interface Services {
31
32
  BadgeService: BadgeService;
32
33
  BugReporterService: BugReporterService;
33
34
  BulkImportService: BulkImportService;
35
+ CacheableContentProvider: CacheableContentProvider;
34
36
  CalloutService: CalloutService;
35
37
  CaptureService: CaptureService;
36
38
  ChangeHistoryStreamingService: ChangeHistoryStreamingService;
@@ -324,6 +326,7 @@ interface CreatableInstances {
324
326
  Color3Value: Color3Value;
325
327
  ColorCorrectionEffect: ColorCorrectionEffect;
326
328
  ColorGradingEffect: ColorGradingEffect;
329
+ CompositeValueCurve: CompositeValueCurve;
327
330
  CompressorSoundEffect: CompressorSoundEffect;
328
331
  ConeHandleAdornment: ConeHandleAdornment;
329
332
  Configuration: Configuration;
@@ -397,6 +400,7 @@ interface CreatableInstances {
397
400
  LineHandleAdornment: LineHandleAdornment;
398
401
  LocalizationTable: LocalizationTable;
399
402
  LocalScript: LocalScript;
403
+ MakeupDescription: MakeupDescription;
400
404
  ManualGlue: ManualGlue;
401
405
  ManualWeld: ManualWeld;
402
406
  MarkerCurve: MarkerCurve;
@@ -731,7 +735,7 @@ interface Objects extends Instances {
731
735
  }
732
736
  // GENERATED ROBLOX INSTANCE CLASSES
733
737
  /**
734
- * Object is the base class for all classes in the Roblox class hierarchy.
738
+ * `Object` is the base class for all classes in the Roblox class hierarchy.
735
739
  *
736
740
  * - **Tags**: NotCreatable, NotReplicated
737
741
  *
@@ -761,7 +765,7 @@ interface RBXObject {
761
765
  * - **ThreadSafety**: Unsafe
762
766
  *
763
767
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Object#GetPropertyChangedSignal)
764
- * @param this Object is the base class for all classes in the Roblox class hierarchy.
768
+ * @param this `Object` is the base class for all classes in the Roblox class hierarchy.
765
769
  * @param property The property to connect to.
766
770
  * @returns A signal that fires whenever the property changes.
767
771
  */
@@ -773,13 +777,13 @@ interface RBXObject {
773
777
  * - **Tags**: CustomLuaState
774
778
  *
775
779
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Object#IsA)
776
- * @param this Object is the base class for all classes in the Roblox class hierarchy.
780
+ * @param this `Object` is the base class for all classes in the Roblox class hierarchy.
777
781
  * @param className The class against which the Object's class will be checked. Case-sensitive.
778
782
  * @returns Describes whether the Object's class matched or is a subclass of the given class.
779
783
  */
780
784
  IsA<T extends keyof Objects>(this: RBXObject, className: T): this is Objects[T];
781
785
  /**
782
- * Fired immediately after a property of the object changes, with some limitations.
786
+ * Fires immediately after a property of the object changes, with some limitations.
783
787
  *
784
788
  * - **ThreadSafety**: Unsafe
785
789
  *
@@ -4115,6 +4119,21 @@ interface AssetPatchSettings extends Instance {
4115
4119
  */
4116
4120
  PatchId: string;
4117
4121
  }
4122
+ /**
4123
+ * - **Tags**: NotCreatable, Service, NotReplicated
4124
+ *
4125
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetQualityService)
4126
+ */
4127
+ interface AssetQualityService extends Instance {
4128
+ /**
4129
+ * **DO NOT USE!**
4130
+ *
4131
+ * This field exists to force TypeScript to recognize this as a nominal type
4132
+ * @hidden
4133
+ * @deprecated
4134
+ */
4135
+ readonly _nominal_AssetQualityService: unique symbol;
4136
+ }
4118
4137
  /**
4119
4138
  * A non-replicated service that handles asset-related queries to the Roblox web API.
4120
4139
  *
@@ -10070,6 +10089,23 @@ interface BulkImportService extends Instance {
10070
10089
  */
10071
10090
  readonly _nominal_BulkImportService: unique symbol;
10072
10091
  }
10092
+ /**
10093
+ * A variant of the `ContentProvider` that caches assets that have already been received. This service is not used directly, but it is used by the services that inherit from it.
10094
+ *
10095
+ * - **Tags**: NotCreatable, Service, NotReplicated
10096
+ *
10097
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CacheableContentProvider)
10098
+ */
10099
+ interface CacheableContentProvider extends Instance {
10100
+ /**
10101
+ * **DO NOT USE!**
10102
+ *
10103
+ * This field exists to force TypeScript to recognize this as a nominal type
10104
+ * @hidden
10105
+ * @deprecated
10106
+ */
10107
+ readonly _nominal_CacheableContentProvider: unique symbol;
10108
+ }
10073
10109
  /**
10074
10110
  * - **Tags**: NotCreatable, Service
10075
10111
  *
@@ -11509,6 +11545,37 @@ interface CommerceService extends Instance {
11509
11545
  */
11510
11546
  readonly PromptCommerceProductPurchaseFinished: RBXScriptSignal<(user: Player, productId: string) => void>;
11511
11547
  }
11548
+ /**
11549
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CompositeValueCurve)
11550
+ */
11551
+ interface CompositeValueCurve extends Instance {
11552
+ /**
11553
+ * **DO NOT USE!**
11554
+ *
11555
+ * This field exists to force TypeScript to recognize this as a nominal type
11556
+ * @hidden
11557
+ * @deprecated
11558
+ */
11559
+ readonly _nominal_CompositeValueCurve: unique symbol;
11560
+ /**
11561
+ * - **ThreadSafety**: ReadSafe
11562
+ *
11563
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CompositeValueCurve#CurveType)
11564
+ */
11565
+ CurveType: Enum.CompositeValueCurveType;
11566
+ /**
11567
+ * - **ThreadSafety**: Unsafe
11568
+ *
11569
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CompositeValueCurve#GetComponentCurves)
11570
+ */
11571
+ GetComponentCurves(this: CompositeValueCurve): Array<Instance>;
11572
+ /**
11573
+ * - **ThreadSafety**: Unsafe
11574
+ *
11575
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CompositeValueCurve#GetValueAtTime)
11576
+ */
11577
+ GetValueAtTime(this: CompositeValueCurve, time: number): unknown;
11578
+ }
11512
11579
  /**
11513
11580
  * - **Tags**: NotCreatable, Service, NotReplicated
11514
11581
  *
@@ -23350,6 +23417,12 @@ interface HumanoidDescription extends Instance {
23350
23417
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidDescription#TorsoColor)
23351
23418
  */
23352
23419
  TorsoColor: Color3;
23420
+ /**
23421
+ * - **ThreadSafety**: ReadSafe
23422
+ *
23423
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidDescription#UseAvatarSettings)
23424
+ */
23425
+ UseAvatarSettings: boolean;
23353
23426
  /**
23354
23427
  * A comma-separated list of asset IDs that will be added as `Accessories` to a `Humanoid` rig when `applied`, usually those attached to its waist (such as belts).
23355
23428
  *
@@ -24673,6 +24746,12 @@ interface InputBinding extends Instance {
24673
24746
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Vector2Scale)
24674
24747
  */
24675
24748
  Vector2Scale: Vector2;
24749
+ /**
24750
+ * - **ThreadSafety**: ReadSafe
24751
+ *
24752
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Vector3Scale)
24753
+ */
24754
+ Vector3Scale: Vector3;
24676
24755
  }
24677
24756
  /**
24678
24757
  * Collection of actions which holds related actions and defines how they interact with other contexts/actions.
@@ -26918,6 +26997,49 @@ interface MLService extends Instance {
26918
26997
  */
26919
26998
  CreateSessionAsync(this: MLService, assetId: string): MLSession;
26920
26999
  }
27000
+ /**
27001
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
27002
+ */
27003
+ interface MakeupDescription extends Instance {
27004
+ /**
27005
+ * **DO NOT USE!**
27006
+ *
27007
+ * This field exists to force TypeScript to recognize this as a nominal type
27008
+ * @hidden
27009
+ * @deprecated
27010
+ */
27011
+ readonly _nominal_MakeupDescription: unique symbol;
27012
+ /**
27013
+ * - **ThreadSafety**: ReadSafe
27014
+ *
27015
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#AssetId)
27016
+ */
27017
+ AssetId: number;
27018
+ /**
27019
+ * - **ThreadSafety**: ReadSafe
27020
+ *
27021
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#Instance)
27022
+ */
27023
+ Instance: Instance | undefined;
27024
+ /**
27025
+ * - **ThreadSafety**: ReadSafe
27026
+ *
27027
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#MakeupType)
27028
+ */
27029
+ MakeupType: Enum.MakeupType;
27030
+ /**
27031
+ * - **ThreadSafety**: ReadSafe
27032
+ *
27033
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#Order)
27034
+ */
27035
+ Order: number;
27036
+ /**
27037
+ * - **ThreadSafety**: Unsafe
27038
+ *
27039
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#GetAppliedInstance)
27040
+ */
27041
+ GetAppliedInstance(this: MakeupDescription): Instance | undefined;
27042
+ }
26921
27043
  /**
26922
27044
  * Represents a list of strings markers in chronological order.
26923
27045
  *
@@ -35830,10 +35952,10 @@ interface RecommendationService extends Instance {
35830
35952
  * @param actionType The enum for the type of action.
35831
35953
  * @param itemId The item ID returned from registration and `GenerateItemListAsync`.
35832
35954
  * @param tracingId The tracing ID returned from the `GenerateItemListAsync` response. Each item has a `TracingId`.
35833
- * @param actionEventDetails A dictionary containing the following fields: - `Weight` — A number representing the weight of the action. Default is 1.
35834
- * - `DestinationPlaceId` — The ID of the place the user was sent to after the action. Used for `Play`.
35835
- * - `CommentText` — Any text associated with the action, such as a comment. Used for `Comment`.
35836
- * - `ReactionType` — A string describing the type of reaction, for example, "like" or "dislike". Used for `AddReaction` or `RemoveReaction`.
35955
+ * @param actionEventDetails A dictionary containing the following fields: - `Weight` — A number representing the weight of the action. Default is 1.
35956
+ * - `DestinationPlaceId` — The ID of the place the user was sent to after the action. Used for `Play`.
35957
+ * - `CommentText` — Any text associated with the action, such as a comment. Used for `Comment`.
35958
+ * - `ReactionType` — A string describing the type of reaction, for example, "like" or "dislike". Used for `AddReaction` or `RemoveReaction`.
35837
35959
  */
35838
35960
  LogActionEvent(this: RecommendationService, actionType: CastsToEnum<Enum.RecommendationActionType>, itemId: string, tracingId: string, actionEventDetails?: object): void;
35839
35961
  /**
@@ -35845,9 +35967,9 @@ interface RecommendationService extends Instance {
35845
35967
  * @param itemId The item ID returned from registration and `GenerateItemListAsync`.
35846
35968
  * @param tracingId The tracing ID returned from the `GenerateItemListAsync` response. Each item has a `TracingId`.
35847
35969
  * @param impressionEventDetails A dictionary containing the following fields: - `Duration` — The duration of the impression in seconds.
35848
- * - `Weight` — A number representing the weight of the impression. Default is 1.
35849
- * - `ItemPosition` — The position of the item in the recommendation list.
35850
- * - `DepartureIntent` — The `RecommendationDepartureIntent` indicating the user's intent when leaving a view. For example, `Positive` if the view is considered good.
35970
+ * - `Weight` — A number representing the weight of the impression. Default is 1.
35971
+ * - `ItemPosition` — The position of the item in the recommendation list.
35972
+ * - `DepartureIntent` — The `RecommendationDepartureIntent` indicating the user's intent when leaving a view. For example, `Positive` if the view is considered good.
35851
35973
  */
35852
35974
  LogImpressionEvent(this: RecommendationService, impressionType: CastsToEnum<Enum.RecommendationImpressionType>, itemId: string, tracingId: string, impressionEventDetails?: object): void;
35853
35975
  /**
@@ -35856,11 +35978,11 @@ interface RecommendationService extends Instance {
35856
35978
  *
35857
35979
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#GenerateItemListAsync)
35858
35980
  * @param this A service that provides an interface for you to manage and display personalized content recommendations.
35859
- * @param generateRecommendationItemListRequest A dictionary containing the following fields: - `ConfigName` — A unique ID for the specific configuration. This determines how the candidates are ranked.
35860
- * - `LocationId` — A developer-defined string that specifies the location where the recommendation is used, such as `"For_you"` or `"Lobby"`. This parameter will not affect the items returned, and it can help you track the performance of multiple recommendation features within your experience. Recommendation metrics for each individual location will be displayed in the Creator Hub. `LocationId` **must** be a string and cannot be `"Other"` or `"other"` as these values are reserved by the Creator Hub.
35981
+ * @param generateRecommendationItemListRequest A dictionary containing the following fields: - `ConfigName` — A unique ID for the specific configuration. This determines how the candidates are ranked.
35982
+ * - `LocationId` — A developer-defined string that specifies the location where the recommendation is used, such as `"For_you"` or `"Lobby"`. This parameter will not affect the items returned, and it can help you track the performance of multiple recommendation features within your experience. Recommendation metrics for each individual location will be displayed in the Creator Hub. `LocationId` **must** be a string and cannot be `"Other"` or `"other"` as these values are reserved by the Creator Hub.
35861
35983
  * - `PageSize` — The number of items returned for each page.
35862
- * - `BoostCustomTags` — A list of string tags. Any item with this tag will be boosted in ranking. Note: only supports boosting one tag now.
35863
- * - `CustomContexts` — A table of key-value pairs used to pass in additional context data for ranking. For example, `UserId` for a Server script.
35984
+ * - `BoostCustomTags` — A list of string tags. Any item with this tag will be boosted in ranking. Note: only supports boosting one tag now.
35985
+ * - `CustomContexts` — A table of key-value pairs used to pass in additional context data for ranking. For example, `UserId` for a Server script.
35864
35986
  */
35865
35987
  GenerateItemListAsync(this: RecommendationService, generateRecommendationItemListRequest: object): RecommendationPages;
35866
35988
  /**
@@ -35870,7 +35992,13 @@ interface RecommendationService extends Instance {
35870
35992
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#GetRecommendationItemAsync)
35871
35993
  * @param this A service that provides an interface for you to manage and display personalized content recommendations.
35872
35994
  * @param itemId The ID of the item to retrieve.
35873
- * @returns A dictionary representing the recommendation item with the following fields: - `ItemId` — The unique ID for the item. - `ReferenceId` — The developer-provided ID for the item. - `TracingId` — An ID for tracking recommendation sessions. This will be empty when fetching a single item directly. - `Creator` — A table containing the `CreatorId` and `CreatorType`. - `Attributes` — A list of content attributes associated with the item. - `CustomTags` — A list of custom string tags. - `Visibility` — An enum of type `RecommendationItemVisibility`.
35995
+ * @returns A dictionary representing the recommendation item with the following fields: - `ItemId` — The unique ID for the item.
35996
+ * - `ReferenceId` — The developer-provided ID for the item.
35997
+ * - `TracingId` — An ID for tracking recommendation sessions. This will be empty when fetching a single item directly.
35998
+ * - `Creator` — A table containing the `CreatorId` and `CreatorType`.
35999
+ * - `Attributes` — A list of content attributes associated with the item.
36000
+ * - `CustomTags` — A list of custom string tags.
36001
+ * - `Visibility` — An enum of type `RecommendationItemVisibility`.
35874
36002
  */
35875
36003
  GetRecommendationItemAsync(this: RecommendationService, itemId: string): object;
35876
36004
  /**
@@ -35880,12 +36008,12 @@ interface RecommendationService extends Instance {
35880
36008
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#RegisterItemAsync)
35881
36009
  * @param this A service that provides an interface for you to manage and display personalized content recommendations.
35882
36010
  * @param player The player who created the item.
35883
- * @param registerRecommendationItemsRequest A dictionary containing the following fields: - `ContentType` — The `RecommendationItemContentType` specifying the type of content. Type is defined in a generic way. For example, you can use `Static` for images, `Dynamic` for videos, and `Interactive` for 3D models that support interaction.
35884
- * - `ReferenceId` — The developer-defined string that uniquely identifies the item.
36011
+ * @param registerRecommendationItemsRequest A dictionary containing the following fields: - `ContentType` — The `RecommendationItemContentType` specifying the type of content. Type is defined in a generic way. For example, you can use `Static` for images, `Dynamic` for videos, and `Interactive` for 3D models that support interaction.
36012
+ * - `ReferenceId` — The developer-defined string that uniquely identifies the item.
35885
36013
  * - `Duration` — The duration of the content in seconds.
35886
- * - `Attributes` — The table of attributes for the item, such as `AssetId` or `Description`.
35887
- * - `CustomTags` — The list of string tags for filtering and boosting.
35888
- * - `Visibility` — The `RecommendationItemVisibility` enum that controls the item's visibility, such as `Public` or `Private`.
36014
+ * - `Attributes` — The table of attributes for the item, such as `AssetId` or `Description`.
36015
+ * - `CustomTags` — The list of string tags for filtering and boosting.
36016
+ * - `Visibility` — The `RecommendationItemVisibility` enum that controls the item's visibility, such as `Public` or `Private`.
35889
36017
  *
35890
36018
  *
35891
36019
  * @returns A table with only two fields: `ItemId` and `ReferenceId`.
@@ -35907,8 +36035,8 @@ interface RecommendationService extends Instance {
35907
36035
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RecommendationService#UpdateItemAsync)
35908
36036
  * @param this A service that provides an interface for you to manage and display personalized content recommendations.
35909
36037
  * @param updateRecommendationItemRequest A dictionary containing the following fields: - `ItemId` — The ID of the item to update.
35910
- * - `ReferenceId` — The new developer-defined string to identify the item.
35911
- * - `Creator` — The new creator for the item. Creator is a table containing two fields: `CreatorId: number` and `CreatorType: Enum.CreatorType`.
36038
+ * - `ReferenceId` — The new developer-defined string to identify the item.
36039
+ * - `Creator` — The new creator for the item. Creator is a table containing two fields: `CreatorId: number` and `CreatorType: Enum.CreatorType`.
35912
36040
  * - `Duration` — The new duration for the content in seconds.
35913
36041
  * - `Visibility` — The new visibility setting for the item.
35914
36042
  * - `Attributes` — The new table of attributes for the item.
@@ -35931,32 +36059,41 @@ interface ReflectionService extends Instance {
35931
36059
  */
35932
36060
  readonly _nominal_ReflectionService: unique symbol;
35933
36061
  /**
36062
+ * Returns information about a class when given its name, assuming that class is accessible.
36063
+ *
35934
36064
  * - **ThreadSafety**: Unsafe
35935
36065
  * - **Tags**: CustomLuaState
35936
36066
  *
35937
36067
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClass)
35938
36068
  * @param this
35939
- * @param className
35940
- * @param filter
36069
+ * @param className The name of the class for which you wish to retrieve information.
36070
+ * @param filter An optional filter to restrict or expand the set of classes that this method can return and change the method's behavior.
36071
+ * @returns A `ReflectedClass` dictionary with reflection information if the class exists; otherwise, `nil`.
35941
36072
  */
35942
36073
  GetClass(this: ReflectionService, className: string, filter?: object): object | undefined;
35943
36074
  /**
36075
+ * Returns a list of all classes accessible with filters applied.
36076
+ *
35944
36077
  * - **ThreadSafety**: Unsafe
35945
36078
  * - **Tags**: CustomLuaState
35946
36079
  *
35947
36080
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClasses)
35948
36081
  * @param this
35949
- * @param filter
36082
+ * @param filter An optional filter to restrict or expand the set of classes that this method can return and change the method's behavior.
36083
+ * @returns A list of `ReflectedClass` dictionaries with reflection information for each class that matches the filter criteria.
35950
36084
  */
35951
36085
  GetClasses(this: ReflectionService, filter?: object): Array<unknown>;
35952
36086
  /**
36087
+ * Returns a list of properties for a given class with filters applied.
36088
+ *
35953
36089
  * - **ThreadSafety**: Unsafe
35954
36090
  * - **Tags**: CustomLuaState
35955
36091
  *
35956
36092
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetPropertiesOfClass)
35957
36093
  * @param this
35958
- * @param className
35959
- * @param filter
36094
+ * @param className The name of the class for which you wish to retrieve properties.
36095
+ * @param filter An optional filter to restrict or expand the set of properties that this method can return and change the method's behavior.
36096
+ * @returns A list of `ReflectedProperty` dictionaries with reflection information for each property of the class that matches the filter criteria.
35960
36097
  */
35961
36098
  GetPropertiesOfClass(this: ReflectionService, className: string, filter?: object): Array<unknown>;
35962
36099
  }
@@ -37726,6 +37863,12 @@ interface Sky extends Instance {
37726
37863
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#MoonAngularSize)
37727
37864
  */
37728
37865
  MoonAngularSize: number;
37866
+ /**
37867
+ * - **ThreadSafety**: ReadSafe
37868
+ *
37869
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#MoonTextureContent)
37870
+ */
37871
+ MoonTextureContent: Content;
37729
37872
  /**
37730
37873
  * The texture of the moon while using this skybox.
37731
37874
  *
@@ -37734,6 +37877,12 @@ interface Sky extends Instance {
37734
37877
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#MoonTextureId)
37735
37878
  */
37736
37879
  MoonTextureId: ContentId;
37880
+ /**
37881
+ * - **ThreadSafety**: ReadSafe
37882
+ *
37883
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxBackContent)
37884
+ */
37885
+ SkyboxBackContent: Content;
37737
37886
  /**
37738
37887
  * The URL link to a picture for the back surface of the sky.
37739
37888
  *
@@ -37750,6 +37899,18 @@ interface Sky extends Instance {
37750
37899
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxDn)
37751
37900
  */
37752
37901
  SkyboxDn: ContentId;
37902
+ /**
37903
+ * - **ThreadSafety**: ReadSafe
37904
+ *
37905
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxDownContent)
37906
+ */
37907
+ SkyboxDownContent: Content;
37908
+ /**
37909
+ * - **ThreadSafety**: ReadSafe
37910
+ *
37911
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxFrontContent)
37912
+ */
37913
+ SkyboxFrontContent: Content;
37753
37914
  /**
37754
37915
  * Asset ID for the front surface of the skybox.
37755
37916
  *
@@ -37758,6 +37919,12 @@ interface Sky extends Instance {
37758
37919
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxFt)
37759
37920
  */
37760
37921
  SkyboxFt: ContentId;
37922
+ /**
37923
+ * - **ThreadSafety**: ReadSafe
37924
+ *
37925
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxLeftContent)
37926
+ */
37927
+ SkyboxLeftContent: Content;
37761
37928
  /**
37762
37929
  * Asset ID for the left surface of the skybox.
37763
37930
  *
@@ -37774,6 +37941,12 @@ interface Sky extends Instance {
37774
37941
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxOrientation)
37775
37942
  */
37776
37943
  SkyboxOrientation: Vector3;
37944
+ /**
37945
+ * - **ThreadSafety**: ReadSafe
37946
+ *
37947
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxRightContent)
37948
+ */
37949
+ SkyboxRightContent: Content;
37777
37950
  /**
37778
37951
  * Asset ID for the right surface of the skybox.
37779
37952
  *
@@ -37790,6 +37963,12 @@ interface Sky extends Instance {
37790
37963
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxUp)
37791
37964
  */
37792
37965
  SkyboxUp: ContentId;
37966
+ /**
37967
+ * - **ThreadSafety**: ReadSafe
37968
+ *
37969
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxUpContent)
37970
+ */
37971
+ SkyboxUpContent: Content;
37793
37972
  /**
37794
37973
  * How many stars are shown in the skybox.
37795
37974
  *
@@ -37806,6 +37985,12 @@ interface Sky extends Instance {
37806
37985
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SunAngularSize)
37807
37986
  */
37808
37987
  SunAngularSize: number;
37988
+ /**
37989
+ * - **ThreadSafety**: ReadSafe
37990
+ *
37991
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SunTextureContent)
37992
+ */
37993
+ SunTextureContent: Content;
37809
37994
  /**
37810
37995
  * The texture of the sun while using this skybox.
37811
37996
  *
@@ -40854,10 +41039,16 @@ interface TeleportService extends Instance {
40854
41039
  string
40855
41040
  ]>;
40856
41041
  /**
41042
+ * Prompts a `Player` with information about the specified experience. The player can choose to teleport to the target experience through the prompt.
41043
+ *
40857
41044
  * - **ThreadSafety**: Unsafe
40858
41045
  * - **Tags**: Yields
40859
41046
  *
40860
41047
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#PromptExperienceDetailsAsync)
41048
+ * @param this Enables transporting `Players` between places and servers.
41049
+ * @param player The `Player` to be presented the prompt.
41050
+ * @param universeId `DataModel.UniverseId` of the experience to be presented to the `Player`
41051
+ * @returns `PromptExperienceDetailsResult`
40861
41052
  */
40862
41053
  PromptExperienceDetailsAsync(this: TeleportService, player: Player, universeId: number): Enum.PromptExperienceDetailsResult;
40863
41054
  /**
@@ -42614,7 +42805,7 @@ interface TextGenerator extends Instance {
42614
42805
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextGenerator#GenerateTextAsync)
42615
42806
  * @param this Gives access to a large language model for text generation.
42616
42807
  * @param request A dictionary containing optional parameters for the text generation request. The currently supported parameters are `UserPrompt`, `ContextToken`, and `MaxTokens`.
42617
- * @returns A dictionary containing the LLM's generated response.
42808
+ * @returns A dictionary containing the generated response.
42618
42809
  */
42619
42810
  GenerateTextAsync(this: TextGenerator, request: object): object;
42620
42811
  }
@@ -45561,7 +45752,7 @@ interface VRStatusService extends Instance {
45561
45752
  readonly _nominal_VRStatusService: unique symbol;
45562
45753
  }
45563
45754
  /**
45564
- * Base class of all 'Value Instance' objects.
45755
+ * Base class of all "value instance" objects.
45565
45756
  *
45566
45757
  * - **Tags**: NotCreatable
45567
45758
  *
@@ -45602,7 +45793,7 @@ interface BoolValue extends ValueBase {
45602
45793
  */
45603
45794
  Value: boolean;
45604
45795
  /**
45605
- * Fired whenever the `BoolValue.Value` of the BoolValue is changed.
45796
+ * Fires whenever the `BoolValue.Value` is changed.
45606
45797
  *
45607
45798
  * - **ThreadSafety**: Unsafe
45608
45799
  *
@@ -45881,7 +46072,7 @@ interface NumberValue extends ValueBase {
45881
46072
  */
45882
46073
  Value: number;
45883
46074
  /**
45884
- * Fired whenever the `NumberValue.Value` is changed.
46075
+ * Fires whenever the `NumberValue.Value` is changed.
45885
46076
  *
45886
46077
  * - **ThreadSafety**: Unsafe
45887
46078
  *
@@ -45912,7 +46103,7 @@ interface ObjectValue extends ValueBase {
45912
46103
  */
45913
46104
  Value: Instance | undefined;
45914
46105
  /**
45915
- * Fired whenever the `ObjectValue.Value` is changed.
46106
+ * Fires whenever the `ObjectValue.Value` is changed.
45916
46107
  *
45917
46108
  * - **ThreadSafety**: Unsafe
45918
46109
  *
@@ -45974,7 +46165,7 @@ interface StringValue extends ValueBase {
45974
46165
  */
45975
46166
  Value: string;
45976
46167
  /**
45977
- * Fired whenever `StringValue.Value` is changed.
46168
+ * Fires whenever `StringValue.Value` is changed.
45978
46169
  *
45979
46170
  * - **ThreadSafety**: Unsafe
45980
46171
  *
@@ -19,6 +19,7 @@ interface Services {
19
19
  AssetDeliveryProxy: AssetDeliveryProxy;
20
20
  AssetImportService: AssetImportService;
21
21
  AssetManagerService: AssetManagerService;
22
+ AssetQualityService: AssetQualityService;
22
23
  AssetService: AssetService;
23
24
  AudioFocusService: AudioFocusService;
24
25
  AuroraScriptService: AuroraScriptService;
@@ -31,6 +32,7 @@ interface Services {
31
32
  BadgeService: BadgeService;
32
33
  BugReporterService: BugReporterService;
33
34
  BulkImportService: BulkImportService;
35
+ CacheableContentProvider: CacheableContentProvider;
34
36
  CalloutService: CalloutService;
35
37
  CaptureService: CaptureService;
36
38
  ChangeHistoryService: ChangeHistoryService;
@@ -346,6 +348,7 @@ interface CreatableInstances {
346
348
  Color3Value: Color3Value;
347
349
  ColorCorrectionEffect: ColorCorrectionEffect;
348
350
  ColorGradingEffect: ColorGradingEffect;
351
+ CompositeValueCurve: CompositeValueCurve;
349
352
  CompressorSoundEffect: CompressorSoundEffect;
350
353
  ConeHandleAdornment: ConeHandleAdornment;
351
354
  Configuration: Configuration;
@@ -419,6 +422,7 @@ interface CreatableInstances {
419
422
  LineHandleAdornment: LineHandleAdornment;
420
423
  LocalizationTable: LocalizationTable;
421
424
  LocalScript: LocalScript;
425
+ MakeupDescription: MakeupDescription;
422
426
  ManualGlue: ManualGlue;
423
427
  ManualWeld: ManualWeld;
424
428
  MarkerCurve: MarkerCurve;
@@ -783,7 +787,7 @@ interface Objects extends Instances {
783
787
  }
784
788
  // GENERATED ROBLOX INSTANCE CLASSES
785
789
  /**
786
- * Object is the base class for all classes in the Roblox class hierarchy.
790
+ * `Object` is the base class for all classes in the Roblox class hierarchy.
787
791
  *
788
792
  * - **Tags**: NotCreatable, NotReplicated
789
793
  *
@@ -1548,6 +1552,21 @@ interface AssetPatchSettings extends Instance {
1548
1552
  */
1549
1553
  readonly _nominal_AssetPatchSettings: unique symbol;
1550
1554
  }
1555
+ /**
1556
+ * - **Tags**: NotCreatable, Service, NotReplicated
1557
+ *
1558
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetQualityService)
1559
+ */
1560
+ interface AssetQualityService extends Instance {
1561
+ /**
1562
+ * **DO NOT USE!**
1563
+ *
1564
+ * This field exists to force TypeScript to recognize this as a nominal type
1565
+ * @hidden
1566
+ * @deprecated
1567
+ */
1568
+ readonly _nominal_AssetQualityService: unique symbol;
1569
+ }
1551
1570
  /**
1552
1571
  * A non-replicated service that handles asset-related queries to the Roblox web API.
1553
1572
  *
@@ -2893,6 +2912,23 @@ interface BulkImportService extends Instance {
2893
2912
  */
2894
2913
  readonly _nominal_BulkImportService: unique symbol;
2895
2914
  }
2915
+ /**
2916
+ * A variant of the `ContentProvider` that caches assets that have already been received. This service is not used directly, but it is used by the services that inherit from it.
2917
+ *
2918
+ * - **Tags**: NotCreatable, Service, NotReplicated
2919
+ *
2920
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CacheableContentProvider)
2921
+ */
2922
+ interface CacheableContentProvider extends Instance {
2923
+ /**
2924
+ * **DO NOT USE!**
2925
+ *
2926
+ * This field exists to force TypeScript to recognize this as a nominal type
2927
+ * @hidden
2928
+ * @deprecated
2929
+ */
2930
+ readonly _nominal_CacheableContentProvider: unique symbol;
2931
+ }
2896
2932
  /**
2897
2933
  * - **Tags**: NotCreatable, Service
2898
2934
  *
@@ -2941,7 +2977,7 @@ interface CaptureService extends Instance {
2941
2977
  readonly _nominal_CaptureService: unique symbol;
2942
2978
  }
2943
2979
  /**
2944
- * **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
2980
+ * Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
2945
2981
  *
2946
2982
  * - **Tags**: NotCreatable, Service
2947
2983
  *
@@ -2962,8 +2998,8 @@ interface ChangeHistoryService extends Instance {
2962
2998
  * - **ThreadSafety**: Unsafe
2963
2999
  *
2964
3000
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#FinishRecording)
2965
- * @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
2966
- * @param identifier Identifies the recording from the previous call to `TryBeginRecording()`. If the operation is `ChangeHistoryService.FinishRecordingOperation.Cancel`, this value is ignored, and the recording is determined by context.
3001
+ * @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3002
+ * @param identifier The string returned by a previous call to `TryBeginRecording()`, used to identify which recording to finish. This identifier is **not the same** as the `name` of the action passed to `TryBeginRecording()`. If the operation is `FinishRecordingOperation.Cancel`, this value is ignored, and the recording is determined by context.
2967
3003
  * @param operation Specifies the operation to take.
2968
3004
  * @param finalOptions Optional table of values to pass to `OnFinishRecording`.
2969
3005
  */
@@ -2974,7 +3010,7 @@ interface ChangeHistoryService extends Instance {
2974
3010
  * - **ThreadSafety**: Unsafe
2975
3011
  *
2976
3012
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#GetCanRedo)
2977
- * @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3013
+ * @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
2978
3014
  */
2979
3015
  GetCanRedo(this: ChangeHistoryService): unknown;
2980
3016
  /**
@@ -2983,14 +3019,14 @@ interface ChangeHistoryService extends Instance {
2983
3019
  * - **ThreadSafety**: Unsafe
2984
3020
  *
2985
3021
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#GetCanUndo)
2986
- * @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3022
+ * @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
2987
3023
  */
2988
3024
  GetCanUndo(this: ChangeHistoryService): unknown;
2989
3025
  /**
2990
3026
  * - **ThreadSafety**: Unsafe
2991
3027
  *
2992
3028
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#IsRecordingInProgress)
2993
- * @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3029
+ * @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
2994
3030
  * @param identifier
2995
3031
  */
2996
3032
  IsRecordingInProgress(this: ChangeHistoryService, identifier?: string): boolean;
@@ -3000,7 +3036,7 @@ interface ChangeHistoryService extends Instance {
3000
3036
  * - **ThreadSafety**: Unsafe
3001
3037
  *
3002
3038
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#Redo)
3003
- * @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3039
+ * @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3004
3040
  */
3005
3041
  Redo(this: ChangeHistoryService): void;
3006
3042
  /**
@@ -3009,16 +3045,16 @@ interface ChangeHistoryService extends Instance {
3009
3045
  * - **ThreadSafety**: Unsafe
3010
3046
  *
3011
3047
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#ResetWaypoints)
3012
- * @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3048
+ * @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3013
3049
  */
3014
3050
  ResetWaypoints(this: ChangeHistoryService): void;
3015
3051
  /**
3016
- * Sets whether or not the ChangeHistoryService is enabled.
3052
+ * Sets whether or not `ChangeHistoryService` is enabled.
3017
3053
  *
3018
3054
  * - **ThreadSafety**: Unsafe
3019
3055
  *
3020
3056
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#SetEnabled)
3021
- * @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3057
+ * @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3022
3058
  * @param state
3023
3059
  */
3024
3060
  SetEnabled(this: ChangeHistoryService, state: boolean): void;
@@ -3028,7 +3064,7 @@ interface ChangeHistoryService extends Instance {
3028
3064
  * - **ThreadSafety**: Unsafe
3029
3065
  *
3030
3066
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#SetWaypoint)
3031
- * @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3067
+ * @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3032
3068
  * @param name
3033
3069
  */
3034
3070
  SetWaypoint(this: ChangeHistoryService, name: string): void;
@@ -3038,7 +3074,7 @@ interface ChangeHistoryService extends Instance {
3038
3074
  * - **ThreadSafety**: Unsafe
3039
3075
  *
3040
3076
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#TryBeginRecording)
3041
- * @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3077
+ * @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3042
3078
  * @param name Name of the action being performed suitable for logging and coding purposes.
3043
3079
  * @param displayName Name of the action being performed to display to the user.
3044
3080
  */
@@ -3049,7 +3085,7 @@ interface ChangeHistoryService extends Instance {
3049
3085
  * - **ThreadSafety**: Unsafe
3050
3086
  *
3051
3087
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChangeHistoryService#Undo)
3052
- * @param this **Must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3088
+ * @param this Service which **must** be used by plugins to communicate to Studio how to undo and redo the changes which they make to the experience.
3053
3089
  */
3054
3090
  Undo(this: ChangeHistoryService): void;
3055
3091
  /**
@@ -3069,7 +3105,7 @@ interface ChangeHistoryService extends Instance {
3069
3105
  */
3070
3106
  readonly OnRecordingStarted: RBXScriptSignal<(name: string, displayName?: string) => void>;
3071
3107
  /**
3072
- * Fired when the user reverses the undo command. Waypoint describes the type action that has been redone.
3108
+ * Fired when the user reverses the undo command.
3073
3109
  *
3074
3110
  * - **ThreadSafety**: Unsafe
3075
3111
  *
@@ -3077,7 +3113,7 @@ interface ChangeHistoryService extends Instance {
3077
3113
  */
3078
3114
  readonly OnRedo: RBXScriptSignal<(waypoint: string) => void>;
3079
3115
  /**
3080
- * Fired when the user undoes an action in studio. Waypoint describes the type action that has been undone.
3116
+ * Fired when the user undoes an action in studio.
3081
3117
  *
3082
3118
  * - **ThreadSafety**: Unsafe
3083
3119
  *
@@ -3365,6 +3401,19 @@ interface CommerceService extends Instance {
3365
3401
  */
3366
3402
  readonly _nominal_CommerceService: unique symbol;
3367
3403
  }
3404
+ /**
3405
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CompositeValueCurve)
3406
+ */
3407
+ interface CompositeValueCurve extends Instance {
3408
+ /**
3409
+ * **DO NOT USE!**
3410
+ *
3411
+ * This field exists to force TypeScript to recognize this as a nominal type
3412
+ * @hidden
3413
+ * @deprecated
3414
+ */
3415
+ readonly _nominal_CompositeValueCurve: unique symbol;
3416
+ }
3368
3417
  /**
3369
3418
  * - **Tags**: NotCreatable, Service, NotReplicated
3370
3419
  *
@@ -7989,6 +8038,19 @@ interface MLService extends Instance {
7989
8038
  */
7990
8039
  readonly _nominal_MLService: unique symbol;
7991
8040
  }
8041
+ /**
8042
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
8043
+ */
8044
+ interface MakeupDescription extends Instance {
8045
+ /**
8046
+ * **DO NOT USE!**
8047
+ *
8048
+ * This field exists to force TypeScript to recognize this as a nominal type
8049
+ * @hidden
8050
+ * @deprecated
8051
+ */
8052
+ readonly _nominal_MakeupDescription: unique symbol;
8053
+ }
7992
8054
  /**
7993
8055
  * Represents a list of strings markers in chronological order.
7994
8056
  *
@@ -14871,7 +14933,7 @@ interface VRStatusService extends Instance {
14871
14933
  readonly _nominal_VRStatusService: unique symbol;
14872
14934
  }
14873
14935
  /**
14874
- * Base class of all 'Value Instance' objects.
14936
+ * Base class of all "value instance" objects.
14875
14937
  *
14876
14938
  * - **Tags**: NotCreatable
14877
14939
  *
@@ -1590,6 +1590,69 @@ 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/AnimationNodeBlend2DInputMode)
1595
+ */
1596
+ export namespace AnimationNodeBlend2DInputMode {
1597
+ /**
1598
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeBlend2DInputMode#Cartesian)
1599
+ */
1600
+ export interface Cartesian extends globalThis.EnumItem {
1601
+ Name: "Cartesian";
1602
+ Value: 0;
1603
+ EnumType: typeof globalThis.Enum.AnimationNodeBlend2DInputMode;
1604
+ }
1605
+ export const Cartesian: Cartesian;
1606
+ /**
1607
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeBlend2DInputMode#Polar)
1608
+ */
1609
+ export interface Polar extends globalThis.EnumItem {
1610
+ Name: "Polar";
1611
+ Value: 1;
1612
+ EnumType: typeof globalThis.Enum.AnimationNodeBlend2DInputMode;
1613
+ }
1614
+ export const Polar: Polar;
1615
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeBlend2DInputMode>;
1616
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeBlend2DInputMode | undefined;
1617
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeBlend2DInputMode | undefined;
1618
+ }
1619
+ export type AnimationNodeBlend2DInputMode = AnimationNodeBlend2DInputMode.Cartesian | AnimationNodeBlend2DInputMode.Polar;
1620
+ /**
1621
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible)
1622
+ */
1623
+ export namespace AnimationNodeInterruptible {
1624
+ /**
1625
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#Always)
1626
+ */
1627
+ export interface Always extends globalThis.EnumItem {
1628
+ Name: "Always";
1629
+ Value: 0;
1630
+ EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
1631
+ }
1632
+ export const Always: Always;
1633
+ /**
1634
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#ClipFinished)
1635
+ */
1636
+ export interface ClipFinished extends globalThis.EnumItem {
1637
+ Name: "ClipFinished";
1638
+ Value: 1;
1639
+ EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
1640
+ }
1641
+ export const ClipFinished: ClipFinished;
1642
+ /**
1643
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeInterruptible#Expression)
1644
+ */
1645
+ export interface Expression extends globalThis.EnumItem {
1646
+ Name: "Expression";
1647
+ Value: 2;
1648
+ EnumType: typeof globalThis.Enum.AnimationNodeInterruptible;
1649
+ }
1650
+ export const Expression: Expression;
1651
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeInterruptible>;
1652
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeInterruptible | undefined;
1653
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeInterruptible | undefined;
1654
+ }
1655
+ export type AnimationNodeInterruptible = AnimationNodeInterruptible.Always | AnimationNodeInterruptible.ClipFinished | AnimationNodeInterruptible.Expression;
1593
1656
  /**
1594
1657
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodePlayMode)
1595
1658
  */
@@ -1806,6 +1869,33 @@ declare namespace Enum {
1806
1869
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeType | undefined;
1807
1870
  }
1808
1871
  export type AnimationNodeType = AnimationNodeType.InvalidNode | AnimationNodeType.AddNode | AnimationNodeType.BlendNode | AnimationNodeType.Blend1DNode | AnimationNodeType.Blend2DNode | AnimationNodeType.ClipNode | AnimationNodeType.GraphOutput | AnimationNodeType.MaskNode | AnimationNodeType.PrioritySelectNode | AnimationNodeType.RandomSequenceNode | AnimationNodeType.SelectNode | AnimationNodeType.SequenceNode | AnimationNodeType.SpeedNode | AnimationNodeType.SubtractNode;
1872
+ /**
1873
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor)
1874
+ */
1875
+ export namespace AnimationNodeWaitFor {
1876
+ /**
1877
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#ClipFinished)
1878
+ */
1879
+ export interface ClipFinished extends globalThis.EnumItem {
1880
+ Name: "ClipFinished";
1881
+ Value: 0;
1882
+ EnumType: typeof globalThis.Enum.AnimationNodeWaitFor;
1883
+ }
1884
+ export const ClipFinished: ClipFinished;
1885
+ /**
1886
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnimationNodeWaitFor#Expression)
1887
+ */
1888
+ export interface Expression extends globalThis.EnumItem {
1889
+ Name: "Expression";
1890
+ Value: 1;
1891
+ EnumType: typeof globalThis.Enum.AnimationNodeWaitFor;
1892
+ }
1893
+ export const Expression: Expression;
1894
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnimationNodeWaitFor>;
1895
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnimationNodeWaitFor | undefined;
1896
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnimationNodeWaitFor | undefined;
1897
+ }
1898
+ export type AnimationNodeWaitFor = AnimationNodeWaitFor.ClipFinished | AnimationNodeWaitFor.Expression;
1809
1899
  /**
1810
1900
  * The AnimationPriority Enum determines how concurrently-playing AnimationTracks contribute to the final animation.
1811
1901
  *
@@ -7818,6 +7908,87 @@ declare namespace Enum {
7818
7908
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompletionTriggerKind | undefined;
7819
7909
  }
7820
7910
  export type CompletionTriggerKind = CompletionTriggerKind.Invoked | CompletionTriggerKind.TriggerCharacter | CompletionTriggerKind.TriggerForIncompleteCompletions;
7911
+ /**
7912
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType)
7913
+ */
7914
+ export namespace CompositeValueCurveType {
7915
+ /**
7916
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#ColorRGB)
7917
+ */
7918
+ export interface ColorRGB extends globalThis.EnumItem {
7919
+ Name: "ColorRGB";
7920
+ Value: 0;
7921
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7922
+ }
7923
+ export const ColorRGB: ColorRGB;
7924
+ /**
7925
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#ColorHSV)
7926
+ */
7927
+ export interface ColorHSV extends globalThis.EnumItem {
7928
+ Name: "ColorHSV";
7929
+ Value: 1;
7930
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7931
+ }
7932
+ export const ColorHSV: ColorHSV;
7933
+ /**
7934
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#NumberRange)
7935
+ */
7936
+ export interface NumberRange extends globalThis.EnumItem {
7937
+ Name: "NumberRange";
7938
+ Value: 2;
7939
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7940
+ }
7941
+ export const NumberRange: NumberRange;
7942
+ /**
7943
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Rect)
7944
+ */
7945
+ export interface Rect extends globalThis.EnumItem {
7946
+ Name: "Rect";
7947
+ Value: 3;
7948
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7949
+ }
7950
+ export const Rect: Rect;
7951
+ /**
7952
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#UDim)
7953
+ */
7954
+ export interface UDim extends globalThis.EnumItem {
7955
+ Name: "UDim";
7956
+ Value: 4;
7957
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7958
+ }
7959
+ export const UDim: UDim;
7960
+ /**
7961
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#UDim2)
7962
+ */
7963
+ export interface UDim2 extends globalThis.EnumItem {
7964
+ Name: "UDim2";
7965
+ Value: 5;
7966
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7967
+ }
7968
+ export const UDim2: UDim2;
7969
+ /**
7970
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Vector2)
7971
+ */
7972
+ export interface Vector2 extends globalThis.EnumItem {
7973
+ Name: "Vector2";
7974
+ Value: 6;
7975
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7976
+ }
7977
+ export const Vector2: Vector2;
7978
+ /**
7979
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CompositeValueCurveType#Vector3)
7980
+ */
7981
+ export interface Vector3 extends globalThis.EnumItem {
7982
+ Name: "Vector3";
7983
+ Value: 7;
7984
+ EnumType: typeof globalThis.Enum.CompositeValueCurveType;
7985
+ }
7986
+ export const Vector3: Vector3;
7987
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.CompositeValueCurveType>;
7988
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.CompositeValueCurveType | undefined;
7989
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CompositeValueCurveType | undefined;
7990
+ }
7991
+ export type CompositeValueCurveType = CompositeValueCurveType.ColorRGB | CompositeValueCurveType.ColorHSV | CompositeValueCurveType.NumberRange | CompositeValueCurveType.Rect | CompositeValueCurveType.UDim | CompositeValueCurveType.UDim2 | CompositeValueCurveType.Vector2 | CompositeValueCurveType.Vector3;
7821
7992
  /**
7822
7993
  * A compression algorithm to use in `EncodingService` methods.
7823
7994
  *
@@ -12629,6 +12800,33 @@ declare namespace Enum {
12629
12800
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FilterResult | undefined;
12630
12801
  }
12631
12802
  export type FilterResult = FilterResult.Accepted | FilterResult.Rejected;
12803
+ /**
12804
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FilterType)
12805
+ */
12806
+ export namespace FilterType {
12807
+ /**
12808
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FilterType#Exclude)
12809
+ */
12810
+ export interface Exclude extends globalThis.EnumItem {
12811
+ Name: "Exclude";
12812
+ Value: 0;
12813
+ EnumType: typeof globalThis.Enum.FilterType;
12814
+ }
12815
+ export const Exclude: Exclude;
12816
+ /**
12817
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FilterType#Include)
12818
+ */
12819
+ export interface Include extends globalThis.EnumItem {
12820
+ Name: "Include";
12821
+ Value: 1;
12822
+ EnumType: typeof globalThis.Enum.FilterType;
12823
+ }
12824
+ export const Include: Include;
12825
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FilterType>;
12826
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.FilterType | undefined;
12827
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.FilterType | undefined;
12828
+ }
12829
+ export type FilterType = FilterType.Exclude | FilterType.Include;
12632
12830
  /**
12633
12831
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/FinishRecordingOperation)
12634
12832
  */
@@ -20541,6 +20739,42 @@ declare namespace Enum {
20541
20739
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.LuauTypeCheckMode | undefined;
20542
20740
  }
20543
20741
  export type LuauTypeCheckMode = LuauTypeCheckMode.Default | LuauTypeCheckMode.NoCheck | LuauTypeCheckMode.Nonstrict | LuauTypeCheckMode.Strict;
20742
+ /**
20743
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MakeupType)
20744
+ */
20745
+ export namespace MakeupType {
20746
+ /**
20747
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MakeupType#Face)
20748
+ */
20749
+ export interface Face extends globalThis.EnumItem {
20750
+ Name: "Face";
20751
+ Value: 0;
20752
+ EnumType: typeof globalThis.Enum.MakeupType;
20753
+ }
20754
+ export const Face: Face;
20755
+ /**
20756
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MakeupType#Lip)
20757
+ */
20758
+ export interface Lip extends globalThis.EnumItem {
20759
+ Name: "Lip";
20760
+ Value: 1;
20761
+ EnumType: typeof globalThis.Enum.MakeupType;
20762
+ }
20763
+ export const Lip: Lip;
20764
+ /**
20765
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/MakeupType#Eye)
20766
+ */
20767
+ export interface Eye extends globalThis.EnumItem {
20768
+ Name: "Eye";
20769
+ Value: 2;
20770
+ EnumType: typeof globalThis.Enum.MakeupType;
20771
+ }
20772
+ export const Eye: Eye;
20773
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.MakeupType>;
20774
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.MakeupType | undefined;
20775
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.MakeupType | undefined;
20776
+ }
20777
+ export type MakeupType = MakeupType.Face | MakeupType.Lip | MakeupType.Eye;
20544
20778
  /**
20545
20779
  * The status of the BulkPurchasePrompt after player interaction.
20546
20780
  *
@@ -26988,6 +27222,222 @@ declare namespace Enum {
26988
27222
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RibbonTool | undefined;
26989
27223
  }
26990
27224
  export type RibbonTool = RibbonTool.Select | RibbonTool.Scale | RibbonTool.Rotate | RibbonTool.Move | RibbonTool.Transform | RibbonTool.ColorPicker | RibbonTool.MaterialPicker | RibbonTool.Group | RibbonTool.Ungroup | RibbonTool.None | RibbonTool.PivotEditor;
27225
+ /**
27226
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel)
27227
+ */
27228
+ export namespace RigLabel {
27229
+ /**
27230
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Invalid)
27231
+ */
27232
+ export interface Invalid extends globalThis.EnumItem {
27233
+ Name: "Invalid";
27234
+ Value: 0;
27235
+ EnumType: typeof globalThis.Enum.RigLabel;
27236
+ }
27237
+ export const Invalid: Invalid;
27238
+ /**
27239
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Root)
27240
+ */
27241
+ export interface Root extends globalThis.EnumItem {
27242
+ Name: "Root";
27243
+ Value: 1;
27244
+ EnumType: typeof globalThis.Enum.RigLabel;
27245
+ }
27246
+ export const Root: Root;
27247
+ /**
27248
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Pelvis)
27249
+ */
27250
+ export interface Pelvis extends globalThis.EnumItem {
27251
+ Name: "Pelvis";
27252
+ Value: 2;
27253
+ EnumType: typeof globalThis.Enum.RigLabel;
27254
+ }
27255
+ export const Pelvis: Pelvis;
27256
+ /**
27257
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Waist)
27258
+ */
27259
+ export interface Waist extends globalThis.EnumItem {
27260
+ Name: "Waist";
27261
+ Value: 3;
27262
+ EnumType: typeof globalThis.Enum.RigLabel;
27263
+ }
27264
+ export const Waist: Waist;
27265
+ /**
27266
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Chest)
27267
+ */
27268
+ export interface Chest extends globalThis.EnumItem {
27269
+ Name: "Chest";
27270
+ Value: 4;
27271
+ EnumType: typeof globalThis.Enum.RigLabel;
27272
+ }
27273
+ export const Chest: Chest;
27274
+ /**
27275
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#Neck)
27276
+ */
27277
+ export interface Neck extends globalThis.EnumItem {
27278
+ Name: "Neck";
27279
+ Value: 5;
27280
+ EnumType: typeof globalThis.Enum.RigLabel;
27281
+ }
27282
+ export const Neck: Neck;
27283
+ /**
27284
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#HeadBase)
27285
+ */
27286
+ export interface HeadBase extends globalThis.EnumItem {
27287
+ Name: "HeadBase";
27288
+ Value: 6;
27289
+ EnumType: typeof globalThis.Enum.RigLabel;
27290
+ }
27291
+ export const HeadBase: HeadBase;
27292
+ /**
27293
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftClavicle)
27294
+ */
27295
+ export interface LeftClavicle extends globalThis.EnumItem {
27296
+ Name: "LeftClavicle";
27297
+ Value: 7;
27298
+ EnumType: typeof globalThis.Enum.RigLabel;
27299
+ }
27300
+ export const LeftClavicle: LeftClavicle;
27301
+ /**
27302
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftShoulder)
27303
+ */
27304
+ export interface LeftShoulder extends globalThis.EnumItem {
27305
+ Name: "LeftShoulder";
27306
+ Value: 8;
27307
+ EnumType: typeof globalThis.Enum.RigLabel;
27308
+ }
27309
+ export const LeftShoulder: LeftShoulder;
27310
+ /**
27311
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftElbow)
27312
+ */
27313
+ export interface LeftElbow extends globalThis.EnumItem {
27314
+ Name: "LeftElbow";
27315
+ Value: 9;
27316
+ EnumType: typeof globalThis.Enum.RigLabel;
27317
+ }
27318
+ export const LeftElbow: LeftElbow;
27319
+ /**
27320
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftWrist)
27321
+ */
27322
+ export interface LeftWrist extends globalThis.EnumItem {
27323
+ Name: "LeftWrist";
27324
+ Value: 10;
27325
+ EnumType: typeof globalThis.Enum.RigLabel;
27326
+ }
27327
+ export const LeftWrist: LeftWrist;
27328
+ /**
27329
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightClavicle)
27330
+ */
27331
+ export interface RightClavicle extends globalThis.EnumItem {
27332
+ Name: "RightClavicle";
27333
+ Value: 11;
27334
+ EnumType: typeof globalThis.Enum.RigLabel;
27335
+ }
27336
+ export const RightClavicle: RightClavicle;
27337
+ /**
27338
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightShoulder)
27339
+ */
27340
+ export interface RightShoulder extends globalThis.EnumItem {
27341
+ Name: "RightShoulder";
27342
+ Value: 12;
27343
+ EnumType: typeof globalThis.Enum.RigLabel;
27344
+ }
27345
+ export const RightShoulder: RightShoulder;
27346
+ /**
27347
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightElbow)
27348
+ */
27349
+ export interface RightElbow extends globalThis.EnumItem {
27350
+ Name: "RightElbow";
27351
+ Value: 13;
27352
+ EnumType: typeof globalThis.Enum.RigLabel;
27353
+ }
27354
+ export const RightElbow: RightElbow;
27355
+ /**
27356
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightWrist)
27357
+ */
27358
+ export interface RightWrist extends globalThis.EnumItem {
27359
+ Name: "RightWrist";
27360
+ Value: 14;
27361
+ EnumType: typeof globalThis.Enum.RigLabel;
27362
+ }
27363
+ export const RightWrist: RightWrist;
27364
+ /**
27365
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftHip)
27366
+ */
27367
+ export interface LeftHip extends globalThis.EnumItem {
27368
+ Name: "LeftHip";
27369
+ Value: 15;
27370
+ EnumType: typeof globalThis.Enum.RigLabel;
27371
+ }
27372
+ export const LeftHip: LeftHip;
27373
+ /**
27374
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftKnee)
27375
+ */
27376
+ export interface LeftKnee extends globalThis.EnumItem {
27377
+ Name: "LeftKnee";
27378
+ Value: 16;
27379
+ EnumType: typeof globalThis.Enum.RigLabel;
27380
+ }
27381
+ export const LeftKnee: LeftKnee;
27382
+ /**
27383
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftAnkle)
27384
+ */
27385
+ export interface LeftAnkle extends globalThis.EnumItem {
27386
+ Name: "LeftAnkle";
27387
+ Value: 17;
27388
+ EnumType: typeof globalThis.Enum.RigLabel;
27389
+ }
27390
+ export const LeftAnkle: LeftAnkle;
27391
+ /**
27392
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#LeftToes)
27393
+ */
27394
+ export interface LeftToes extends globalThis.EnumItem {
27395
+ Name: "LeftToes";
27396
+ Value: 18;
27397
+ EnumType: typeof globalThis.Enum.RigLabel;
27398
+ }
27399
+ export const LeftToes: LeftToes;
27400
+ /**
27401
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightHip)
27402
+ */
27403
+ export interface RightHip extends globalThis.EnumItem {
27404
+ Name: "RightHip";
27405
+ Value: 19;
27406
+ EnumType: typeof globalThis.Enum.RigLabel;
27407
+ }
27408
+ export const RightHip: RightHip;
27409
+ /**
27410
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightKnee)
27411
+ */
27412
+ export interface RightKnee extends globalThis.EnumItem {
27413
+ Name: "RightKnee";
27414
+ Value: 20;
27415
+ EnumType: typeof globalThis.Enum.RigLabel;
27416
+ }
27417
+ export const RightKnee: RightKnee;
27418
+ /**
27419
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightAnkle)
27420
+ */
27421
+ export interface RightAnkle extends globalThis.EnumItem {
27422
+ Name: "RightAnkle";
27423
+ Value: 21;
27424
+ EnumType: typeof globalThis.Enum.RigLabel;
27425
+ }
27426
+ export const RightAnkle: RightAnkle;
27427
+ /**
27428
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigLabel#RightToes)
27429
+ */
27430
+ export interface RightToes extends globalThis.EnumItem {
27431
+ Name: "RightToes";
27432
+ Value: 22;
27433
+ EnumType: typeof globalThis.Enum.RigLabel;
27434
+ }
27435
+ export const RightToes: RightToes;
27436
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.RigLabel>;
27437
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.RigLabel | undefined;
27438
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.RigLabel | undefined;
27439
+ }
27440
+ export type RigLabel = RigLabel.Invalid | RigLabel.Root | RigLabel.Pelvis | RigLabel.Waist | RigLabel.Chest | RigLabel.Neck | RigLabel.HeadBase | RigLabel.LeftClavicle | RigLabel.LeftShoulder | RigLabel.LeftElbow | RigLabel.LeftWrist | RigLabel.RightClavicle | RigLabel.RightShoulder | RigLabel.RightElbow | RigLabel.RightWrist | RigLabel.LeftHip | RigLabel.LeftKnee | RigLabel.LeftAnkle | RigLabel.LeftToes | RigLabel.RightHip | RigLabel.RightKnee | RigLabel.RightAnkle | RigLabel.RightToes;
26991
27441
  /**
26992
27442
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/RigScale)
26993
27443
  */
@@ -36657,10 +37107,14 @@ declare namespace Enum {
36657
37107
  }
36658
37108
  export type VoiceControlPath = VoiceControlPath.Publish | VoiceControlPath.Subscribe | VoiceControlPath.Join;
36659
37109
  /**
37110
+ * Enum used with `SoundService.VolumetricAudio`.
37111
+ *
36660
37112
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio)
36661
37113
  */
36662
37114
  export namespace VolumetricAudio {
36663
37115
  /**
37116
+ * Volumetric audio is disabled.
37117
+ *
36664
37118
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Disabled)
36665
37119
  */
36666
37120
  export interface Disabled extends globalThis.EnumItem {
@@ -36670,6 +37124,8 @@ declare namespace Enum {
36670
37124
  }
36671
37125
  export const Disabled: Disabled;
36672
37126
  /**
37127
+ * Volumetric audio is in the default state, currently `Disabled`.
37128
+ *
36673
37129
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Automatic)
36674
37130
  */
36675
37131
  export interface Automatic extends globalThis.EnumItem {
@@ -36679,6 +37135,8 @@ declare namespace Enum {
36679
37135
  }
36680
37136
  export const Automatic: Automatic;
36681
37137
  /**
37138
+ * Volumetric audio is enabled.
37139
+ *
36682
37140
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/VolumetricAudio#Enabled)
36683
37141
  */
36684
37142
  export interface Enabled extends globalThis.EnumItem {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.893",
3
+ "version": "1.0.895",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },