@rbxts/types 1.0.895 → 1.0.896

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.
@@ -174,7 +174,9 @@ interface Services {
174
174
  SessionCheckService: SessionCheckService;
175
175
  SessionService: SessionService;
176
176
  SharedTableRegistry: SharedTableRegistry;
177
+ SlimAnimationReplicationService: SlimAnimationReplicationService;
177
178
  SlimContentProvider: SlimContentProvider;
179
+ SlimReplicationService: SlimReplicationService;
178
180
  SlimService: SlimService;
179
181
  SmoothVoxelsUpgraderService: SmoothVoxelsUpgraderService;
180
182
  SnippetService: SnippetService;
@@ -679,6 +681,7 @@ interface Instances extends Services, CreatableInstances {
679
681
  SensorBase: SensorBase;
680
682
  ServiceProvider: ServiceProvider;
681
683
  SlidingBallConstraint: SlidingBallConstraint;
684
+ SlimAnimationDataEntity: SlimAnimationDataEntity;
682
685
  SoundEffect: SoundEffect;
683
686
  StackFrame: StackFrame;
684
687
  StandardPages: StandardPages;
@@ -3387,8 +3390,17 @@ interface AnimationClipProvider extends Instance {
3387
3390
  * @param this Provides functions to load and preview `AnimationClips`.
3388
3391
  * @param userId The user ID of the user.
3389
3392
  * @returns An `InventoryPages` of animations.
3393
+ *
3394
+ * @deprecated GetAnimationsAsync
3390
3395
  */
3391
3396
  GetAnimations(this: AnimationClipProvider, userId: number): Instance | undefined;
3397
+ /**
3398
+ * - **ThreadSafety**: Unsafe
3399
+ * - **Tags**: Yields
3400
+ *
3401
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationClipProvider#GetAnimationsAsync)
3402
+ */
3403
+ GetAnimationsAsync(this: AnimationClipProvider, userId: number): Instance | undefined;
3392
3404
  /**
3393
3405
  * - **ThreadSafety**: Unsafe
3394
3406
  * - **Tags**: Yields
@@ -3729,12 +3741,15 @@ interface AnimationTrack extends Instance {
3729
3741
  * - **ThreadSafety**: Unsafe
3730
3742
  *
3731
3743
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetParameter)
3744
+ * @param this Controls the playback of an animation on an `Animator`.
3745
+ * @param key
3732
3746
  */
3733
3747
  GetParameter(this: AnimationTrack, key: string): unknown;
3734
3748
  /**
3735
3749
  * - **ThreadSafety**: Unsafe
3736
3750
  *
3737
3751
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetParameterDefaults)
3752
+ * @param this Controls the playback of an animation on an `Animator`.
3738
3753
  */
3739
3754
  GetParameterDefaults(this: AnimationTrack): object;
3740
3755
  /**
@@ -3780,6 +3795,9 @@ interface AnimationTrack extends Instance {
3780
3795
  * - **ThreadSafety**: Unsafe
3781
3796
  *
3782
3797
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#SetParameter)
3798
+ * @param this Controls the playback of an animation on an `Animator`.
3799
+ * @param key
3800
+ * @param value
3783
3801
  */
3784
3802
  SetParameter(this: AnimationTrack, key: string, value: unknown): void;
3785
3803
  /**
@@ -4331,8 +4349,17 @@ interface AssetService extends Instance {
4331
4349
  * @param this A non-replicated service that handles asset-related queries to the Roblox web API.
4332
4350
  * @param packageAssetId
4333
4351
  * @returns Asset IDs that are contained in a specified package.
4352
+ *
4353
+ * @deprecated GetAssetIdsForPackageAsync
4334
4354
  */
4335
4355
  GetAssetIdsForPackage(this: AssetService, packageAssetId: number): Array<number>;
4356
+ /**
4357
+ * - **ThreadSafety**: Unsafe
4358
+ * - **Tags**: Yields
4359
+ *
4360
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#GetAssetIdsForPackageAsync)
4361
+ */
4362
+ GetAssetIdsForPackageAsync(this: AssetService, packageAssetId: number): Array<unknown>;
4336
4363
  /**
4337
4364
  * Provides relevant metadata about a specific audio source.
4338
4365
  *
@@ -4454,8 +4481,17 @@ interface AssetService extends Instance {
4454
4481
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#SearchAudio)
4455
4482
  * @param this A non-replicated service that handles asset-related queries to the Roblox web API.
4456
4483
  * @param searchParameters
4484
+ *
4485
+ * @deprecated SearchAudioAsync
4457
4486
  */
4458
4487
  SearchAudio(this: AssetService, searchParameters: AudioSearchParams): AudioPages;
4488
+ /**
4489
+ * - **ThreadSafety**: Unsafe
4490
+ * - **Tags**: Yields
4491
+ *
4492
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#SearchAudioAsync)
4493
+ */
4494
+ SearchAudioAsync(this: AssetService, searchParameters: AudioSearchParams): AudioPages;
4459
4495
  }
4460
4496
  /**
4461
4497
  * The `Atmosphere` object pushes Roblox closer toward realistic environments where sunlight scatters in different ways depending on density and other air particle properties.
@@ -7152,18 +7188,22 @@ interface AudioTremolo extends Instance {
7152
7188
  * - **ThreadSafety**: Unsafe
7153
7189
  *
7154
7190
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTremolo#GetConnectedWires)
7191
+ * @param this Creates a trembling effect on a sound by varying the volume of the sound up and down.
7192
+ * @param pin
7155
7193
  */
7156
7194
  GetConnectedWires(this: AudioTremolo, pin: string): Array<Instance>;
7157
7195
  /**
7158
7196
  * - **ThreadSafety**: Unsafe
7159
7197
  *
7160
7198
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTremolo#GetInputPins)
7199
+ * @param this Creates a trembling effect on a sound by varying the volume of the sound up and down.
7161
7200
  */
7162
7201
  GetInputPins(this: AudioTremolo): Array<unknown>;
7163
7202
  /**
7164
7203
  * - **ThreadSafety**: Unsafe
7165
7204
  *
7166
7205
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTremolo#GetOutputPins)
7206
+ * @param this Creates a trembling effect on a sound by varying the volume of the sound up and down.
7167
7207
  */
7168
7208
  GetOutputPins(this: AudioTremolo): Array<unknown>;
7169
7209
  /**
@@ -7850,8 +7890,17 @@ interface AvatarEditorService extends Instance {
7850
7890
  * @param this A service to support developer Avatar Editors.
7851
7891
  * @param humanoidDescription The HumanoidDescription to check if default clothing is required.
7852
7892
  * @returns Returns a HumanoidDescription if default clothing was necessary. Otherwise returns `nil`.
7893
+ *
7894
+ * @deprecated CheckApplyDefaultClothingAsync
7853
7895
  */
7854
7896
  CheckApplyDefaultClothing(this: AvatarEditorService, humanoidDescription: HumanoidDescription): HumanoidDescription | undefined;
7897
+ /**
7898
+ * - **ThreadSafety**: Unsafe
7899
+ * - **Tags**: Yields
7900
+ *
7901
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#CheckApplyDefaultClothingAsync)
7902
+ */
7903
+ CheckApplyDefaultClothingAsync(this: AvatarEditorService, humanoidDescription: HumanoidDescription): HumanoidDescription;
7855
7904
  /**
7856
7905
  * - **ThreadSafety**: Unsafe
7857
7906
  * - **Tags**: Yields
@@ -7859,8 +7908,17 @@ interface AvatarEditorService extends Instance {
7859
7908
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#ConformToAvatarRules)
7860
7909
  * @param this A service to support developer Avatar Editors.
7861
7910
  * @param humanoidDescription
7911
+ *
7912
+ * @deprecated ConformToAvatarRulesAsync
7862
7913
  */
7863
7914
  ConformToAvatarRules(this: AvatarEditorService, humanoidDescription: HumanoidDescription): HumanoidDescription;
7915
+ /**
7916
+ * - **ThreadSafety**: Unsafe
7917
+ * - **Tags**: Yields
7918
+ *
7919
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#ConformToAvatarRulesAsync)
7920
+ */
7921
+ ConformToAvatarRulesAsync(this: AvatarEditorService, humanoidDescription: HumanoidDescription): HumanoidDescription;
7864
7922
  /**
7865
7923
  * Returns the platform Avatar rules for things such as scaling, default shirts and pants, number of wearable assets.
7866
7924
  *
@@ -7870,8 +7928,17 @@ interface AvatarEditorService extends Instance {
7870
7928
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetAvatarRules)
7871
7929
  * @param this A service to support developer Avatar Editors.
7872
7930
  * @returns A dictionary containing the platform Avatar rules for things like scaling, default shirts and pants, number of wearable assets, ect. See the example return in the main description above.
7931
+ *
7932
+ * @deprecated GetAvatarRulesAsync
7873
7933
  */
7874
7934
  GetAvatarRules(this: AvatarEditorService): AvatarRules;
7935
+ /**
7936
+ * - **ThreadSafety**: Unsafe
7937
+ * - **Tags**: Yields
7938
+ *
7939
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetAvatarRulesAsync)
7940
+ */
7941
+ GetAvatarRulesAsync(this: AvatarEditorService): object;
7875
7942
  /**
7876
7943
  * Gets the item details for a list of items at once.
7877
7944
  *
@@ -7886,10 +7953,19 @@ interface AvatarEditorService extends Instance {
7886
7953
  * ```lua
7887
7954
  * { "AssetType" = "string", "CreatorName" = "string", "CreatorTargetId" = 0, "CreatorType" = "string", "Description" = "string", "FavoriteCount" = 0, "Genres" = [ "All" ], "Id" = 0, "ItemRestrictions" = [ "Limited" ], "ItemStatus": [ "New" ], "ItemType" = "string", "LowestPrice" = 0, "Name" = "string", "Price" = 0, "ProductId" = 0 }
7888
7955
  * ``` .
7956
+ *
7957
+ * @deprecated GetBatchItemDetailsAsync
7889
7958
  */
7890
7959
  GetBatchItemDetails(this: AvatarEditorService, itemIds: ReadonlyArray<number>, itemType: CastsToEnum<Enum.AvatarItemType.Asset>): ReadonlyArray<AssetItemDetails>;
7891
7960
  GetBatchItemDetails(this: AvatarEditorService, itemIds: ReadonlyArray<number>, itemType: CastsToEnum<Enum.AvatarItemType.Bundle>): ReadonlyArray<BundleItemDetails>;
7892
7961
  GetBatchItemDetails(this: AvatarEditorService, itemIds: ReadonlyArray<number>, itemType: CastsToEnum<Enum.AvatarItemType>): ReadonlyArray<ItemDetails>;
7962
+ /**
7963
+ * - **ThreadSafety**: Unsafe
7964
+ * - **Tags**: Yields
7965
+ *
7966
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetBatchItemDetailsAsync)
7967
+ */
7968
+ GetBatchItemDetailsAsync(this: AvatarEditorService, itemIds: Array<unknown>, itemType: CastsToEnum<Enum.AvatarItemType>): Array<unknown>;
7893
7969
  /**
7894
7970
  * Returns if the `Players.LocalPlayer` has favorited the given bundle or asset.
7895
7971
  *
@@ -7901,8 +7977,17 @@ interface AvatarEditorService extends Instance {
7901
7977
  * @param itemId The ID of the specified asset or bundle.
7902
7978
  * @param itemType The `AvatarItemType` of the specified asset or bundle.
7903
7979
  * @returns Whether the `LocalPlayer` has favorited the given bundle or asset.
7980
+ *
7981
+ * @deprecated GetFavoriteAsync
7904
7982
  */
7905
7983
  GetFavorite(this: AvatarEditorService, itemId: number, itemType: CastsToEnum<Enum.AvatarItemType>): boolean;
7984
+ /**
7985
+ * - **ThreadSafety**: Unsafe
7986
+ * - **Tags**: Yields
7987
+ *
7988
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetFavoriteAsync)
7989
+ */
7990
+ GetFavoriteAsync(this: AvatarEditorService, itemId: number, itemType: CastsToEnum<Enum.AvatarItemType>): boolean;
7906
7991
  /**
7907
7992
  * Returns an `InventoryPages` object with information about owned items in the users inventory with the given AvatarAssetTypes.
7908
7993
  *
@@ -7912,6 +7997,8 @@ interface AvatarEditorService extends Instance {
7912
7997
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetInventory)
7913
7998
  * @param this A service to support developer Avatar Editors.
7914
7999
  * @param assetTypes The `AvatarAssetType` that can will be checked for in the player's inventory.
8000
+ *
8001
+ * @deprecated GetInventoryAsync
7915
8002
  */
7916
8003
  GetInventory(this: AvatarEditorService, assetTypes: ReadonlyArray<Enum.AvatarAssetType>): InventoryPages<{
7917
8004
  AssetId: number;
@@ -7919,6 +8006,13 @@ interface AvatarEditorService extends Instance {
7919
8006
  Created: string;
7920
8007
  Name: string;
7921
8008
  }>;
8009
+ /**
8010
+ * - **ThreadSafety**: Unsafe
8011
+ * - **Tags**: Yields
8012
+ *
8013
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetInventoryAsync)
8014
+ */
8015
+ GetInventoryAsync(this: AvatarEditorService, assetTypes: Array<unknown>): InventoryPages;
7922
8016
  /**
7923
8017
  * Returns the item details for the given item.
7924
8018
  *
@@ -7930,10 +8024,19 @@ interface AvatarEditorService extends Instance {
7930
8024
  * @param itemId The ID of the item whose details are being retrieved.
7931
8025
  * @param itemType An enum value indicating the type of item whose details are being retrieved.
7932
8026
  * @returns A table containing the item info for the retrieved item. See above for a sample table.
8027
+ *
8028
+ * @deprecated GetItemDetailsAsync
7933
8029
  */
7934
8030
  GetItemDetails(this: AvatarEditorService, itemId: number, itemType: CastsToEnum<Enum.AvatarItemType.Asset>): AssetItemDetails;
7935
8031
  GetItemDetails(this: AvatarEditorService, itemId: number, itemType: CastsToEnum<Enum.AvatarItemType.Bundle>): BundleItemDetails;
7936
8032
  GetItemDetails(this: AvatarEditorService, itemId: number, itemType: CastsToEnum<Enum.AvatarItemType>): ItemDetails;
8033
+ /**
8034
+ * - **ThreadSafety**: Unsafe
8035
+ * - **Tags**: Yields
8036
+ *
8037
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetItemDetailsAsync)
8038
+ */
8039
+ GetItemDetailsAsync(this: AvatarEditorService, itemId: number, itemType: CastsToEnum<Enum.AvatarItemType>): object;
7937
8040
  /**
7938
8041
  * Returns the outfit details for the given outfit.
7939
8042
  *
@@ -7944,8 +8047,17 @@ interface AvatarEditorService extends Instance {
7944
8047
  * @param this A service to support developer Avatar Editors.
7945
8048
  * @param outfitId The ID of the outfit whose details are being retrieved.
7946
8049
  * @returns A table containing the outfit info for the retrieved outfit. See above for a sample table.
8050
+ *
8051
+ * @deprecated GetOutfitDetailsAsync
7947
8052
  */
7948
8053
  GetOutfitDetails(this: AvatarEditorService, outfitId: number): object;
8054
+ /**
8055
+ * - **ThreadSafety**: Unsafe
8056
+ * - **Tags**: Yields
8057
+ *
8058
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetOutfitDetailsAsync)
8059
+ */
8060
+ GetOutfitDetailsAsync(this: AvatarEditorService, outfitId: number): object;
7949
8061
  /**
7950
8062
  * Returns outfit data for the `Players.LocalPlayer`.
7951
8063
  *
@@ -7956,8 +8068,17 @@ interface AvatarEditorService extends Instance {
7956
8068
  * @param this A service to support developer Avatar Editors.
7957
8069
  * @param outfitSource
7958
8070
  * @param outfitType
8071
+ *
8072
+ * @deprecated GetOutfitsAsync
7959
8073
  */
7960
8074
  GetOutfits(this: AvatarEditorService, outfitSource?: CastsToEnum<Enum.OutfitSource>, outfitType?: CastsToEnum<Enum.OutfitType>): OutfitPages;
8075
+ /**
8076
+ * - **ThreadSafety**: Unsafe
8077
+ * - **Tags**: Yields
8078
+ *
8079
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetOutfitsAsync)
8080
+ */
8081
+ GetOutfitsAsync(this: AvatarEditorService, outfitSource?: CastsToEnum<Enum.OutfitSource>, outfitType?: CastsToEnum<Enum.OutfitType>): OutfitPages;
7961
8082
  /**
7962
8083
  * Returns a list of recommended assets based on a given `AssetType` and asset ID.
7963
8084
  *
@@ -7969,8 +8090,17 @@ interface AvatarEditorService extends Instance {
7969
8090
  * @param assetType The type of asset recommendations to retrieve recommendations for. Only affects the response when item based recommendations don't exist for the given `contextAssetId`.
7970
8091
  * @param contextAssetId The ID of an asset with a type matching the provided assetType used for context when retrieving recommendations.
7971
8092
  * @returns A list of recommendations based on the given `AssetType`.
8093
+ *
8094
+ * @deprecated GetRecommendedAssetsAsync
7972
8095
  */
7973
8096
  GetRecommendedAssets(this: AvatarEditorService, assetType: CastsToEnum<Enum.AvatarAssetType>, contextAssetId?: number): ReadonlyArray<RecommendedAsset>;
8097
+ /**
8098
+ * - **ThreadSafety**: Unsafe
8099
+ * - **Tags**: Yields
8100
+ *
8101
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetRecommendedAssetsAsync)
8102
+ */
8103
+ GetRecommendedAssetsAsync(this: AvatarEditorService, assetType: CastsToEnum<Enum.AvatarAssetType>, contextAssetId?: number): Array<unknown>;
7974
8104
  /**
7975
8105
  * Returns a list of recommended bundles for a given bundle id.
7976
8106
  *
@@ -7981,8 +8111,17 @@ interface AvatarEditorService extends Instance {
7981
8111
  * @param this A service to support developer Avatar Editors.
7982
8112
  * @param bundleId A list of recommended bundles.
7983
8113
  * @returns The bundle ID that the recommended bundles will be returned for.
8114
+ *
8115
+ * @deprecated GetRecommendedBundlesAsync
7984
8116
  */
7985
8117
  GetRecommendedBundles(this: AvatarEditorService, bundleId: number): ReadonlyArray<RecommendedBundle>;
8118
+ /**
8119
+ * - **ThreadSafety**: Unsafe
8120
+ * - **Tags**: Yields
8121
+ *
8122
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetRecommendedBundlesAsync)
8123
+ */
8124
+ GetRecommendedBundlesAsync(this: AvatarEditorService, bundleId: number): Array<unknown>;
7986
8125
  /**
7987
8126
  * Returns a `CatalogPages` object containing the result of the given search.
7988
8127
  *
@@ -7992,8 +8131,17 @@ interface AvatarEditorService extends Instance {
7992
8131
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#SearchCatalog)
7993
8132
  * @param this A service to support developer Avatar Editors.
7994
8133
  * @param searchParameters An object containing the parameters used for the search.
8134
+ *
8135
+ * @deprecated SearchCatalogAsync
7995
8136
  */
7996
8137
  SearchCatalog(this: AvatarEditorService, searchParameters: CatalogSearchParams): CatalogPages;
8138
+ /**
8139
+ * - **ThreadSafety**: Unsafe
8140
+ * - **Tags**: Yields
8141
+ *
8142
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#SearchCatalogAsync)
8143
+ */
8144
+ SearchCatalogAsync(this: AvatarEditorService, searchParameters: CatalogSearchParams): CatalogPages;
7997
8145
  /**
7998
8146
  * Fires when the `AvatarEditorService:PromptAllowInventoryReadAccess()` prompt is responded to by the user.
7999
8147
  *
@@ -8136,8 +8284,17 @@ interface BadgeService extends Instance {
8136
8284
  * @param userId The `Player.UserId` of the user the badge is to be awarded to.
8137
8285
  * @param badgeId The ID of the badge to be awarded.
8138
8286
  * @returns Boolean of `true` if the badge was awarded successfully.
8287
+ *
8288
+ * @deprecated AwardBadgeAsync
8139
8289
  */
8140
8290
  AwardBadge(this: BadgeService, userId: number, badgeId: number): boolean;
8291
+ /**
8292
+ * - **ThreadSafety**: Unsafe
8293
+ * - **Tags**: Yields
8294
+ *
8295
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BadgeService#AwardBadgeAsync)
8296
+ */
8297
+ AwardBadgeAsync(this: BadgeService, userId: number, badgeId: number): boolean;
8141
8298
  /**
8142
8299
  * Checks a list of badge IDs against a `UserId` and returns a list of badge IDs that the player owns.
8143
8300
  *
@@ -10175,8 +10332,8 @@ interface CaptureService extends Instance {
10175
10332
  *
10176
10333
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#PromptSaveCapturesToGallery)
10177
10334
  * @param this A service which provides control over screenshot and video capture features.
10178
- * @param captures
10179
- * @param resultCallback A callback function that will be invoked with a dictionary mapping each `contentId` to a boolean indicating if the user accepted saving that capture.
10335
+ * @param captures An array of content IDs and/or `Capture` objects.
10336
+ * @param resultCallback A callback function that will be invoked with a dictionary mapping each `contentId` and/or `Capture` object to a boolean indicating if the user accepted saving that capture.
10180
10337
  */
10181
10338
  PromptSaveCapturesToGallery<T extends string>(this: CaptureService, contentIds: Array<T>, resultCallback: (results: Record<T, boolean>) => void): void;
10182
10339
  /**
@@ -10186,7 +10343,7 @@ interface CaptureService extends Instance {
10186
10343
  *
10187
10344
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#PromptShareCapture)
10188
10345
  * @param this A service which provides control over screenshot and video capture features.
10189
- * @param captureContent
10346
+ * @param captureContent A `Content` containing a `contentId` or `Capture` object.
10190
10347
  * @param launchData An optional string to include as launch data in the invite link.
10191
10348
  * @param onAcceptedCallback An optional callback function invoked if the user accepts sharing.
10192
10349
  * @param onDeniedCallback An optional callback function invoked if the user denies sharing.
@@ -10252,7 +10409,7 @@ interface CaptureService extends Instance {
10252
10409
  *
10253
10410
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#StartVideoCaptureAsync)
10254
10411
  * @param this A service which provides control over screenshot and video capture features.
10255
- * @param onCaptureReady
10412
+ * @param onCaptureReady A callback function that is called on video capture completion with a `VideoCaptureResult` and, if successful, a `VideoCapture`.
10256
10413
  * @param captureParams
10257
10414
  */
10258
10415
  StartVideoCaptureAsync(this: CaptureService, onCaptureReady: Callback, captureParams?: object): Enum.VideoCaptureStartedResult;
@@ -16616,6 +16773,10 @@ interface GenerationService extends Instance {
16616
16773
  * - **Tags**: Yields
16617
16774
  *
16618
16775
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GenerationService#GenerateModelAsync)
16776
+ * @param this Service that allows developers to generate 3D objects from text prompts.
16777
+ * @param inputs
16778
+ * @param schema
16779
+ * @param options
16619
16780
  */
16620
16781
  GenerateModelAsync(this: GenerationService, inputs: object, schema: object, options?: object): unknown;
16621
16782
  /**
@@ -22872,8 +23033,17 @@ interface Humanoid extends Instance {
22872
23033
  * @param this A special object that gives models the functionality of a character.
22873
23034
  * @param humanoidDescription The `HumanoidDescription` instance which you want to set the character to match.
22874
23035
  * @param assetTypeVerification The asset type verification mode.
23036
+ *
23037
+ * @deprecated ApplyDescriptionAsync
22875
23038
  */
22876
23039
  ApplyDescription(this: Humanoid, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
23040
+ /**
23041
+ * - **ThreadSafety**: Unsafe
23042
+ * - **Tags**: Yields
23043
+ *
23044
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Humanoid#ApplyDescriptionAsync)
23045
+ */
23046
+ ApplyDescriptionAsync(this: Humanoid, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
22877
23047
  /**
22878
23048
  * Makes the character's look match that of the passed in `HumanoidDescription`, even after external changes.
22879
23049
  *
@@ -22884,8 +23054,17 @@ interface Humanoid extends Instance {
22884
23054
  * @param this A special object that gives models the functionality of a character.
22885
23055
  * @param humanoidDescription The `HumanoidDescription` instance which you want to set the character to match.
22886
23056
  * @param assetTypeVerification The asset type verification mode.
23057
+ *
23058
+ * @deprecated ApplyDescriptionResetAsync
22887
23059
  */
22888
23060
  ApplyDescriptionReset(this: Humanoid, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
23061
+ /**
23062
+ * - **ThreadSafety**: Unsafe
23063
+ * - **Tags**: Yields
23064
+ *
23065
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Humanoid#ApplyDescriptionResetAsync)
23066
+ */
23067
+ ApplyDescriptionResetAsync(this: Humanoid, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
22889
23068
  /**
22890
23069
  * Plays emotes and returns if was successfully ran.
22891
23070
  *
@@ -22896,8 +23075,17 @@ interface Humanoid extends Instance {
22896
23075
  * @param this A special object that gives models the functionality of a character.
22897
23076
  * @param emoteName name of the emote to play.
22898
23077
  * @returns successfully played.
23078
+ *
23079
+ * @deprecated PlayEmoteAsync
22899
23080
  */
22900
23081
  PlayEmote(this: Humanoid, emoteName: string): boolean;
23082
+ /**
23083
+ * - **ThreadSafety**: Unsafe
23084
+ * - **Tags**: Yields
23085
+ *
23086
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Humanoid#PlayEmoteAsync)
23087
+ */
23088
+ PlayEmoteAsync(this: Humanoid, emoteName: string): boolean;
22901
23089
  /**
22902
23090
  * **Deprecated:**
22903
23091
  *
@@ -23565,8 +23753,6 @@ interface HumanoidDescription extends Instance {
23565
23753
  readonly EquippedEmotesChanged: RBXScriptSignal<(newEquippedEmotes: EquippedEmotes) => void>;
23566
23754
  }
23567
23755
  /**
23568
- * - **Tags**: NotBrowsable
23569
- *
23570
23756
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription)
23571
23757
  */
23572
23758
  interface HumanoidRigDescription extends Instance {
@@ -24682,6 +24868,12 @@ interface InputBinding extends Instance {
24682
24868
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#Left)
24683
24869
  */
24684
24870
  Left: Enum.KeyCode;
24871
+ /**
24872
+ * - **ThreadSafety**: ReadSafe
24873
+ *
24874
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#PointerIndex)
24875
+ */
24876
+ PointerIndex: number;
24685
24877
  /**
24686
24878
  * Numerical value above which to fire an `InputAction` with a `Type` of `Bool`.
24687
24879
  *
@@ -24996,10 +25188,19 @@ interface InsertService extends Instance {
24996
25188
  * @param searchText String used to search for free decals in the Catalog.
24997
25189
  * @param pageNum The page number in the Catalog to return.
24998
25190
  * @returns A single table (of returned free decals) wrapped in a table.
25191
+ *
25192
+ * @deprecated GetFreeDecalsAsync
24999
25193
  */
25000
25194
  GetFreeDecals(this: InsertService, searchText: string, pageNum: number): [
25001
25195
  Array<FreeSearchResult>
25002
25196
  ];
25197
+ /**
25198
+ * - **ThreadSafety**: Unsafe
25199
+ * - **Tags**: Yields
25200
+ *
25201
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InsertService#GetFreeDecalsAsync)
25202
+ */
25203
+ GetFreeDecalsAsync(this: InsertService, searchText: string, pageNum: number): Array<unknown>;
25003
25204
  /**
25004
25205
  * Retrieves a list of Free Models from the Catalog.
25005
25206
  *
@@ -25011,10 +25212,19 @@ interface InsertService extends Instance {
25011
25212
  * @param searchText String used to search for free decals in the Catalog.
25012
25213
  * @param pageNum The page number in the Catalog to return.
25013
25214
  * @returns A single table (of returned free models) wrapped in a table.
25215
+ *
25216
+ * @deprecated GetFreeModelsAsync
25014
25217
  */
25015
25218
  GetFreeModels(this: InsertService, searchText: string, pageNum: number): [
25016
25219
  Array<FreeSearchResult>
25017
25220
  ];
25221
+ /**
25222
+ * - **ThreadSafety**: Unsafe
25223
+ * - **Tags**: Yields
25224
+ *
25225
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InsertService#GetFreeModelsAsync)
25226
+ */
25227
+ GetFreeModelsAsync(this: InsertService, searchText: string, pageNum: number): Array<unknown>;
25018
25228
  /**
25019
25229
  * Returns the latest AssetVersionId of an asset for assets created by the place creator. Can be used in combination with `InsertService:LoadAssetVersion()` to load the latest version of a model, even if it gets updated while the game is running.
25020
25230
  *
@@ -25779,8 +25989,17 @@ interface KeyframeSequenceProvider extends Instance {
25779
25989
  * @param this Provides functions to load and preview `KeyframeSequence`.
25780
25990
  * @param userId The user ID of the user.
25781
25991
  * @returns An `InventoryPages` of animations.
25992
+ *
25993
+ * @deprecated GetAnimationsAsync
25782
25994
  */
25783
25995
  GetAnimations(this: KeyframeSequenceProvider, userId: number): InventoryPages<number>;
25996
+ /**
25997
+ * - **ThreadSafety**: Unsafe
25998
+ * - **Tags**: Yields
25999
+ *
26000
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/KeyframeSequenceProvider#GetAnimationsAsync)
26001
+ */
26002
+ GetAnimationsAsync(this: KeyframeSequenceProvider, userId: number): Instance | undefined;
25784
26003
  /**
25785
26004
  * Returns a KeyframeSequence based on the specified assetId asynchronously.
25786
26005
  *
@@ -26998,6 +27217,8 @@ interface MLService extends Instance {
26998
27217
  CreateSessionAsync(this: MLService, assetId: string): MLSession;
26999
27218
  }
27000
27219
  /**
27220
+ * - **Tags**: NotBrowsable
27221
+ *
27001
27222
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
27002
27223
  */
27003
27224
  interface MakeupDescription extends Instance {
@@ -27250,6 +27471,8 @@ interface MarketplaceService extends Instance {
27250
27471
  * @param assetId The asset ID of the specified product.
27251
27472
  * @param infoType An `InfoType` enum value specifying the type of information being retrieved.
27252
27473
  * @returns A dictionary containing information about the queried item, described in the previous tables.
27474
+ *
27475
+ * @deprecated GetProductInfoAsync
27253
27476
  */
27254
27477
  GetProductInfo(this: MarketplaceService, id: number): AssetProductInfo;
27255
27478
  GetProductInfo(this: MarketplaceService, id: number, infoType: CastsToEnum<Enum.InfoType.Asset>): AssetProductInfo;
@@ -27258,6 +27481,13 @@ interface MarketplaceService extends Instance {
27258
27481
  GetProductInfo(this: MarketplaceService, id: number, infoType: CastsToEnum<Enum.InfoType.Product>): DeveloperProductInfo;
27259
27482
  GetProductInfo(this: MarketplaceService, id: number, infoType: CastsToEnum<Enum.InfoType.Subscription>): SubscriptionProductInfo;
27260
27483
  GetProductInfo(this: MarketplaceService, id: number, infoType?: CastsToEnum<Enum.InfoType>): AssetProductInfo | BundleInfo | GamePassProductInfo | DeveloperProductInfo | SubscriptionProductInfo;
27484
+ /**
27485
+ * - **ThreadSafety**: Unsafe
27486
+ * - **Tags**: Yields
27487
+ *
27488
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#GetProductInfoAsync)
27489
+ */
27490
+ GetProductInfoAsync(this: MarketplaceService, assetId: number, infoType?: CastsToEnum<Enum.InfoType>): object;
27261
27491
  /**
27262
27492
  * Returns the product information of a subscription for the given `subscriptionId`.
27263
27493
  *
@@ -27328,8 +27558,17 @@ interface MarketplaceService extends Instance {
27328
27558
  * @param player The `Player` whose inventory is tested for ownership of the given asset.
27329
27559
  * @param assetId The asset ID for which the given player's inventory is tested.
27330
27560
  * @returns Indicates whether the given player's inventory contains the given asset.
27561
+ *
27562
+ * @deprecated PlayerOwnsAssetAsync
27331
27563
  */
27332
27564
  PlayerOwnsAsset(this: MarketplaceService, player: Player, assetId: number): boolean;
27565
+ /**
27566
+ * - **ThreadSafety**: Unsafe
27567
+ * - **Tags**: Yields
27568
+ *
27569
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PlayerOwnsAssetAsync)
27570
+ */
27571
+ PlayerOwnsAssetAsync(this: MarketplaceService, player: Instance, assetId: number): boolean;
27333
27572
  /**
27334
27573
  * Returns whether the given player owns the given bundle.
27335
27574
  *
@@ -27341,13 +27580,24 @@ interface MarketplaceService extends Instance {
27341
27580
  * @param player The `Player` whose inventory is tested for ownership of the given bundle.
27342
27581
  * @param bundleId The bundle ID for which the given player's inventory is tested.
27343
27582
  * @returns Indicates whether the given player's inventory contains the given bundle.
27583
+ *
27584
+ * @deprecated PlayerOwnsBundleAsync
27344
27585
  */
27345
27586
  PlayerOwnsBundle(this: MarketplaceService, player: Player, bundleId: number): boolean;
27587
+ /**
27588
+ * - **ThreadSafety**: Unsafe
27589
+ * - **Tags**: Yields
27590
+ *
27591
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PlayerOwnsBundleAsync)
27592
+ */
27593
+ PlayerOwnsBundleAsync(this: MarketplaceService, player: Player, bundleId: number): boolean;
27346
27594
  /**
27347
27595
  * - **ThreadSafety**: Unsafe
27348
27596
  * - **Tags**: Yields
27349
27597
  *
27350
27598
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#RankProductsAsync)
27599
+ * @param this The service responsible for in-experience transactions.
27600
+ * @param productIdentifiers
27351
27601
  */
27352
27602
  RankProductsAsync(this: MarketplaceService, productIdentifiers: Array<unknown>): Array<unknown>;
27353
27603
  /**
@@ -27355,6 +27605,8 @@ interface MarketplaceService extends Instance {
27355
27605
  * - **Tags**: Yields
27356
27606
  *
27357
27607
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#RecommendTopProductsAsync)
27608
+ * @param this The service responsible for in-experience transactions.
27609
+ * @param infoTypes
27358
27610
  */
27359
27611
  RecommendTopProductsAsync(this: MarketplaceService, infoTypes: Array<unknown>): Array<unknown>;
27360
27612
  /**
@@ -27577,6 +27829,13 @@ interface MaterialVariant extends Instance {
27577
27829
  * @deprecated
27578
27830
  */
27579
27831
  readonly _nominal_MaterialVariant: unique symbol;
27832
+ /**
27833
+ * - **ThreadSafety**: ReadSafe
27834
+ * - **Tags**: NotBrowsable
27835
+ *
27836
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MaterialVariant#AlphaMode)
27837
+ */
27838
+ AlphaMode: Enum.AlphaMode;
27580
27839
  /**
27581
27840
  * Category Material this variant belongs to.
27582
27841
  *
@@ -28083,12 +28342,17 @@ interface ModerationService extends Instance {
28083
28342
  * - **ThreadSafety**: Unsafe
28084
28343
  *
28085
28344
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ModerationService#BindReviewableContentEventProcessor)
28345
+ * @param this
28346
+ * @param priority
28347
+ * @param callback
28086
28348
  */
28087
28349
  BindReviewableContentEventProcessor(this: ModerationService, priority: number, callback: Callback): RBXScriptConnection;
28088
28350
  /**
28089
28351
  * - **ThreadSafety**: Unsafe
28090
28352
  *
28091
28353
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ModerationService#CreateReviewableContentKey)
28354
+ * @param this
28355
+ * @param content
28092
28356
  */
28093
28357
  CreateReviewableContentKey(this: ModerationService, content: Content): string;
28094
28358
  /**
@@ -28096,6 +28360,8 @@ interface ModerationService extends Instance {
28096
28360
  * - **Tags**: Yields
28097
28361
  *
28098
28362
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ModerationService#CreateReviewableContentAsync)
28363
+ * @param this
28364
+ * @param config
28099
28365
  */
28100
28366
  CreateReviewableContentAsync(this: ModerationService, config: object): string;
28101
28367
  /**
@@ -32059,12 +32325,6 @@ interface Workspace extends WorldRoot {
32059
32325
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#AllowThirdPartySales)
32060
32326
  */
32061
32327
  AllowThirdPartySales: boolean;
32062
- /**
32063
- * - **ThreadSafety**: ReadSafe
32064
- *
32065
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#AuthorityMode)
32066
- */
32067
- AuthorityMode: Enum.AuthorityMode;
32068
32328
  /**
32069
32329
  * Specifies the animation throttling mode for the local client.
32070
32330
  *
@@ -32173,7 +32433,7 @@ interface Workspace extends WorldRoot {
32173
32433
  */
32174
32434
  GetNumAwakeParts(this: Workspace): number;
32175
32435
  /**
32176
- * Returns an integer, between 0 and 100, representing the percentage of real-time that physics simulation is currently being throttled to.
32436
+ * Returns an integer, between 0 and 100, representing the percentage of real time that physics simulation is currently being throttled to.
32177
32437
  *
32178
32438
  * - **ThreadSafety**: Safe
32179
32439
  *
@@ -34195,8 +34455,17 @@ interface Player extends Instance {
34195
34455
  * @param this An object that represents a presently connected client to the experience.
34196
34456
  * @param maxFriends The maximum number of online connections to return.
34197
34457
  * @returns A dictionary of online connections (see the table above).
34458
+ *
34459
+ * @deprecated GetFriendsOnlineAsync
34198
34460
  */
34199
34461
  GetFriendsOnline(this: Player, maxFriends?: number): Array<FriendOnlineInfo>;
34462
+ /**
34463
+ * - **ThreadSafety**: Unsafe
34464
+ * - **Tags**: Yields
34465
+ *
34466
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#GetFriendsOnlineAsync)
34467
+ */
34468
+ GetFriendsOnlineAsync(this: Player, maxFriends?: number): Array<unknown>;
34200
34469
  /**
34201
34470
  * Returns the player's rank in the group as an integer.
34202
34471
  *
@@ -34207,8 +34476,17 @@ interface Player extends Instance {
34207
34476
  * @param this An object that represents a presently connected client to the experience.
34208
34477
  * @param groupId The `groupId` of the specified group.
34209
34478
  * @returns The player's rank in the group.
34479
+ *
34480
+ * @deprecated GetRankInGroupAsync
34210
34481
  */
34211
34482
  GetRankInGroup(this: Player, groupId: number): number;
34483
+ /**
34484
+ * - **ThreadSafety**: Unsafe
34485
+ * - **Tags**: Yields
34486
+ *
34487
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#GetRankInGroupAsync)
34488
+ */
34489
+ GetRankInGroupAsync(this: Player, groupId: number): number;
34212
34490
  /**
34213
34491
  * Returns the player's role in the group as a string, or `Guest` if the player isn't part of the group.
34214
34492
  *
@@ -34219,8 +34497,17 @@ interface Player extends Instance {
34219
34497
  * @param this An object that represents a presently connected client to the experience.
34220
34498
  * @param groupId The group ID of the specified group.
34221
34499
  * @returns The player's role in the specified group, or `Guest` if the player is not a member.
34500
+ *
34501
+ * @deprecated GetRoleInGroupAsync
34222
34502
  */
34223
34503
  GetRoleInGroup(this: Player, groupId: number): string;
34504
+ /**
34505
+ * - **ThreadSafety**: Unsafe
34506
+ * - **Tags**: Yields
34507
+ *
34508
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#GetRoleInGroupAsync)
34509
+ */
34510
+ GetRoleInGroupAsync(this: Player, groupId: number): string;
34224
34511
  /**
34225
34512
  * **Deprecated:** This function is obsolete because the Best Friends feature was removed. Use `Player:IsFriendsWith()` instead.
34226
34513
  *
@@ -34246,8 +34533,17 @@ interface Player extends Instance {
34246
34533
  * @param this An object that represents a presently connected client to the experience.
34247
34534
  * @param userId The `Player.UserId` of the specified player.
34248
34535
  * @returns A boolean indicating whether a player is a connection of the specified user.
34536
+ *
34537
+ * @deprecated IsFriendsWithAsync
34249
34538
  */
34250
34539
  IsFriendsWith(this: Player, userId: number): boolean;
34540
+ /**
34541
+ * - **ThreadSafety**: Unsafe
34542
+ * - **Tags**: Yields
34543
+ *
34544
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#IsFriendsWithAsync)
34545
+ */
34546
+ IsFriendsWithAsync(this: Player, userId: number): boolean;
34251
34547
  /**
34252
34548
  * Checks whether a player is a member of a group with the given ID.
34253
34549
  *
@@ -34258,8 +34554,17 @@ interface Player extends Instance {
34258
34554
  * @param this An object that represents a presently connected client to the experience.
34259
34555
  * @param groupId The group ID of the specified group.
34260
34556
  * @returns A boolean indicating whether the player is in the specified group.
34557
+ *
34558
+ * @deprecated IsInGroupAsync
34261
34559
  */
34262
34560
  IsInGroup(this: Player, groupId: number): boolean;
34561
+ /**
34562
+ * - **ThreadSafety**: Unsafe
34563
+ * - **Tags**: Yields
34564
+ *
34565
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#IsInGroupAsync)
34566
+ */
34567
+ IsInGroupAsync(this: Player, groupId: number): boolean;
34263
34568
  /**
34264
34569
  * Creates a new character for the player, removing the old one. Also clears the player's `Backpack` and `PlayerGui`.
34265
34570
  *
@@ -34268,8 +34573,17 @@ interface Player extends Instance {
34268
34573
  *
34269
34574
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#LoadCharacter)
34270
34575
  * @param this An object that represents a presently connected client to the experience.
34576
+ *
34577
+ * @deprecated LoadCharacterAsync
34271
34578
  */
34272
34579
  LoadCharacter(this: Player): void;
34580
+ /**
34581
+ * - **ThreadSafety**: Unsafe
34582
+ * - **Tags**: Yields
34583
+ *
34584
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#LoadCharacterAsync)
34585
+ */
34586
+ LoadCharacterAsync(this: Player): void;
34273
34587
  /**
34274
34588
  * Spawns a player character with everything equipped in the passed in `HumanoidDescription`.
34275
34589
  *
@@ -34279,8 +34593,17 @@ interface Player extends Instance {
34279
34593
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#LoadCharacterWithHumanoidDescription)
34280
34594
  * @param this An object that represents a presently connected client to the experience.
34281
34595
  * @param humanoidDescription A `HumanoidDescription` containing traits like body parts/colors, body scaling, accessories, clothing, and animations that will be equipped to the loaded character.
34596
+ *
34597
+ * @deprecated LoadCharacterWithHumanoidDescriptionAsync
34282
34598
  */
34283
34599
  LoadCharacterWithHumanoidDescription(this: Player, humanoidDescription: HumanoidDescription): void;
34600
+ /**
34601
+ * - **ThreadSafety**: Unsafe
34602
+ * - **Tags**: Yields
34603
+ *
34604
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#LoadCharacterWithHumanoidDescriptionAsync)
34605
+ */
34606
+ LoadCharacterWithHumanoidDescriptionAsync(this: Player, humanoidDescription: HumanoidDescription): void;
34284
34607
  /**
34285
34608
  * Requests that the server stream to the player around the specified location.
34286
34609
  *
@@ -34885,8 +35208,17 @@ interface Players extends Instance {
34885
35208
  * @param rigType Specifies whether the returned character will be R6 or R15.
34886
35209
  * @param assetTypeVerification The asset type verification mode.
34887
35210
  * @returns A `Humanoid` character `Model`.
35211
+ *
35212
+ * @deprecated CreateHumanoidModelFromDescriptionAsync
34888
35213
  */
34889
35214
  CreateHumanoidModelFromDescription(this: Players, description: HumanoidDescription, rigType: CastsToEnum<Enum.HumanoidRigType>, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): Model;
35215
+ /**
35216
+ * - **ThreadSafety**: Unsafe
35217
+ * - **Tags**: Yields
35218
+ *
35219
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Players#CreateHumanoidModelFromDescriptionAsync)
35220
+ */
35221
+ CreateHumanoidModelFromDescriptionAsync(this: Players, description: HumanoidDescription, rigType: CastsToEnum<Enum.HumanoidRigType>, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): Model;
34890
35222
  /**
34891
35223
  * Returns a character Model set-up with everything equipped to match the avatar of the user specified by the passed in userId.
34892
35224
  *
@@ -34897,8 +35229,17 @@ interface Players extends Instance {
34897
35229
  * @param this A service that contains presently connected `Player` objects.
34898
35230
  * @param userId The userId for a Roblox user. (The UserId is the number in the profile of the user e.g www.roblox.com/users/1/profile).
34899
35231
  * @returns A Humanoid character Model.
35232
+ *
35233
+ * @deprecated CreateHumanoidModelFromUserIdAsync
34900
35234
  */
34901
35235
  CreateHumanoidModelFromUserId(this: Players, userId: number): Model;
35236
+ /**
35237
+ * - **ThreadSafety**: Unsafe
35238
+ * - **Tags**: Yields
35239
+ *
35240
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Players#CreateHumanoidModelFromUserIdAsync)
35241
+ */
35242
+ CreateHumanoidModelFromUserIdAsync(this: Players, userId: number): Model;
34902
35243
  /**
34903
35244
  * Retrieves the ban and unban history of any user within the experience's universe. This method is enabled and disabled by the `Players.BanningEnabled` property, which you can toggle in Studio.
34904
35245
  *
@@ -34959,8 +35300,17 @@ interface Players extends Instance {
34959
35300
  * @param this A service that contains presently connected `Player` objects.
34960
35301
  * @param outfitId The ID of the outfit for which the HumanoidDescription is sought.
34961
35302
  * @returns HumanoidDescription initialized with the specification for the passed in outfitId.
35303
+ *
35304
+ * @deprecated GetHumanoidDescriptionFromOutfitIdAsync
34962
35305
  */
34963
35306
  GetHumanoidDescriptionFromOutfitId(this: Players, outfitId: number): HumanoidDescription;
35307
+ /**
35308
+ * - **ThreadSafety**: Unsafe
35309
+ * - **Tags**: Yields
35310
+ *
35311
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Players#GetHumanoidDescriptionFromOutfitIdAsync)
35312
+ */
35313
+ GetHumanoidDescriptionFromOutfitIdAsync(this: Players, outfitId: number): HumanoidDescription;
34964
35314
  /**
34965
35315
  * Returns a HumanoidDescription which specifies everything equipped for the avatar of the user specified by the passed in userId.
34966
35316
  *
@@ -34971,8 +35321,17 @@ interface Players extends Instance {
34971
35321
  * @param this A service that contains presently connected `Player` objects.
34972
35322
  * @param userId The userId for a Roblox user. (The UserId is the number in the profile of the user e.g www.roblox.com/users/1/profile).
34973
35323
  * @returns HumanoidDescription initialized with the passed in user's avatar specification.
35324
+ *
35325
+ * @deprecated GetHumanoidDescriptionFromUserIdAsync
34974
35326
  */
34975
35327
  GetHumanoidDescriptionFromUserId(this: Players, userId: number): HumanoidDescription;
35328
+ /**
35329
+ * - **ThreadSafety**: Unsafe
35330
+ * - **Tags**: Yields
35331
+ *
35332
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Players#GetHumanoidDescriptionFromUserIdAsync)
35333
+ */
35334
+ GetHumanoidDescriptionFromUserIdAsync(this: Players, userId: number): HumanoidDescription;
34976
35335
  /**
34977
35336
  * Sends a query to the Roblox website for the username of an account with a given `UserId`.
34978
35337
  *
@@ -38000,6 +38359,51 @@ interface Sky extends Instance {
38000
38359
  */
38001
38360
  SunTextureId: ContentId;
38002
38361
  }
38362
+ /**
38363
+ * - **Tags**: NotCreatable
38364
+ *
38365
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimAnimationDataEntity)
38366
+ */
38367
+ interface SlimAnimationDataEntity extends Instance {
38368
+ /**
38369
+ * **DO NOT USE!**
38370
+ *
38371
+ * This field exists to force TypeScript to recognize this as a nominal type
38372
+ * @hidden
38373
+ * @deprecated
38374
+ */
38375
+ readonly _nominal_SlimAnimationDataEntity: unique symbol;
38376
+ }
38377
+ /**
38378
+ * - **Tags**: NotCreatable, Service
38379
+ *
38380
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimAnimationReplicationService)
38381
+ */
38382
+ interface SlimAnimationReplicationService extends Instance {
38383
+ /**
38384
+ * **DO NOT USE!**
38385
+ *
38386
+ * This field exists to force TypeScript to recognize this as a nominal type
38387
+ * @hidden
38388
+ * @deprecated
38389
+ */
38390
+ readonly _nominal_SlimAnimationReplicationService: unique symbol;
38391
+ }
38392
+ /**
38393
+ * - **Tags**: NotCreatable, Service, NotReplicated
38394
+ *
38395
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimReplicationService)
38396
+ */
38397
+ interface SlimReplicationService extends Instance {
38398
+ /**
38399
+ * **DO NOT USE!**
38400
+ *
38401
+ * This field exists to force TypeScript to recognize this as a nominal type
38402
+ * @hidden
38403
+ * @deprecated
38404
+ */
38405
+ readonly _nominal_SlimReplicationService: unique symbol;
38406
+ }
38003
38407
  /**
38004
38408
  * - **Tags**: NotCreatable, Service, NotReplicated
38005
38409
  *
@@ -38284,8 +38688,17 @@ interface SocialService extends Instance {
38284
38688
  *
38285
38689
  *
38286
38690
  * @returns A tuple containing an `PromptLinkSharingResult` indicating the result of the link sharing prompt.
38691
+ *
38692
+ * @deprecated PromptLinkSharingAsync
38287
38693
  */
38288
38694
  PromptLinkSharing(this: SocialService, player: Player, options?: object): unknown;
38695
+ /**
38696
+ * - **ThreadSafety**: Unsafe
38697
+ * - **Tags**: Yields
38698
+ *
38699
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#PromptLinkSharingAsync)
38700
+ */
38701
+ PromptLinkSharingAsync(this: SocialService, player: Player, options?: object): unknown;
38289
38702
  /**
38290
38703
  * Prompts the local `Player` with a prompt to change their RSVP status to the given event.
38291
38704
  *
@@ -41061,11 +41474,20 @@ interface TeleportService extends Instance {
41061
41474
  * @param this Enables transporting `Players` between places and servers.
41062
41475
  * @param placeId The `DataModel.PlaceId` of the place the reserved server is being created for.
41063
41476
  * @returns The server access code required by `TeleportService:TeleportToPrivateServer()` and the `DataModel.PrivateServerId` for the reserved server.
41477
+ *
41478
+ * @deprecated ReserveServerAsync
41064
41479
  */
41065
41480
  ReserveServer(this: TeleportService, placeId: number): LuaTuple<[
41066
41481
  string,
41067
41482
  string
41068
41483
  ]>;
41484
+ /**
41485
+ * - **ThreadSafety**: Unsafe
41486
+ * - **Tags**: Yields
41487
+ *
41488
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TeleportService#ReserveServerAsync)
41489
+ */
41490
+ ReserveServerAsync(this: TeleportService, placeId: number): unknown;
41069
41491
  /**
41070
41492
  * The all-encompassing method to teleport a player or group of players from one server to another.
41071
41493
  *