@rbxts/types 1.0.949 → 1.0.951

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.
@@ -8,6 +8,7 @@ interface Services {
8
8
  ActivityHistoryEventService: ActivityHistoryEventService;
9
9
  AdService: AdService;
10
10
  AnalyticsService: AnalyticsService;
11
+ AnimatedImageService: AnimatedImageService;
11
12
  AnimationClipProvider: AnimationClipProvider;
12
13
  AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
13
14
  AnimationFromVideoCreatorStudioService: AnimationFromVideoCreatorStudioService;
@@ -57,7 +58,6 @@ interface Services {
57
58
  CreationDBService: CreationDBService;
58
59
  CreatorStoreService: CreatorStoreService;
59
60
  CrossDMScriptChangeListener: CrossDMScriptChangeListener;
60
- DataModelPatchService: DataModelPatchService;
61
61
  DataStoreService: DataStoreService;
62
62
  Debris: Debris;
63
63
  DebuggablePluginWatcher: DebuggablePluginWatcher;
@@ -138,6 +138,7 @@ interface Services {
138
138
  MLModelDeliveryService: MLModelDeliveryService;
139
139
  MLService: MLService;
140
140
  ModerationService: ModerationService;
141
+ MomentsService: MomentsService;
141
142
  OmniRecommendationsService: OmniRecommendationsService;
142
143
  OpenCloudService: OpenCloudService;
143
144
  Packages: Packages;
@@ -290,6 +291,8 @@ interface CreatableInstances {
290
291
  AnimationGraphDefinition: AnimationGraphDefinition;
291
292
  AnimationNodeDefinition: AnimationNodeDefinition;
292
293
  AnimationRigData: AnimationRigData;
294
+ AnimationValueNodeDefinition: AnimationValueNodeDefinition;
295
+ AnimationValueOutputDefinition: AnimationValueOutputDefinition;
293
296
  Animator: Animator;
294
297
  Annotation: Annotation;
295
298
  ArcHandles: ArcHandles;
@@ -599,6 +602,7 @@ interface CreatableInstances {
599
602
  WrapTextureTransfer: WrapTextureTransfer;
600
603
  }
601
604
  interface Instances extends Services, CreatableInstances {
605
+ AnimatedImage: AnimatedImage;
602
606
  AnimationClip: AnimationClip;
603
607
  AnimationImportData: AnimationImportData;
604
608
  AnimationStreamTrack: AnimationStreamTrack;
@@ -775,6 +779,7 @@ interface Instances extends Services, CreatableInstances {
775
779
  WorldRoot: WorldRoot;
776
780
  }
777
781
  interface Objects extends Instances {
782
+ AnimatedImageTrack: AnimatedImageTrack;
778
783
  AnimationNode: AnimationNode;
779
784
  Capture: Capture;
780
785
  ConfigSnapshot: ConfigSnapshot;
@@ -858,6 +863,21 @@ interface RBXObject {
858
863
  */
859
864
  readonly Changed: unknown;
860
865
  }
866
+ /**
867
+ * - **Tags**: NotCreatable, NotReplicated
868
+ *
869
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimatedImageTrack)
870
+ */
871
+ interface AnimatedImageTrack extends RBXObject {
872
+ /**
873
+ * **DO NOT USE!**
874
+ *
875
+ * This field exists to force TypeScript to recognize this as a nominal type
876
+ * @hidden
877
+ * @deprecated
878
+ */
879
+ readonly _nominal_AnimatedImageTrack: unique symbol;
880
+ }
861
881
  /**
862
882
  * - **Tags**: NotCreatable, NotReplicated
863
883
  *
@@ -3406,9 +3426,17 @@ interface AnalyticsService extends Instance {
3406
3426
  */
3407
3427
  LogFunnelStepEvent(this: AnalyticsService, player: Player, funnelName: string, funnelSessionId?: string, step?: number, stepName?: string, customFields?: object): void;
3408
3428
  /**
3429
+ * Logs a journey event used to track non-linear player paths through an experience.
3430
+ *
3409
3431
  * - **ThreadSafety**: Unsafe
3410
3432
  *
3411
3433
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogJourneyEvent)
3434
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3435
+ * @param player The player who triggered the journey event.
3436
+ * @param journeyName The name of the journey. This should be the same for all nodes in the journey. Cannot be empty and cannot contain a comma `,`, double quote `"`, single quote `'`, or newline character.
3437
+ * @param nodeName The name of the node the player reached in the journey. Cannot be empty, cannot contain a comma `,`, double quote `"`, single quote `'`, or newline character, and cannot start with `__` (double underscore), which is reserved.
3438
+ * @param journeySessionId Optional unique identifier for the journey session. This should be the same for all nodes in a single session of the journey. If provided, cannot contain a comma `,`, double quote `"`, single quote `'`, or newline character.
3439
+ * @param customFields Optional dictionary of custom fields that will provide breakdowns in Roblox-provided charts. Only specific keys, provided by `AnalyticsCustomFieldKeys`, will be used for these breakdowns. Limited to 8,000 unique combinations of values across the three custom fields per experience.
3412
3440
  */
3413
3441
  LogJourneyEvent(this: AnalyticsService, player: Player, journeyName: string, nodeName: string, journeySessionId?: string, customFields?: object): void;
3414
3442
  /**
@@ -3432,10 +3460,10 @@ interface AnalyticsService extends Instance {
3432
3460
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionCompleteEvent)
3433
3461
  * @param this Collection of methods that allows you to track how users interact with your experiences.
3434
3462
  * @param player The player who triggered the event.
3435
- * @param progressionPathName
3436
- * @param level
3437
- * @param levelName
3438
- * @param customFields
3463
+ * @param progressionPathName The name of the progression path this event belongs to, such as a world, chapter, or level group. This groups related progression events together. Cannot be empty and cannot contain a comma `,`, double quote `"`, single quote `'`, or newline character.
3464
+ * @param level The numeric level the player is progressing through within the progression path.
3465
+ * @param levelName The name of the level associated with this event. This field is used for display purposes in Roblox-provided charts.
3466
+ * @param customFields Optional dictionary of custom fields that will provide breakdowns in Roblox-provided charts. Only specific keys, provided by `AnalyticsCustomFieldKeys`, will be used for these breakdowns. Limited to 8,000 unique combinations of values across the three custom fields per experience.
3439
3467
  */
3440
3468
  LogProgressionCompleteEvent(this: AnalyticsService, player: Player, progressionPathName: string, level: number, levelName?: string, customFields?: object): void;
3441
3469
  /**
@@ -3446,11 +3474,11 @@ interface AnalyticsService extends Instance {
3446
3474
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionEvent)
3447
3475
  * @param this Collection of methods that allows you to track how users interact with your experiences.
3448
3476
  * @param player The player who triggered the event.
3449
- * @param progressionPathName
3450
- * @param status
3451
- * @param level
3452
- * @param levelName
3453
- * @param customFields
3477
+ * @param progressionPathName The name of the progression path this event belongs to, such as a world, chapter, or level group. This groups related progression events together. Cannot be empty and cannot contain a comma `,`, double quote `"`, single quote `'`, or newline character.
3478
+ * @param status The progression status to record, provided as an `AnalyticsProgressionType` value such as `Start`, `Complete`, or `Fail`. The `AnalyticsService:LogProgressionStartEvent()`, `AnalyticsService:LogProgressionCompleteEvent()`, and `AnalyticsService:LogProgressionFailEvent()` methods are shortcuts that set this status for you.
3479
+ * @param level The numeric level the player is progressing through within the progression path.
3480
+ * @param levelName The name of the level associated with this event. This field is used for display purposes in Roblox-provided charts.
3481
+ * @param customFields Optional dictionary of custom fields that will provide breakdowns in Roblox-provided charts. Only specific keys, provided by `AnalyticsCustomFieldKeys`, will be used for these breakdowns. Limited to 8,000 unique combinations of values across the three custom fields per experience.
3454
3482
  */
3455
3483
  LogProgressionEvent(this: AnalyticsService, player: Player, progressionPathName: string, status: CastsToEnum<Enum.AnalyticsProgressionType>, level: number, levelName?: string, customFields?: object): void;
3456
3484
  /**
@@ -3461,10 +3489,10 @@ interface AnalyticsService extends Instance {
3461
3489
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionFailEvent)
3462
3490
  * @param this Collection of methods that allows you to track how users interact with your experiences.
3463
3491
  * @param player The user who triggered the event.
3464
- * @param progressionPathName
3465
- * @param level
3466
- * @param levelName
3467
- * @param customFields
3492
+ * @param progressionPathName The name of the progression path this event belongs to, such as a world, chapter, or level group. This groups related progression events together. Cannot be empty and cannot contain a comma `,`, double quote `"`, single quote `'`, or newline character.
3493
+ * @param level The numeric level the player is progressing through within the progression path.
3494
+ * @param levelName The name of the level associated with this event. This field is used for display purposes in Roblox-provided charts.
3495
+ * @param customFields Optional dictionary of custom fields that will provide breakdowns in Roblox-provided charts. Only specific keys, provided by `AnalyticsCustomFieldKeys`, will be used for these breakdowns. Limited to 8,000 unique combinations of values across the three custom fields per experience.
3468
3496
  */
3469
3497
  LogProgressionFailEvent(this: AnalyticsService, player: Player, progressionPathName: string, level: number, levelName?: string, customFields?: object): void;
3470
3498
  /**
@@ -3475,10 +3503,10 @@ interface AnalyticsService extends Instance {
3475
3503
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#LogProgressionStartEvent)
3476
3504
  * @param this Collection of methods that allows you to track how users interact with your experiences.
3477
3505
  * @param player The player who triggered the event.
3478
- * @param progressionPathName
3479
- * @param level
3480
- * @param levelName
3481
- * @param customFields
3506
+ * @param progressionPathName The name of the progression path this event belongs to, such as a world, chapter, or level group. This groups related progression events together. Cannot be empty and cannot contain a comma `,`, double quote `"`, single quote `'`, or newline character.
3507
+ * @param level The numeric level the player is progressing through within the progression path.
3508
+ * @param levelName The name of the level associated with this event. This field is used for display purposes in Roblox-provided charts.
3509
+ * @param customFields Optional dictionary of custom fields that will provide breakdowns in Roblox-provided charts. Only specific keys, provided by `AnalyticsCustomFieldKeys`, will be used for these breakdowns. Limited to 8,000 unique combinations of values across the three custom fields per experience.
3482
3510
  */
3483
3511
  LogProgressionStartEvent(this: AnalyticsService, player: Player, progressionPathName: string, level: number, levelName?: string, customFields?: object): void;
3484
3512
  /**
@@ -3494,6 +3522,21 @@ interface AnalyticsService extends Instance {
3494
3522
  */
3495
3523
  GetPlayerSegmentsAsync(this: AnalyticsService, player: Player): object;
3496
3524
  }
3525
+ /**
3526
+ * - **Tags**: NotCreatable, Service
3527
+ *
3528
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimatedImageService)
3529
+ */
3530
+ interface AnimatedImageService extends Instance {
3531
+ /**
3532
+ * **DO NOT USE!**
3533
+ *
3534
+ * This field exists to force TypeScript to recognize this as a nominal type
3535
+ * @hidden
3536
+ * @deprecated
3537
+ */
3538
+ readonly _nominal_AnimatedImageService: unique symbol;
3539
+ }
3497
3540
  /**
3498
3541
  * References an animation asset which can be loaded by an `AnimationController`.
3499
3542
  *
@@ -4209,6 +4252,38 @@ interface AnimationTrack extends Instance {
4209
4252
  */
4210
4253
  readonly Stopped: RBXScriptSignal<() => void>;
4211
4254
  }
4255
+ /**
4256
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationValueNodeDefinition)
4257
+ */
4258
+ interface AnimationValueNodeDefinition extends Instance {
4259
+ /**
4260
+ * **DO NOT USE!**
4261
+ *
4262
+ * This field exists to force TypeScript to recognize this as a nominal type
4263
+ * @hidden
4264
+ * @deprecated
4265
+ */
4266
+ readonly _nominal_AnimationValueNodeDefinition: unique symbol;
4267
+ /**
4268
+ * - **ThreadSafety**: ReadSafe
4269
+ *
4270
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationValueNodeDefinition#NodeType)
4271
+ */
4272
+ NodeType: Enum.AnimationValueNodeType;
4273
+ }
4274
+ /**
4275
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationValueOutputDefinition)
4276
+ */
4277
+ interface AnimationValueOutputDefinition extends Instance {
4278
+ /**
4279
+ * **DO NOT USE!**
4280
+ *
4281
+ * This field exists to force TypeScript to recognize this as a nominal type
4282
+ * @hidden
4283
+ * @deprecated
4284
+ */
4285
+ readonly _nominal_AnimationValueOutputDefinition: unique symbol;
4286
+ }
4212
4287
  /**
4213
4288
  * Responsible for the playback and replication of `Animations`.
4214
4289
  *
@@ -9575,6 +9650,18 @@ interface AnimationImportData extends BaseImportData {
9575
9650
  * @deprecated
9576
9651
  */
9577
9652
  readonly _nominal_AnimationImportData: unique symbol;
9653
+ /**
9654
+ * - **ThreadSafety**: ReadSafe
9655
+ *
9656
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationImportData#ForceNewVersion)
9657
+ */
9658
+ ForceNewVersion: boolean;
9659
+ /**
9660
+ * - **ThreadSafety**: ReadSafe
9661
+ *
9662
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationImportData#VersionedAssetId)
9663
+ */
9664
+ VersionedAssetId: number;
9578
9665
  }
9579
9666
  /**
9580
9667
  * - **Tags**: NotCreatable, NotReplicated
@@ -15328,8 +15415,6 @@ interface ContextActionService extends Instance {
15328
15415
  readonly LocalToolUnequipped: RBXScriptSignal<(toolUnequipped: Instance) => void>;
15329
15416
  }
15330
15417
  /**
15331
- * - **Tags**: NotBrowsable
15332
- *
15333
15418
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ControlState)
15334
15419
  */
15335
15420
  interface ControlState extends Instance {
@@ -16300,21 +16385,6 @@ interface SpecialMesh extends FileMesh {
16300
16385
  */
16301
16386
  MeshType: Enum.MeshType;
16302
16387
  }
16303
- /**
16304
- * - **Tags**: NotCreatable, Service, NotReplicated
16305
- *
16306
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModelPatchService)
16307
- */
16308
- interface DataModelPatchService extends Instance {
16309
- /**
16310
- * **DO NOT USE!**
16311
- *
16312
- * This field exists to force TypeScript to recognize this as a nominal type
16313
- * @hidden
16314
- * @deprecated
16315
- */
16316
- readonly _nominal_DataModelPatchService: unique symbol;
16317
- }
16318
16388
  /**
16319
16389
  * Specifies additional parameters for a `GlobalDataStore:GetAsync()` call.
16320
16390
  *
@@ -18727,6 +18797,8 @@ interface Decal extends FaceInstance {
18727
18797
  */
18728
18798
  readonly _nominal_Decal: unique symbol;
18729
18799
  /**
18800
+ * When set to `true`, the decal's image asset is eligible for automatic localization capture.
18801
+ *
18730
18802
  * - **ThreadSafety**: ReadSafe
18731
18803
  *
18732
18804
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#AutoLocalize)
@@ -18786,12 +18858,16 @@ interface Decal extends FaceInstance {
18786
18858
  */
18787
18859
  LocalTransparencyModifier: number;
18788
18860
  /**
18861
+ * `Content` object that determines the metalness map of the surface.
18862
+ *
18789
18863
  * - **ThreadSafety**: ReadSafe
18790
18864
  *
18791
18865
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#MetalnessMapContent)
18792
18866
  */
18793
18867
  get MetalnessMapContent(): Content;
18794
18868
  /**
18869
+ * `Content` object that determines the normal map of the surface.
18870
+ *
18795
18871
  * - **ThreadSafety**: ReadSafe
18796
18872
  *
18797
18873
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#NormalMapContent)
@@ -18806,6 +18882,8 @@ interface Decal extends FaceInstance {
18806
18882
  */
18807
18883
  Rotation: number;
18808
18884
  /**
18885
+ * `Content` object that determines the roughness map of the surface.
18886
+ *
18809
18887
  * - **ThreadSafety**: ReadSafe
18810
18888
  *
18811
18889
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#RoughnessMapContent)
@@ -18814,6 +18892,8 @@ interface Decal extends FaceInstance {
18814
18892
  /**
18815
18893
  * **Deprecated:** This non-functional property is deprecated and should not be used in new work.
18816
18894
  *
18895
+ * Deprecated property that previously set the shininess of the decal.
18896
+ *
18817
18897
  * - **ThreadSafety**: ReadSafe
18818
18898
  * - **Tags**: NotReplicated
18819
18899
  *
@@ -18825,6 +18905,8 @@ interface Decal extends FaceInstance {
18825
18905
  /**
18826
18906
  * **Deprecated:** This property no longer functions correctly and is deprecated. It should not be used in new work.
18827
18907
  *
18908
+ * Deprecated property that previously set the specularity of the decal.
18909
+ *
18828
18910
  * - **ThreadSafety**: ReadSafe
18829
18911
  * - **Tags**: NotReplicated
18830
18912
  *
@@ -19331,6 +19413,12 @@ interface Folder extends Instance {
19331
19413
  * @deprecated
19332
19414
  */
19333
19415
  readonly _nominal_Folder: unique symbol;
19416
+ /**
19417
+ * - **ThreadSafety**: ReadSafe
19418
+ *
19419
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Folder#IconTint)
19420
+ */
19421
+ IconTint: Color3;
19334
19422
  }
19335
19423
  /**
19336
19424
  * A container that stores `ProceduralModel` generation results.
@@ -20214,6 +20302,21 @@ interface GuiBase extends Instance {
20214
20302
  */
20215
20303
  readonly _nominal_GuiBase: unique symbol;
20216
20304
  }
20305
+ /**
20306
+ * - **Tags**: NotCreatable
20307
+ *
20308
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimatedImage)
20309
+ */
20310
+ interface AnimatedImage extends GuiBase {
20311
+ /**
20312
+ * **DO NOT USE!**
20313
+ *
20314
+ * This field exists to force TypeScript to recognize this as a nominal type
20315
+ * @hidden
20316
+ * @deprecated
20317
+ */
20318
+ readonly _nominal_AnimatedImage: unique symbol;
20319
+ }
20217
20320
  /**
20218
20321
  * An abstract class inherited by 2D `GuiObjects`.
20219
20322
  *
@@ -20591,6 +20694,8 @@ interface GuiObject extends GuiBase2d {
20591
20694
  * - **Tags**: Hidden, NotReplicated
20592
20695
  *
20593
20696
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiObject#Transparency)
20697
+ *
20698
+ * @deprecated
20594
20699
  */
20595
20700
  Transparency: number;
20596
20701
  /**
@@ -20613,6 +20718,7 @@ interface GuiObject extends GuiBase2d {
20613
20718
  * Smoothly moves a GUI to a new `UDim2`.
20614
20719
  *
20615
20720
  * - **ThreadSafety**: Unsafe
20721
+ * - **Tags**:
20616
20722
  *
20617
20723
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiObject#TweenPosition)
20618
20724
  * @param this An abstract class for all 2D user interface objects.
@@ -20623,12 +20729,15 @@ interface GuiObject extends GuiBase2d {
20623
20729
  * @param override Whether the tween will override an in-progress tween.
20624
20730
  * @param callback A callback function to execute when the tween completes.
20625
20731
  * @returns Whether the tween will play.
20732
+ *
20733
+ * @deprecated
20626
20734
  */
20627
20735
  TweenPosition(this: GuiObject, endPosition: UDim2, easingDirection?: CastsToEnum<Enum.EasingDirection>, easingStyle?: CastsToEnum<Enum.EasingStyle>, time?: number, override?: boolean, callback?: (finishedTween: Enum.TweenStatus) => void): boolean;
20628
20736
  /**
20629
20737
  * Smoothly resizes a `GuiObject` to a new `UDim2`.
20630
20738
  *
20631
20739
  * - **ThreadSafety**: Unsafe
20740
+ * - **Tags**:
20632
20741
  *
20633
20742
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiObject#TweenSize)
20634
20743
  * @param this An abstract class for all 2D user interface objects.
@@ -20639,12 +20748,15 @@ interface GuiObject extends GuiBase2d {
20639
20748
  * @param override Whether the tween will override an in-progress tween.
20640
20749
  * @param callback A callback function to execute when the tween completes.
20641
20750
  * @returns Whether the tween will play.
20751
+ *
20752
+ * @deprecated
20642
20753
  */
20643
20754
  TweenSize(this: GuiObject, endSize: UDim2, easingDirection?: CastsToEnum<Enum.EasingDirection>, easingStyle?: CastsToEnum<Enum.EasingStyle>, time?: number, override?: boolean, callback?: (finishedTween: Enum.TweenStatus) => void): boolean;
20644
20755
  /**
20645
20756
  * Smoothly moves a GUI to a new size and position.
20646
20757
  *
20647
20758
  * - **ThreadSafety**: Unsafe
20759
+ * - **Tags**:
20648
20760
  *
20649
20761
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiObject#TweenSizeAndPosition)
20650
20762
  * @param this An abstract class for all 2D user interface objects.
@@ -20656,6 +20768,8 @@ interface GuiObject extends GuiBase2d {
20656
20768
  * @param override Whether the tween will override an in-progress tween.
20657
20769
  * @param callback A callback function to execute when the tween completes.
20658
20770
  * @returns Whether the tween will play.
20771
+ *
20772
+ * @deprecated
20659
20773
  */
20660
20774
  TweenSizeAndPosition(this: GuiObject, endSize: UDim2, endPosition: UDim2, easingDirection?: CastsToEnum<Enum.EasingDirection>, easingStyle?: CastsToEnum<Enum.EasingStyle>, time?: number, override?: boolean, callback?: (finishedTween: Enum.TweenStatus) => void): boolean;
20661
20775
  /**
@@ -32215,6 +32329,21 @@ interface ModerationService extends Instance {
32215
32329
  */
32216
32330
  InternalRequestReviewableContentReviewAsync(this: ModerationService, config: object): void;
32217
32331
  }
32332
+ /**
32333
+ * - **Tags**: NotCreatable, Service
32334
+ *
32335
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MomentsService)
32336
+ */
32337
+ interface MomentsService extends Instance {
32338
+ /**
32339
+ * **DO NOT USE!**
32340
+ *
32341
+ * This field exists to force TypeScript to recognize this as a nominal type
32342
+ * @hidden
32343
+ * @deprecated
32344
+ */
32345
+ readonly _nominal_MomentsService: unique symbol;
32346
+ }
32218
32347
  /**
32219
32348
  * Legacy object that contains members useful for pointer input.
32220
32349
  *
@@ -36436,6 +36565,12 @@ interface Workspace extends WorldRoot {
36436
36565
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#Retargeting)
36437
36566
  */
36438
36567
  Retargeting: Enum.AnimatorRetargetingMode;
36568
+ /**
36569
+ * - **ThreadSafety**: ReadSafe
36570
+ *
36571
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#StreamingAdaptiveRadius)
36572
+ */
36573
+ StreamingAdaptiveRadius: boolean;
36439
36574
  /**
36440
36575
  * Whether content streaming is enabled for the place.
36441
36576
  *
@@ -41486,6 +41621,12 @@ interface RunService extends Instance {
41486
41621
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#FrameNumber)
41487
41622
  */
41488
41623
  readonly FrameNumber: number;
41624
+ /**
41625
+ * - **ThreadSafety**: Unsafe
41626
+ *
41627
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#BindToAnimation)
41628
+ */
41629
+ BindToAnimation(this: RunService, callback: Callback, frequency?: CastsToEnum<Enum.StepFrequency>, priority?: number): RBXScriptConnection;
41489
41630
  /**
41490
41631
  * Given a string name of a function and a priority, this method binds the function to `RunService.PreRender`.
41491
41632
  *
@@ -41508,6 +41649,7 @@ interface RunService extends Instance {
41508
41649
  * @param function The function to call. This function will be passed one parameter called `deltaTime` which shows how much time passed between the beginning of the previous simulation step and the beginning of the current simulation step.
41509
41650
  * @param frequency Optional `StepFrequency` value indicating the frequency at which to call the bound function. If not provided, the default frequency will be used.
41510
41651
  * @param priority Optional priority of the binding as an integer; it determines the order in which bound functions are called within a simulation step. Lower numbers are called first. If two bindings have the same priority, the order between them is unspecified. Defaults to 2000.
41652
+ * @returns An `RBXScriptConnection` that can be disconnected to unbind the function from the simulation step.
41511
41653
  */
41512
41654
  BindToSimulation(this: RunService, callback: Callback, frequency?: CastsToEnum<Enum.StepFrequency>, priority?: number): RBXScriptConnection;
41513
41655
  /**
@@ -41518,6 +41660,7 @@ interface RunService extends Instance {
41518
41660
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#GetPredictionStatus)
41519
41661
  * @param this Service responsible for all runtime activity and progression of time.
41520
41662
  * @param context The `Instance` for which to check prediction status.
41663
+ * @returns The `PredictionStatus` of the given instance, indicating whether it is predicted, authoritative, or not participating in prediction.
41521
41664
  */
41522
41665
  GetPredictionStatus(this: RunService, context: Instance): Enum.PredictionStatus;
41523
41666
  /**
@@ -41531,9 +41674,13 @@ interface RunService extends Instance {
41531
41674
  */
41532
41675
  IsClient(this: RunService): boolean;
41533
41676
  /**
41677
+ * Returns whether the client is currently in a resimulation step after a misprediction in the server authority model.
41678
+ *
41534
41679
  * - **ThreadSafety**: Safe
41535
41680
  *
41536
41681
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#IsResimulating)
41682
+ * @param this Service responsible for all runtime activity and progression of time.
41683
+ * @returns Whether the engine is currently resimulating.
41537
41684
  */
41538
41685
  IsResimulating(this: RunService): boolean;
41539
41686
  /**
@@ -47271,6 +47418,12 @@ interface TextChannel extends Instance {
47271
47418
  * @deprecated
47272
47419
  */
47273
47420
  readonly _nominal_TextChannel: unique symbol;
47421
+ /**
47422
+ * - **ThreadSafety**: ReadSafe
47423
+ *
47424
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextChannel#AddPlayersOnJoin)
47425
+ */
47426
+ AddPlayersOnJoin: boolean;
47274
47427
  /**
47275
47428
  * The `TextChannel` will only deliver messages to users that can send direct messages to the `DirectChatRequester`.
47276
47429
  *
@@ -49831,7 +49984,7 @@ interface UIFlexItem extends UIComponent {
49831
49984
  ShrinkRatio: number;
49832
49985
  }
49833
49986
  /**
49834
- * Applies a color and transparency gradient to the UI elements rendered by the parent `GuiObject`.
49987
+ * Applies a color and transparency gradient to the parent `GuiObject`.
49835
49988
  *
49836
49989
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIGradient)
49837
49990
  */
@@ -49845,7 +49998,7 @@ interface UIGradient extends UIComponent {
49845
49998
  */
49846
49999
  readonly _nominal_UIGradient: unique symbol;
49847
50000
  /**
49848
- * Determines the color blended with the parent GuiObject along the length of the gradient.
50001
+ * Determines the color blended with the parent `GuiObject` along the length of the gradient.
49849
50002
  *
49850
50003
  * - **ThreadSafety**: ReadSafe
49851
50004
  *
@@ -49861,7 +50014,7 @@ interface UIGradient extends UIComponent {
49861
50014
  */
49862
50015
  Enabled: boolean;
49863
50016
  /**
49864
- * Determines the scalar translation of the gradient from the center of the parent GuiObject.
50017
+ * Determines the scalar translation of the gradient from the center of the parent `GuiObject`.
49865
50018
  *
49866
50019
  * - **ThreadSafety**: ReadSafe
49867
50020
  *
@@ -49877,21 +50030,23 @@ interface UIGradient extends UIComponent {
49877
50030
  */
49878
50031
  Rotation: number;
49879
50032
  /**
50033
+ * Multiplies the extent of the gradient, controlling how much of the color/transparency sequence is visible within the element.
50034
+ *
49880
50035
  * - **ThreadSafety**: ReadSafe
49881
- * - **Tags**: NotBrowsable
49882
50036
  *
49883
50037
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIGradient#Scale)
49884
50038
  */
49885
50039
  Scale: number;
49886
50040
  /**
50041
+ * Determines how the gradient repeats.
50042
+ *
49887
50043
  * - **ThreadSafety**: ReadSafe
49888
- * - **Tags**: NotBrowsable
49889
50044
  *
49890
50045
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIGradient#TileMode)
49891
50046
  */
49892
50047
  TileMode: Enum.GradientTileMode;
49893
50048
  /**
49894
- * Determines how much the parent GuiObject can be seen through along the length of the gradient.
50049
+ * Determines how much the parent `GuiObject` can be seen through along the length of the gradient.
49895
50050
  *
49896
50051
  * - **ThreadSafety**: ReadSafe
49897
50052
  *
@@ -49899,8 +50054,9 @@ interface UIGradient extends UIComponent {
49899
50054
  */
49900
50055
  Transparency: NumberSequence;
49901
50056
  /**
50057
+ * Determines the shape of the gradient as linear, radial, or conical.
50058
+ *
49902
50059
  * - **ThreadSafety**: ReadSafe
49903
- * - **Tags**: NotBrowsable
49904
50060
  *
49905
50061
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIGradient#Type)
49906
50062
  */