@rbxts/types 1.0.903 → 1.0.905

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.
@@ -77,6 +77,7 @@ interface Services {
77
77
  FacialAnimationRecordingService: FacialAnimationRecordingService;
78
78
  FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2;
79
79
  FeatureRestrictionManager: FeatureRestrictionManager;
80
+ FileManagerService: FileManagerService;
80
81
  GamepadService: GamepadService;
81
82
  GamePassService: GamePassService;
82
83
  GenerationService: GenerationService;
@@ -2429,9 +2430,10 @@ interface Instance extends RBXObject {
2429
2430
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetStyled)
2430
2431
  * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
2431
2432
  * @param name Name of the property to query.
2433
+ * @param selector Optional selector for the pseudo instance you are targeting on the instance.
2432
2434
  * @returns The styled or explicitly modified value of the specified property, or else the default property value if it hasn't been styled/modified.
2433
2435
  */
2434
- GetStyled(this: Instance, name: string): unknown;
2436
+ GetStyled(this: Instance, name: string, selector?: string): unknown;
2435
2437
  /**
2436
2438
  * - **ThreadSafety**: Unsafe
2437
2439
  *
@@ -3022,7 +3024,7 @@ interface AnalyticsService extends Instance {
3022
3024
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireEvent)
3023
3025
  * @param this Collection of methods that allows developers to track how users interact with their experiences.
3024
3026
  * @param category 'The category of event to report. Cannot contain the following characters: comma `,`, double quote `"` or newline characters `\r\n`'.
3025
- * @param value A value to be serialized and reported. Serialized length must not exceed 1 KB, or 1024 bytes.
3027
+ * @param value A value to be serialized and reported. Serialized length must not exceed 1 KiB, or 1024 bytes.
3026
3028
  *
3027
3029
  * @deprecated
3028
3030
  */
@@ -3133,7 +3135,7 @@ interface AnalyticsService extends Instance {
3133
3135
  * @param flowType Should specify the direction that currency is flowing using `AnalyticsEconomyFlowType`.
3134
3136
  * @param currencyType The name of the currency being added or removed, for example `"gold"`, `"gems"`, or `"energy"`. Limited to 5 unique currency types per experience.
3135
3137
  * @param amount The amount of currency being added or removed. This value should always be positive.
3136
- * @param endingBalance The user's balance after the currency has been added or removed. This value should always be greater than or equal to 0.
3138
+ * @param endingBalance The user's balance after the currency has been added or removed. This value should always be greater than or equal to `0`.
3137
3139
  * @param transactionType The type of transaction that occurred. While you're free to use any transaction type, it's recommended to use the provided types from `AnalyticsEconomyTransactionType` such as `"IAP"` or `"ContextualPurchase"` to enable future insights from Roblox tools and charts. Because this field type is a string, you'll need to pass the `Name` value of the enum. For example `Enum.AnalyticsEconomyTransactionType.IAP.Name`. Limited to 20 unique types per experience.
3138
3140
  * @param itemSku Optional SKU of the item or bundle being purchased. This is a unique identifier for the item being purchased. Limited to 100 unique SKUs per experience.
3139
3141
  * @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.
@@ -3548,24 +3550,6 @@ interface AnimationNodeDefinition extends Instance {
3548
3550
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNodeDefinition#NodeType)
3549
3551
  */
3550
3552
  NodeType: Enum.AnimationNodeType;
3551
- /**
3552
- * - **ThreadSafety**: Unsafe
3553
- *
3554
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNodeDefinition#GetConnectedWires)
3555
- */
3556
- GetConnectedWires(this: AnimationNodeDefinition, pin: string): Array<Instance>;
3557
- /**
3558
- * - **ThreadSafety**: Unsafe
3559
- *
3560
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNodeDefinition#GetInputPins)
3561
- */
3562
- GetInputPins(this: AnimationNodeDefinition): Array<unknown>;
3563
- /**
3564
- * - **ThreadSafety**: Unsafe
3565
- *
3566
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationNodeDefinition#GetOutputPins)
3567
- */
3568
- GetOutputPins(this: AnimationNodeDefinition): Array<unknown>;
3569
3553
  }
3570
3554
  /**
3571
3555
  * Used to store information regarding the model an animation was authored for.
@@ -10576,9 +10560,14 @@ interface CaptureService extends Instance {
10576
10560
  */
10577
10561
  StopVideoCapture(this: CaptureService): void;
10578
10562
  /**
10563
+ * Initiates a screenshot capture.
10564
+ *
10579
10565
  * - **ThreadSafety**: Unsafe
10580
10566
  *
10581
10567
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#TakeScreenshotCaptureAsync)
10568
+ * @param this A service which provides control over screenshot and video capture features.
10569
+ * @param onCaptureReady A callback function that is called on screenshot capture completion with a `ScreenshotCaptureResult` and, if successful, a `ScreenshotCapture`.
10570
+ * @param captureParams A dictionary that modifies capture behavior.
10582
10571
  */
10583
10572
  TakeScreenshotCaptureAsync(this: CaptureService, onCaptureReady: Callback, captureParams?: object): void;
10584
10573
  /**
@@ -12422,8 +12411,6 @@ interface AngularVelocity extends Constraint {
12422
12411
  /**
12423
12412
  * Aligns two `BaseParts` with an animate-able kinematic or force-based joint.
12424
12413
  *
12425
- * - **Tags**: NotBrowsable
12426
- *
12427
12414
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationConstraint)
12428
12415
  */
12429
12416
  interface AnimationConstraint extends Constraint {
@@ -16715,6 +16702,21 @@ interface FeatureRestrictionManager extends Instance {
16715
16702
  */
16716
16703
  readonly _nominal_FeatureRestrictionManager: unique symbol;
16717
16704
  }
16705
+ /**
16706
+ * - **Tags**: NotCreatable, Service, NotReplicated
16707
+ *
16708
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FileManagerService)
16709
+ */
16710
+ interface FileManagerService extends Instance {
16711
+ /**
16712
+ * **DO NOT USE!**
16713
+ *
16714
+ * This field exists to force TypeScript to recognize this as a nominal type
16715
+ * @hidden
16716
+ * @deprecated
16717
+ */
16718
+ readonly _nominal_FileManagerService: unique symbol;
16719
+ }
16718
16720
  /**
16719
16721
  * A preconfigured particle emitter with the visual aesthetic of fire.
16720
16722
  *
@@ -20743,7 +20745,7 @@ interface HandleAdornment extends PVAdornment {
20743
20745
  readonly MouseLeave: RBXScriptSignal<() => void>;
20744
20746
  }
20745
20747
  /**
20746
- * A box that can be adorned to a `BasePart`.
20748
+ * A box-shaped handle that can be adorned to a `BasePart`.
20747
20749
  *
20748
20750
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BoxHandleAdornment)
20749
20751
  */
@@ -20763,7 +20765,7 @@ interface BoxHandleAdornment extends HandleAdornment {
20763
20765
  */
20764
20766
  Shading: Enum.AdornShading;
20765
20767
  /**
20766
- * The size of the adornment.
20768
+ * Size of the adornment.
20767
20769
  *
20768
20770
  * - **ThreadSafety**: ReadSafe
20769
20771
  *
@@ -20772,7 +20774,7 @@ interface BoxHandleAdornment extends HandleAdornment {
20772
20774
  Size: Vector3;
20773
20775
  }
20774
20776
  /**
20775
- * A cone that can be adorned to a `BasePart`.
20777
+ * A cone-shaped handle that can be adorned to a `BasePart`.
20776
20778
  *
20777
20779
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConeHandleAdornment)
20778
20780
  */
@@ -20786,7 +20788,7 @@ interface ConeHandleAdornment extends HandleAdornment {
20786
20788
  */
20787
20789
  readonly _nominal_ConeHandleAdornment: unique symbol;
20788
20790
  /**
20789
- * The height of the cone adornment.
20791
+ * Height of the cone adornment.
20790
20792
  *
20791
20793
  * - **ThreadSafety**: ReadSafe
20792
20794
  *
@@ -20800,7 +20802,7 @@ interface ConeHandleAdornment extends HandleAdornment {
20800
20802
  */
20801
20803
  Hollow: boolean;
20802
20804
  /**
20803
- * The radius of the cone adornment.
20805
+ * Radius of the cone adornment.
20804
20806
  *
20805
20807
  * - **ThreadSafety**: ReadSafe
20806
20808
  *
@@ -20815,7 +20817,7 @@ interface ConeHandleAdornment extends HandleAdornment {
20815
20817
  Shading: Enum.AdornShading;
20816
20818
  }
20817
20819
  /**
20818
- * A cylinder that can be adorned to a `BasePart`.
20820
+ * A cylinder-shaped handle that can be adorned to a `BasePart`.
20819
20821
  *
20820
20822
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CylinderHandleAdornment)
20821
20823
  */
@@ -20829,7 +20831,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
20829
20831
  */
20830
20832
  readonly _nominal_CylinderHandleAdornment: unique symbol;
20831
20833
  /**
20832
- * Angle of cylindrical sector (pie-slice).
20834
+ * Angle of the cylinder handle as in a "pie slice" sector.
20833
20835
  *
20834
20836
  * - **ThreadSafety**: ReadSafe
20835
20837
  *
@@ -20837,7 +20839,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
20837
20839
  */
20838
20840
  Angle: number;
20839
20841
  /**
20840
- * The height of the cylinder adornment.
20842
+ * Height of the cylinder adornment.
20841
20843
  *
20842
20844
  * - **ThreadSafety**: ReadSafe
20843
20845
  *
@@ -20845,7 +20847,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
20845
20847
  */
20846
20848
  Height: number;
20847
20849
  /**
20848
- * Inner radius of a hollow cylinder.
20850
+ * Inner radius with which to render a hollow cylinder.
20849
20851
  *
20850
20852
  * - **ThreadSafety**: ReadSafe
20851
20853
  *
@@ -20853,7 +20855,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
20853
20855
  */
20854
20856
  InnerRadius: number;
20855
20857
  /**
20856
- * The radius of the cylinder adornment.
20858
+ * Radius of the cylinder adornment.
20857
20859
  *
20858
20860
  * - **ThreadSafety**: ReadSafe
20859
20861
  *
@@ -20868,7 +20870,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
20868
20870
  Shading: Enum.AdornShading;
20869
20871
  }
20870
20872
  /**
20871
- * An image that can be adorned to a `BasePart`.
20873
+ * An image handle that can be adorned to a `BasePart`.
20872
20874
  *
20873
20875
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageHandleAdornment)
20874
20876
  */
@@ -20882,7 +20884,7 @@ interface ImageHandleAdornment extends HandleAdornment {
20882
20884
  */
20883
20885
  readonly _nominal_ImageHandleAdornment: unique symbol;
20884
20886
  /**
20885
- * The image to draw for the adornment.
20887
+ * Image to draw for the adornment.
20886
20888
  *
20887
20889
  * - **ThreadSafety**: ReadSafe
20888
20890
  *
@@ -20890,7 +20892,7 @@ interface ImageHandleAdornment extends HandleAdornment {
20890
20892
  */
20891
20893
  Image: ContentId;
20892
20894
  /**
20893
- * The size in studs of the image.
20895
+ * Size of the image in studs.
20894
20896
  *
20895
20897
  * - **ThreadSafety**: ReadSafe
20896
20898
  *
@@ -20899,7 +20901,7 @@ interface ImageHandleAdornment extends HandleAdornment {
20899
20901
  Size: Vector2;
20900
20902
  }
20901
20903
  /**
20902
- * A line that can be adorned to a `BasePart`.
20904
+ * A line-shaped handle that can be adorned to a `BasePart`.
20903
20905
  *
20904
20906
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LineHandleAdornment)
20905
20907
  */
@@ -20913,7 +20915,7 @@ interface LineHandleAdornment extends HandleAdornment {
20913
20915
  */
20914
20916
  readonly _nominal_LineHandleAdornment: unique symbol;
20915
20917
  /**
20916
- * The length of the line.
20918
+ * Length of the line.
20917
20919
  *
20918
20920
  * - **ThreadSafety**: ReadSafe
20919
20921
  *
@@ -20921,7 +20923,7 @@ interface LineHandleAdornment extends HandleAdornment {
20921
20923
  */
20922
20924
  Length: number;
20923
20925
  /**
20924
- * The thickness of the line in pixels.
20926
+ * Thickness of the line in pixels.
20925
20927
  *
20926
20928
  * - **ThreadSafety**: ReadSafe
20927
20929
  *
@@ -20930,6 +20932,8 @@ interface LineHandleAdornment extends HandleAdornment {
20930
20932
  Thickness: number;
20931
20933
  }
20932
20934
  /**
20935
+ * A pyramid-shaped handle that can be adorned to a `BasePart`.
20936
+ *
20933
20937
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment)
20934
20938
  */
20935
20939
  interface PyramidHandleAdornment extends HandleAdornment {
@@ -20942,6 +20946,8 @@ interface PyramidHandleAdornment extends HandleAdornment {
20942
20946
  */
20943
20947
  readonly _nominal_PyramidHandleAdornment: unique symbol;
20944
20948
  /**
20949
+ * Height of the pyramid adornment.
20950
+ *
20945
20951
  * - **ThreadSafety**: ReadSafe
20946
20952
  *
20947
20953
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Height)
@@ -20954,12 +20960,16 @@ interface PyramidHandleAdornment extends HandleAdornment {
20954
20960
  */
20955
20961
  Shading: Enum.AdornShading;
20956
20962
  /**
20963
+ * Number of sides for the pyramid adornment.
20964
+ *
20957
20965
  * - **ThreadSafety**: ReadSafe
20958
20966
  *
20959
20967
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Sides)
20960
20968
  */
20961
20969
  Sides: number;
20962
20970
  /**
20971
+ * Size of the pyramid adornment's base.
20972
+ *
20963
20973
  * - **ThreadSafety**: ReadSafe
20964
20974
  *
20965
20975
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Size)
@@ -20967,7 +20977,7 @@ interface PyramidHandleAdornment extends HandleAdornment {
20967
20977
  Size: number;
20968
20978
  }
20969
20979
  /**
20970
- * The SphereHandleAdornment is a sphere that can be adorned to a BasePart.
20980
+ * A sphere-shaped handle that can be adorned to a `BasePart`.
20971
20981
  *
20972
20982
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SphereHandleAdornment)
20973
20983
  */
@@ -20981,7 +20991,7 @@ interface SphereHandleAdornment extends HandleAdornment {
20981
20991
  */
20982
20992
  readonly _nominal_SphereHandleAdornment: unique symbol;
20983
20993
  /**
20984
- * The radius of the sphere adornment.
20994
+ * Radius of the sphere adornment.
20985
20995
  *
20986
20996
  * - **ThreadSafety**: ReadSafe
20987
20997
  *
@@ -21437,7 +21447,7 @@ interface Path2D extends GuiBase {
21437
21447
  */
21438
21448
  Closed: boolean;
21439
21449
  /**
21440
- * Determines the Color of the `Path2D`.
21450
+ * Determines the color of the `Path2D`.
21441
21451
  *
21442
21452
  * - **ThreadSafety**: ReadSafe
21443
21453
  *
@@ -23320,7 +23330,7 @@ interface Humanoid extends Instance {
23320
23330
  */
23321
23331
  UnequipTools(this: Humanoid): void;
23322
23332
  /**
23323
- * **Deprecated:**
23333
+ * **Deprecated:** This method has been superseded by `ApplyDescriptionAsync()`.
23324
23334
  *
23325
23335
  * Makes the character's look match that of the passed in `HumanoidDescription`.
23326
23336
  *
@@ -23348,7 +23358,7 @@ interface Humanoid extends Instance {
23348
23358
  */
23349
23359
  ApplyDescriptionAsync(this: Humanoid, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
23350
23360
  /**
23351
- * **Deprecated:**
23361
+ * **Deprecated:** This method has been superseded by `ApplyDescriptionResetAsync()`.
23352
23362
  *
23353
23363
  * Makes the character's look match that of the passed in `HumanoidDescription`, even after external changes.
23354
23364
  *
@@ -23376,7 +23386,7 @@ interface Humanoid extends Instance {
23376
23386
  */
23377
23387
  ApplyDescriptionResetAsync(this: Humanoid, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
23378
23388
  /**
23379
- * **Deprecated:**
23389
+ * **Deprecated:** This method has been superseded by `PlayEmoteAsync()`.
23380
23390
  *
23381
23391
  * Plays emotes and returns if was successfully ran.
23382
23392
  *
@@ -25736,7 +25746,7 @@ interface JointInstance extends Instance {
25736
25746
  */
25737
25747
  C0: CFrame;
25738
25748
  /**
25739
- * Is subtracted from the `JointInstance.C0` property to create an offset point for `JointInstance.Part1`.
25749
+ * Subtracted from the `C0` property to create an offset point for `Part1`.
25740
25750
  *
25741
25751
  * - **ThreadSafety**: ReadSafe
25742
25752
  *
@@ -27830,7 +27840,7 @@ interface MarketplaceService extends Instance {
27830
27840
  Name: string;
27831
27841
  }>;
27832
27842
  /**
27833
- * **Deprecated:**
27843
+ * **Deprecated:** This method has been superseded by `GetProductInfoAsync()`.
27834
27844
  *
27835
27845
  * Returns the product information of an asset using its asset ID.
27836
27846
  *
@@ -27925,7 +27935,7 @@ interface MarketplaceService extends Instance {
27925
27935
  */
27926
27936
  GetUsersPriceLevelsAsync(this: MarketplaceService, userIds: Array<unknown>): Array<unknown>;
27927
27937
  /**
27928
- * **Deprecated:**
27938
+ * **Deprecated:** This method has been superseded by `PlayerOwnsAssetAsync()`.
27929
27939
  *
27930
27940
  * Returns whether the given user has the given asset.
27931
27941
  *
@@ -27955,7 +27965,7 @@ interface MarketplaceService extends Instance {
27955
27965
  */
27956
27966
  PlayerOwnsAssetAsync(this: MarketplaceService, player: Instance, assetId: number): boolean;
27957
27967
  /**
27958
- * **Deprecated:**
27968
+ * **Deprecated:** This method has been superseded by `PlayerOwnsBundleAsync()`.
27959
27969
  *
27960
27970
  * Returns whether the given player owns the given bundle.
27961
27971
  *
@@ -28779,15 +28789,6 @@ interface ModerationService extends Instance {
28779
28789
  * @param config
28780
28790
  */
28781
28791
  CreateReviewableContentAsync(this: ModerationService, config: object): string;
28782
- /**
28783
- * - **ThreadSafety**: Unsafe
28784
- * - **Tags**: Yields
28785
- *
28786
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ModerationService#InternalCreateReviewableContentAsync)
28787
- * @param this
28788
- * @param config
28789
- */
28790
- InternalCreateReviewableContentAsync(this: ModerationService, config: object): string;
28791
28792
  /**
28792
28793
  * - **ThreadSafety**: Unsafe
28793
28794
  * - **Tags**: Yields
@@ -28797,13 +28798,6 @@ interface ModerationService extends Instance {
28797
28798
  * @param config
28798
28799
  */
28799
28800
  InternalRequestReviewableContentReviewAsync(this: ModerationService, config: object): void;
28800
- /**
28801
- * - **ThreadSafety**: Unsafe
28802
- *
28803
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ModerationService#InternalProcessReviewableContentEvent)
28804
- * @param event
28805
- */
28806
- InternalProcessReviewableContentEvent: ((event: object) => boolean) | undefined;
28807
28801
  }
28808
28802
  /**
28809
28803
  * Legacy object that contains members useful for pointer input.
@@ -34861,9 +34855,9 @@ interface Player extends Instance {
34861
34855
  */
34862
34856
  SaveString(this: Player, key: string, value: string): void;
34863
34857
  /**
34864
- * **Deprecated:**
34858
+ * **Deprecated:** This method has been superseded by `GetFriendsOnline()`.
34865
34859
  *
34866
- * Returns a dictionary of online connections.
34860
+ * Returns a dictionary of online connections. Returns the product information of an asset using its asset ID.
34867
34861
  *
34868
34862
  * - **ThreadSafety**: Unsafe
34869
34863
  * - **Tags**: Yields
@@ -34917,7 +34911,7 @@ interface Player extends Instance {
34917
34911
  */
34918
34912
  GetRankInGroupAsync(this: Player, groupId: number): number;
34919
34913
  /**
34920
- * **Deprecated:**
34914
+ * **Deprecated:** This method has been superseded by `GetRoleInGroup()`.
34921
34915
  *
34922
34916
  * Returns the player's role in the group as a string, or `Guest` if the player isn't part of the group.
34923
34917
  *
@@ -34988,7 +34982,7 @@ interface Player extends Instance {
34988
34982
  */
34989
34983
  IsFriendsWithAsync(this: Player, userId: number): boolean;
34990
34984
  /**
34991
- * **Deprecated:**
34985
+ * **Deprecated:** This method has been superseded by `IsInGroupAsync()`.
34992
34986
  *
34993
34987
  * Checks whether a player is a member of a group with the given ID.
34994
34988
  *
@@ -35016,7 +35010,7 @@ interface Player extends Instance {
35016
35010
  */
35017
35011
  IsInGroupAsync(this: Player, groupId: number): boolean;
35018
35012
  /**
35019
- * **Deprecated:**
35013
+ * **Deprecated:** This method has been superseded by `LoadCharacterAsync()`.
35020
35014
  *
35021
35015
  * Creates a new character for the player, removing the old one. Also clears the player's `Backpack` and `PlayerGui`.
35022
35016
  *
@@ -35040,7 +35034,7 @@ interface Player extends Instance {
35040
35034
  */
35041
35035
  LoadCharacterAsync(this: Player): void;
35042
35036
  /**
35043
- * **Deprecated:**
35037
+ * **Deprecated:** This method has been superseded by `LoadCharacterWithHumanoidDescriptionAsync()`.
35044
35038
  *
35045
35039
  * Spawns a player character with everything equipped in the passed in `HumanoidDescription`.
35046
35040
  *
@@ -35612,7 +35606,7 @@ interface Players extends Instance {
35612
35606
  */
35613
35607
  RespawnTime: number;
35614
35608
  /**
35615
- * Returns the `Player` with the given `UserId` if they are in-game.
35609
+ * Returns the `Player` with the given `UserId` if they are in-experience.
35616
35610
  *
35617
35611
  * - **ThreadSafety**: Safe
35618
35612
  *
@@ -35658,7 +35652,7 @@ interface Players extends Instance {
35658
35652
  */
35659
35653
  BanAsync(this: Players, config: BanAsyncConfig): void;
35660
35654
  /**
35661
- * **Deprecated:**
35655
+ * **Deprecated:** This method has been superseded by `CreateHumanoidModelFromDescription()`.
35662
35656
  *
35663
35657
  * Returns a character `Model` equipped with everything specified in the passed in `HumanoidDescription`.
35664
35658
  *
@@ -35690,7 +35684,7 @@ interface Players extends Instance {
35690
35684
  */
35691
35685
  CreateHumanoidModelFromDescriptionAsync(this: Players, description: HumanoidDescription, rigType: CastsToEnum<Enum.HumanoidRigType>, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): Model;
35692
35686
  /**
35693
- * **Deprecated:**
35687
+ * **Deprecated:** This method has been superseded by `CreateHumanoidModelFromUserIdAsync()`.
35694
35688
  *
35695
35689
  * Returns a character Model set-up with everything equipped to match the avatar of the user specified by the passed in userId.
35696
35690
  *
@@ -35768,7 +35762,7 @@ interface Players extends Instance {
35768
35762
  */
35769
35763
  GetFriendsAsync(this: Players, userId: number): FriendPages;
35770
35764
  /**
35771
- * **Deprecated:**
35765
+ * **Deprecated:** This method has been superseded by `GetHumanoidDescriptionFromOutfitIdAsync()`.
35772
35766
  *
35773
35767
  * Returns the HumanoidDescription for a specified outfit, which will be set with the parts/colors/Animations etc of the outfit.
35774
35768
  *
@@ -35796,7 +35790,7 @@ interface Players extends Instance {
35796
35790
  */
35797
35791
  GetHumanoidDescriptionFromOutfitIdAsync(this: Players, outfitId: number): HumanoidDescription;
35798
35792
  /**
35799
- * **Deprecated:**
35793
+ * **Deprecated:** This method has been superseded by `GetHumanoidDescriptionFromUserIdAsync()`.
35800
35794
  *
35801
35795
  * Returns a HumanoidDescription which specifies everything equipped for the avatar of the user specified by the passed in userId.
35802
35796
  *
@@ -35883,7 +35877,7 @@ interface Players extends Instance {
35883
35877
  */
35884
35878
  UnbanAsync(this: Players, config: UnbanAsyncConfig): void;
35885
35879
  /**
35886
- * Fires when a player enters the game.
35880
+ * Fires when a player enters the experience.
35887
35881
  *
35888
35882
  * - **ThreadSafety**: Unsafe
35889
35883
  *
@@ -35891,7 +35885,7 @@ interface Players extends Instance {
35891
35885
  */
35892
35886
  readonly PlayerAdded: RBXScriptSignal<(player: Player) => void>;
35893
35887
  /**
35894
- * Fires when the game server recognizes that a player's membership has changed.
35888
+ * Fires when the experience server recognizes that a player's membership has changed.
35895
35889
  *
35896
35890
  * - **ThreadSafety**: Unsafe
35897
35891
  *
@@ -35899,7 +35893,7 @@ interface Players extends Instance {
35899
35893
  */
35900
35894
  readonly PlayerMembershipChanged: RBXScriptSignal<(player: Player) => void>;
35901
35895
  /**
35902
- * Fires when a player is about to leave the game.
35896
+ * Fires when a player is about to leave the experience.
35903
35897
  *
35904
35898
  * - **ThreadSafety**: Unsafe
35905
35899
  *
@@ -35907,7 +35901,7 @@ interface Players extends Instance {
35907
35901
  */
35908
35902
  readonly PlayerRemoving: RBXScriptSignal<(player: Player, reason: Enum.PlayerExitReason) => void>;
35909
35903
  /**
35910
- * Fires when the game server recognizes that the user's status for a certain subscription has changed.
35904
+ * Fires when the experience server recognizes that the user's status for a certain subscription has changed.
35911
35905
  *
35912
35906
  * - **ThreadSafety**: Unsafe
35913
35907
  *
@@ -37122,7 +37116,7 @@ interface ReplicatedFirst extends Instance {
37122
37116
  */
37123
37117
  readonly _nominal_ReplicatedFirst: unique symbol;
37124
37118
  /**
37125
- * Immediately removes the default Roblox loading screen. Note if any object has been placed in `ReplicatedFirst`, the default loading screen will remove after 5 seconds regardless if this function has been called or not.
37119
+ * Immediately removes the default Roblox loading screen.
37126
37120
  *
37127
37121
  * - **ThreadSafety**: Unsafe
37128
37122
  *
@@ -40438,7 +40432,6 @@ interface StarterPlayer extends Instance {
40438
40432
  CharacterWalkSpeed: number;
40439
40433
  /**
40440
40434
  * - **ThreadSafety**: ReadSafe
40441
- * - **Tags**: NotBrowsable
40442
40435
  *
40443
40436
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#ClassicDeath)
40444
40437
  */
@@ -81,6 +81,7 @@ interface Services {
81
81
  FacialAnimationRecordingService: FacialAnimationRecordingService;
82
82
  FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2;
83
83
  FeatureRestrictionManager: FeatureRestrictionManager;
84
+ FileManagerService: FileManagerService;
84
85
  GamepadService: GamepadService;
85
86
  GamePassService: GamePassService;
86
87
  GameSettings: GameSettings;
@@ -3614,8 +3615,6 @@ interface AngularVelocity extends Constraint {
3614
3615
  /**
3615
3616
  * Aligns two `BaseParts` with an animate-able kinematic or force-based joint.
3616
3617
  *
3617
- * - **Tags**: NotBrowsable
3618
- *
3619
3618
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationConstraint)
3620
3619
  */
3621
3620
  interface AnimationConstraint extends Constraint {
@@ -4505,6 +4504,75 @@ interface DebugSettings extends Instance {
4505
4504
  * @deprecated
4506
4505
  */
4507
4506
  readonly _nominal_DebugSettings: unique symbol;
4507
+ /**
4508
+ * Describes whether a `DataModel` is actively in memory, as an integer (where 1 = true, and 0 = false).
4509
+ *
4510
+ * - **ThreadSafety**: ReadSafe
4511
+ * - **Tags**: NotReplicated
4512
+ *
4513
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#DataModel)
4514
+ */
4515
+ readonly DataModel: number;
4516
+ /**
4517
+ * The number of instances active in the simulation.
4518
+ *
4519
+ * - **ThreadSafety**: ReadSafe
4520
+ * - **Tags**: NotReplicated
4521
+ *
4522
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#InstanceCount)
4523
+ */
4524
+ readonly InstanceCount: number;
4525
+ /**
4526
+ * Whether or not a stacktrace is displayed in the output for an error.
4527
+ *
4528
+ * - **ThreadSafety**: ReadSafe
4529
+ *
4530
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#IsScriptStackTracingEnabled)
4531
+ */
4532
+ IsScriptStackTracingEnabled: boolean;
4533
+ /**
4534
+ * Returns the number of internal DataModel jobs actively being processed.
4535
+ *
4536
+ * - **ThreadSafety**: ReadSafe
4537
+ * - **Tags**: NotReplicated
4538
+ *
4539
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#JobCount)
4540
+ */
4541
+ readonly JobCount: number;
4542
+ /**
4543
+ * The number of players currently in the active game-instance.
4544
+ *
4545
+ * - **ThreadSafety**: ReadSafe
4546
+ * - **Tags**: NotReplicated
4547
+ *
4548
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#PlayerCount)
4549
+ */
4550
+ readonly PlayerCount: number;
4551
+ /**
4552
+ * Whether or not sound warnings should be reported.
4553
+ *
4554
+ * - **ThreadSafety**: ReadSafe
4555
+ *
4556
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#ReportSoundWarnings)
4557
+ */
4558
+ ReportSoundWarnings: boolean;
4559
+ /**
4560
+ * The current client version of Roblox. Can also be retrieved by using the version() function.
4561
+ *
4562
+ * - **ThreadSafety**: ReadSafe
4563
+ * - **Tags**: NotReplicated
4564
+ *
4565
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#RobloxVersion)
4566
+ */
4567
+ readonly RobloxVersion: string;
4568
+ /**
4569
+ * Sets the internal sampling method used to measure elapsed time with consistency across platforms.
4570
+ *
4571
+ * - **ThreadSafety**: ReadSafe
4572
+ *
4573
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DebugSettings#TickCountPreciseOverride)
4574
+ */
4575
+ TickCountPreciseOverride: Enum.TickCountSampleMethod;
4508
4576
  }
4509
4577
  /**
4510
4578
  * - **Tags**: NotCreatable, Service, NotReplicated
@@ -5717,6 +5785,21 @@ interface File extends Instance {
5717
5785
  */
5718
5786
  GetTemporaryId(this: File): ContentId;
5719
5787
  }
5788
+ /**
5789
+ * - **Tags**: NotCreatable, Service, NotReplicated
5790
+ *
5791
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FileManagerService)
5792
+ */
5793
+ interface FileManagerService extends Instance {
5794
+ /**
5795
+ * **DO NOT USE!**
5796
+ *
5797
+ * This field exists to force TypeScript to recognize this as a nominal type
5798
+ * @hidden
5799
+ * @deprecated
5800
+ */
5801
+ readonly _nominal_FileManagerService: unique symbol;
5802
+ }
5720
5803
  /**
5721
5804
  * A preconfigured particle emitter with the visual aesthetic of fire.
5722
5805
  *
@@ -5810,6 +5893,17 @@ interface GameSettings extends Instance {
5810
5893
  * @deprecated
5811
5894
  */
5812
5895
  readonly _nominal_GameSettings: unique symbol;
5896
+ /**
5897
+ * **Deprecated:**
5898
+ *
5899
+ * - **ThreadSafety**: ReadSafe
5900
+ * - **Tags**:
5901
+ *
5902
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GameSettings#VideoCaptureEnabled)
5903
+ *
5904
+ * @deprecated
5905
+ */
5906
+ VideoCaptureEnabled: boolean;
5813
5907
  }
5814
5908
  /**
5815
5909
  * The GamepadService is internally responsible for handling inputs from various controllers, such as Xbox One or PlayStation DualShock controllers.
@@ -6549,7 +6643,7 @@ interface HandleAdornment extends PVAdornment {
6549
6643
  readonly _nominal_HandleAdornment: unique symbol;
6550
6644
  }
6551
6645
  /**
6552
- * A box that can be adorned to a `BasePart`.
6646
+ * A box-shaped handle that can be adorned to a `BasePart`.
6553
6647
  *
6554
6648
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BoxHandleAdornment)
6555
6649
  */
@@ -6564,7 +6658,7 @@ interface BoxHandleAdornment extends HandleAdornment {
6564
6658
  readonly _nominal_BoxHandleAdornment: unique symbol;
6565
6659
  }
6566
6660
  /**
6567
- * A cone that can be adorned to a `BasePart`.
6661
+ * A cone-shaped handle that can be adorned to a `BasePart`.
6568
6662
  *
6569
6663
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConeHandleAdornment)
6570
6664
  */
@@ -6579,7 +6673,7 @@ interface ConeHandleAdornment extends HandleAdornment {
6579
6673
  readonly _nominal_ConeHandleAdornment: unique symbol;
6580
6674
  }
6581
6675
  /**
6582
- * A cylinder that can be adorned to a `BasePart`.
6676
+ * A cylinder-shaped handle that can be adorned to a `BasePart`.
6583
6677
  *
6584
6678
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CylinderHandleAdornment)
6585
6679
  */
@@ -6594,7 +6688,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
6594
6688
  readonly _nominal_CylinderHandleAdornment: unique symbol;
6595
6689
  }
6596
6690
  /**
6597
- * An image that can be adorned to a `BasePart`.
6691
+ * An image handle that can be adorned to a `BasePart`.
6598
6692
  *
6599
6693
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageHandleAdornment)
6600
6694
  */
@@ -6609,7 +6703,7 @@ interface ImageHandleAdornment extends HandleAdornment {
6609
6703
  readonly _nominal_ImageHandleAdornment: unique symbol;
6610
6704
  }
6611
6705
  /**
6612
- * A line that can be adorned to a `BasePart`.
6706
+ * A line-shaped handle that can be adorned to a `BasePart`.
6613
6707
  *
6614
6708
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LineHandleAdornment)
6615
6709
  */
@@ -6624,6 +6718,8 @@ interface LineHandleAdornment extends HandleAdornment {
6624
6718
  readonly _nominal_LineHandleAdornment: unique symbol;
6625
6719
  }
6626
6720
  /**
6721
+ * A pyramid-shaped handle that can be adorned to a `BasePart`.
6722
+ *
6627
6723
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment)
6628
6724
  */
6629
6725
  interface PyramidHandleAdornment extends HandleAdornment {
@@ -6637,7 +6733,7 @@ interface PyramidHandleAdornment extends HandleAdornment {
6637
6733
  readonly _nominal_PyramidHandleAdornment: unique symbol;
6638
6734
  }
6639
6735
  /**
6640
- * The SphereHandleAdornment is a sphere that can be adorned to a BasePart.
6736
+ * A sphere-shaped handle that can be adorned to a `BasePart`.
6641
6737
  *
6642
6738
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SphereHandleAdornment)
6643
6739
  */
@@ -8680,7 +8776,7 @@ interface NetworkMarker extends Instance {
8680
8776
  readonly _nominal_NetworkMarker: unique symbol;
8681
8777
  }
8682
8778
  /**
8683
- * The NetworkPeer object is the most basic class of the network objects.
8779
+ * The `NetworkPeer` object is the most basic class of the network objects.
8684
8780
  *
8685
8781
  * - **Tags**: NotCreatable, NotBrowsable
8686
8782
  *
@@ -8701,7 +8797,7 @@ interface NetworkPeer extends Instance {
8701
8797
  * - **ThreadSafety**: Unsafe
8702
8798
  *
8703
8799
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/NetworkPeer#SetOutgoingKBPSLimit)
8704
- * @param this The NetworkPeer object is the most basic class of the network objects.
8800
+ * @param this The `NetworkPeer` object is the most basic class of the network objects.
8705
8801
  * @param limit
8706
8802
  */
8707
8803
  SetOutgoingKBPSLimit(this: NetworkPeer, limit: number): void;
@@ -8807,7 +8903,7 @@ interface NetworkSettings extends Instance {
8807
8903
  */
8808
8904
  EmulatedTotalMemoryInMB: number;
8809
8905
  /**
8810
- * Describes how much free memory is available, in MBs.
8906
+ * Describes how much free memory is available, in MiBs.
8811
8907
  *
8812
8908
  * - **ThreadSafety**: ReadSafe
8813
8909
  * - **Tags**: Hidden, NotReplicated
@@ -10054,6 +10150,213 @@ interface PhysicsSettings extends Instance {
10054
10150
  * @deprecated
10055
10151
  */
10056
10152
  readonly _nominal_PhysicsSettings: unique symbol;
10153
+ /**
10154
+ * When set to true, physically simulated objects will stop being simulated if they have little to no motion for a set period of time.
10155
+ *
10156
+ * - **ThreadSafety**: ReadSafe
10157
+ *
10158
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AllowSleep)
10159
+ */
10160
+ AllowSleep: boolean;
10161
+ /**
10162
+ * When set to true, parts that are `BasePart.Anchored` will show a gray surface outline on the surface of the part's bounding box that is currently facing the ground.
10163
+ *
10164
+ * - **ThreadSafety**: ReadSafe
10165
+ *
10166
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreAnchorsShown)
10167
+ */
10168
+ AreAnchorsShown: boolean;
10169
+ /**
10170
+ * When set to true, each physics assembly is assigned a unique color and the `Part` associated with the assembly are outlined with the color. Parts that are attached together by `JointInstance` will share the same color.
10171
+ *
10172
+ * - **ThreadSafety**: ReadSafe
10173
+ *
10174
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreAssembliesShown)
10175
+ */
10176
+ AreAssembliesShown: boolean;
10177
+ /**
10178
+ * When set to true, parts that are actively being physically simulated will have a red outline.
10179
+ *
10180
+ * - **ThreadSafety**: ReadSafe
10181
+ *
10182
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreAwakePartsHighlighted)
10183
+ */
10184
+ AreAwakePartsHighlighted: boolean;
10185
+ /**
10186
+ * When set to true, `Part` will be outlined with a specific color, depending on the state of its root simulation body.
10187
+ *
10188
+ * - **ThreadSafety**: ReadSafe
10189
+ *
10190
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreBodyTypesShown)
10191
+ */
10192
+ AreBodyTypesShown: boolean;
10193
+ /**
10194
+ * When set to true, each contact island will render `SelectionBox` adorns on the parts in contact islands, where each contact island is assigned a random color.
10195
+ *
10196
+ * - **ThreadSafety**: ReadSafe
10197
+ *
10198
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreContactIslandsShown)
10199
+ */
10200
+ AreContactIslandsShown: boolean;
10201
+ /**
10202
+ * When set to true, sphere adorns will be drawn at the contact points of each part where physics interactions are occurring.
10203
+ *
10204
+ * - **ThreadSafety**: ReadSafe
10205
+ *
10206
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreContactPointsShown)
10207
+ */
10208
+ AreContactPointsShown: boolean;
10209
+ /**
10210
+ * When set to true, XYZ axes are rendered at the `BasePart.CFrame` of every part.
10211
+ *
10212
+ * - **ThreadSafety**: ReadSafe
10213
+ *
10214
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreJointCoordinatesShown)
10215
+ */
10216
+ AreJointCoordinatesShown: boolean;
10217
+ /**
10218
+ * When set to true, every individual mechanism of parts is given a unique color.
10219
+ *
10220
+ * - **ThreadSafety**: ReadSafe
10221
+ *
10222
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreMechanismsShown)
10223
+ */
10224
+ AreMechanismsShown: boolean;
10225
+ /**
10226
+ * An ancient property that hasn't work correctly since late 2007. It's supposed to render an XYZ axis on the root part of a `Model`, but the axis rendering component doesn't work correctly.
10227
+ *
10228
+ * - **ThreadSafety**: ReadSafe
10229
+ *
10230
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreModelCoordsShown)
10231
+ */
10232
+ AreModelCoordsShown: boolean;
10233
+ /**
10234
+ * - **ThreadSafety**: ReadSafe
10235
+ *
10236
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreNonAnchorsShown)
10237
+ */
10238
+ AreNonAnchorsShown: boolean;
10239
+ /**
10240
+ * When set to true, each player's character is outlined with a unique color, and each part that the player has network ownership over is outlined with the same color.
10241
+ *
10242
+ * - **ThreadSafety**: ReadSafe
10243
+ *
10244
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreOwnersShown)
10245
+ */
10246
+ AreOwnersShown: boolean;
10247
+ /**
10248
+ * An ancient property that hasn't worked correctly since late 2007. It's supposed to render a large XYZ axis in the center of each `BasePart`, but the axis rendering component doesn't work correctly.
10249
+ *
10250
+ * - **ThreadSafety**: ReadSafe
10251
+ *
10252
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#ArePartCoordsShown)
10253
+ */
10254
+ ArePartCoordsShown: boolean;
10255
+ /**
10256
+ * When set to true, a cylinder is drawn around each player's character, representing their `Player.SimulationRadius`.
10257
+ *
10258
+ * - **ThreadSafety**: ReadSafe
10259
+ *
10260
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreRegionsShown)
10261
+ */
10262
+ AreRegionsShown: boolean;
10263
+ /**
10264
+ * - **ThreadSafety**: ReadSafe
10265
+ *
10266
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreTerrainReplicationRegionsShown)
10267
+ */
10268
+ AreTerrainReplicationRegionsShown: boolean;
10269
+ /**
10270
+ * When set to true, parts that aren't aligned on the 1x1x1 grid will be outlined yellow.
10271
+ *
10272
+ * - **ThreadSafety**: ReadSafe
10273
+ *
10274
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreUnalignedPartsShown)
10275
+ */
10276
+ AreUnalignedPartsShown: boolean;
10277
+ /**
10278
+ * An ancient property that hasn't worked correctly since late 2007. It's supposed to render a large XYZ axis in the center of the world, but the axis rendering component doesn't work correctly.
10279
+ *
10280
+ * - **ThreadSafety**: ReadSafe
10281
+ *
10282
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreWorldCoordsShown)
10283
+ */
10284
+ AreWorldCoordsShown: boolean;
10285
+ /**
10286
+ * When set to true, Roblox will fall back to using its legacy CSG solver when performing solid model operations.
10287
+ *
10288
+ * - **ThreadSafety**: ReadSafe
10289
+ *
10290
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#DisableCSGv2)
10291
+ */
10292
+ DisableCSGv2: boolean;
10293
+ /**
10294
+ * - **ThreadSafety**: ReadSafe
10295
+ *
10296
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#DisableCSGv3ForPlugins)
10297
+ */
10298
+ DisableCSGv3ForPlugins: boolean;
10299
+ /**
10300
+ * - **ThreadSafety**: ReadSafe
10301
+ * - **Tags**: Hidden, NotReplicated
10302
+ *
10303
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#ForceCSGv2)
10304
+ */
10305
+ ForceCSGv2: boolean;
10306
+ /**
10307
+ * - **ThreadSafety**: ReadSafe
10308
+ *
10309
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#IsInterpolationThrottleShown)
10310
+ */
10311
+ IsInterpolationThrottleShown: boolean;
10312
+ /**
10313
+ * This property is supposed to show the `BasePart.ReceiveAge` of a part, but it does not work correctly.
10314
+ *
10315
+ * - **ThreadSafety**: ReadSafe
10316
+ *
10317
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#IsReceiveAgeShown)
10318
+ */
10319
+ IsReceiveAgeShown: boolean;
10320
+ /**
10321
+ * When set to true, the joint connections of each part, and the states of their underlying primitive components are visualized as a spanning tree.
10322
+ *
10323
+ * - **ThreadSafety**: ReadSafe
10324
+ *
10325
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#IsTreeShown)
10326
+ */
10327
+ IsTreeShown: boolean;
10328
+ /**
10329
+ * Controls the throttle rate of Roblox's physics engine.
10330
+ *
10331
+ * - **ThreadSafety**: ReadSafe
10332
+ *
10333
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#PhysicsEnvironmentalThrottle)
10334
+ */
10335
+ PhysicsEnvironmentalThrottle: Enum.EnviromentalPhysicsThrottle;
10336
+ /**
10337
+ * When set to true, the underlying collision geometry for `PartOperation` and `MeshPart` is rendered.
10338
+ *
10339
+ * - **ThreadSafety**: ReadSafe
10340
+ *
10341
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#ShowDecompositionGeometry)
10342
+ */
10343
+ ShowDecompositionGeometry: boolean;
10344
+ /**
10345
+ * If the `PhysicsSettings.PhysicsEnvironmentalThrottle` is set to `DefaultAuto`, this specifies the maximum time that the physics environmental throttle has to wait before it is allowed to automatically change.
10346
+ *
10347
+ * - **ThreadSafety**: ReadSafe
10348
+ *
10349
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#ThrottleAdjustTime)
10350
+ */
10351
+ ThrottleAdjustTime: number;
10352
+ /**
10353
+ * If set to true, version 2 of Roblox's CSG solver will be used instead of version 1.
10354
+ *
10355
+ * - **ThreadSafety**: ReadSafe
10356
+ *
10357
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#UseCSGv2)
10358
+ */
10359
+ UseCSGv2: boolean;
10057
10360
  }
10058
10361
  /**
10059
10362
  * - **Tags**: NotCreatable, Service
@@ -10626,7 +10929,7 @@ interface Plugin extends Instance {
10626
10929
  */
10627
10930
  ImportFbxAnimationAsync(this: Plugin, rigModel: Instance, isR15?: boolean): Instance | undefined;
10628
10931
  /**
10629
- * **Deprecated:**
10932
+ * **Deprecated:** This method has been superseded by `ImportFbxRigAsync()`.
10630
10933
  *
10631
10934
  * Prompts the user to open a `.fbx` file, uploads the individual components of the model as meshes, and generates a character rig for use in animation, which is loaded into the `Workspace`.
10632
10935
  *
@@ -10674,7 +10977,7 @@ interface Plugin extends Instance {
10674
10977
  */
10675
10978
  PromptForExistingAssetIdAsync(this: Plugin, assetType: string): number;
10676
10979
  /**
10677
- * **Deprecated:**
10980
+ * **Deprecated:** This method has been superseded by `PromptSaveSelectionAsync()`.
10678
10981
  *
10679
10982
  * Prompts the user to save their current selection with the specified file name.
10680
10983
  *
@@ -896,7 +896,7 @@ declare namespace Enum {
896
896
  }
897
897
  export type AdUnitStatus = AdUnitStatus.Inactive | AdUnitStatus.Active;
898
898
  /**
899
- * Culling method used for Adorns.
899
+ * Culling method used for adornments.
900
900
  *
901
901
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AdornCullingMode)
902
902
  */
@@ -9503,6 +9503,42 @@ declare namespace Enum {
9503
9503
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.CustomCameraMode | undefined;
9504
9504
  }
9505
9505
  export type CustomCameraMode = CustomCameraMode.Default | CustomCameraMode.Classic | CustomCameraMode.Follow;
9506
+ /**
9507
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelExtractorFileType)
9508
+ */
9509
+ export namespace DataModelExtractorFileType {
9510
+ /**
9511
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelExtractorFileType#PlaceFile)
9512
+ */
9513
+ export interface PlaceFile extends globalThis.EnumItem {
9514
+ Name: "PlaceFile";
9515
+ Value: 0;
9516
+ EnumType: typeof globalThis.Enum.DataModelExtractorFileType;
9517
+ }
9518
+ export const PlaceFile: PlaceFile;
9519
+ /**
9520
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelExtractorFileType#FirstSlice)
9521
+ */
9522
+ export interface FirstSlice extends globalThis.EnumItem {
9523
+ Name: "FirstSlice";
9524
+ Value: 1;
9525
+ EnumType: typeof globalThis.Enum.DataModelExtractorFileType;
9526
+ }
9527
+ export const FirstSlice: FirstSlice;
9528
+ /**
9529
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/DataModelExtractorFileType#NonFirstSliceSlice)
9530
+ */
9531
+ export interface NonFirstSliceSlice extends globalThis.EnumItem {
9532
+ Name: "NonFirstSliceSlice";
9533
+ Value: 2;
9534
+ EnumType: typeof globalThis.Enum.DataModelExtractorFileType;
9535
+ }
9536
+ export const NonFirstSliceSlice: NonFirstSliceSlice;
9537
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.DataModelExtractorFileType>;
9538
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.DataModelExtractorFileType | undefined;
9539
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.DataModelExtractorFileType | undefined;
9540
+ }
9541
+ export type DataModelExtractorFileType = DataModelExtractorFileType.PlaceFile | DataModelExtractorFileType.FirstSlice | DataModelExtractorFileType.NonFirstSliceSlice;
9506
9542
  /**
9507
9543
  * Indicates the type of data store request being made.
9508
9544
  *
@@ -11640,6 +11676,42 @@ declare namespace Enum {
11640
11676
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.ElasticBehavior | undefined;
11641
11677
  }
11642
11678
  export type ElasticBehavior = ElasticBehavior.WhenScrollable | ElasticBehavior.Always | ElasticBehavior.Never;
11679
+ /**
11680
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EngineFolder)
11681
+ */
11682
+ export namespace EngineFolder {
11683
+ /**
11684
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EngineFolder#Screenshots)
11685
+ */
11686
+ export interface Screenshots extends globalThis.EnumItem {
11687
+ Name: "Screenshots";
11688
+ Value: 0;
11689
+ EnumType: typeof globalThis.Enum.EngineFolder;
11690
+ }
11691
+ export const Screenshots: Screenshots;
11692
+ /**
11693
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EngineFolder#Videos)
11694
+ */
11695
+ export interface Videos extends globalThis.EnumItem {
11696
+ Name: "Videos";
11697
+ Value: 1;
11698
+ EnumType: typeof globalThis.Enum.EngineFolder;
11699
+ }
11700
+ export const Videos: Videos;
11701
+ /**
11702
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EngineFolder#Logs)
11703
+ */
11704
+ export interface Logs extends globalThis.EnumItem {
11705
+ Name: "Logs";
11706
+ Value: 2;
11707
+ EnumType: typeof globalThis.Enum.EngineFolder;
11708
+ }
11709
+ export const Logs: Logs;
11710
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.EngineFolder>;
11711
+ export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.EngineFolder | undefined;
11712
+ export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.EngineFolder | undefined;
11713
+ }
11714
+ export type EngineFolder = EngineFolder.Screenshots | EngineFolder.Videos | EngineFolder.Logs;
11643
11715
  /**
11644
11716
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/EnviromentalPhysicsThrottle)
11645
11717
  */
@@ -18440,7 +18512,7 @@ declare namespace Enum {
18440
18512
  }
18441
18513
  export const LeftMeta: LeftMeta;
18442
18514
  /**
18443
- * The left side `Super` key. Better known as the Windows key or Cmd key.
18515
+ * The left side `Super` key. Better known as the Windows key or `Cmd` key.
18444
18516
  *
18445
18517
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#LeftSuper)
18446
18518
  */
@@ -18451,7 +18523,7 @@ declare namespace Enum {
18451
18523
  }
18452
18524
  export const LeftSuper: LeftSuper;
18453
18525
  /**
18454
- * The right side `Super` key. Better known as the Windows key or Cmd key.
18526
+ * The right side `Super` key. Better known as the Windows key or `Cmd` key.
18455
18527
  *
18456
18528
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#RightSuper)
18457
18529
  */
@@ -18896,6 +18968,8 @@ declare namespace Enum {
18896
18968
  }
18897
18969
  export const MousePosition: MousePosition;
18898
18970
  /**
18971
+ * The position of a touch in the viewport. Primarily used in the [Input Action System](../../../input/input-action-system.md).
18972
+ *
18899
18973
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Touch)
18900
18974
  */
18901
18975
  export interface Touch extends globalThis.EnumItem {
@@ -29144,11 +29218,173 @@ declare namespace Enum {
29144
29218
  EnumType: typeof globalThis.Enum.SecurityCapability;
29145
29219
  }
29146
29220
  export const RemoteCommand: RemoteCommand;
29221
+ /**
29222
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#AssetRead)
29223
+ */
29224
+ export interface AssetRead extends globalThis.EnumItem {
29225
+ Name: "AssetRead";
29226
+ Value: 33;
29227
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29228
+ }
29229
+ export const AssetRead: AssetRead;
29230
+ /**
29231
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#AssetManagement)
29232
+ */
29233
+ export interface AssetManagement extends globalThis.EnumItem {
29234
+ Name: "AssetManagement";
29235
+ Value: 34;
29236
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29237
+ }
29238
+ export const AssetManagement: AssetManagement;
29239
+ /**
29240
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#DynamicGeneration)
29241
+ */
29242
+ export interface DynamicGeneration extends globalThis.EnumItem {
29243
+ Name: "DynamicGeneration";
29244
+ Value: 35;
29245
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29246
+ }
29247
+ export const DynamicGeneration: DynamicGeneration;
29248
+ /**
29249
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#PlatformAvatarEditing)
29250
+ */
29251
+ export interface PlatformAvatarEditing extends globalThis.EnumItem {
29252
+ Name: "PlatformAvatarEditing";
29253
+ Value: 36;
29254
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29255
+ }
29256
+ export const PlatformAvatarEditing: PlatformAvatarEditing;
29257
+ /**
29258
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#AssetCreateUpdate)
29259
+ */
29260
+ export interface AssetCreateUpdate extends globalThis.EnumItem {
29261
+ Name: "AssetCreateUpdate";
29262
+ Value: 37;
29263
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29264
+ }
29265
+ export const AssetCreateUpdate: AssetCreateUpdate;
29266
+ /**
29267
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Capture)
29268
+ */
29269
+ export interface Capture extends globalThis.EnumItem {
29270
+ Name: "Capture";
29271
+ Value: 38;
29272
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29273
+ }
29274
+ export const Capture: Capture;
29275
+ /**
29276
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#SensitiveInput)
29277
+ */
29278
+ export interface SensitiveInput extends globalThis.EnumItem {
29279
+ Name: "SensitiveInput";
29280
+ Value: 39;
29281
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29282
+ }
29283
+ export const SensitiveInput: SensitiveInput;
29284
+ /**
29285
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Monetization)
29286
+ */
29287
+ export interface Monetization extends globalThis.EnumItem {
29288
+ Name: "Monetization";
29289
+ Value: 40;
29290
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29291
+ }
29292
+ export const Monetization: Monetization;
29293
+ /**
29294
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#LoadOwnedAsset)
29295
+ */
29296
+ export interface LoadOwnedAsset extends globalThis.EnumItem {
29297
+ Name: "LoadOwnedAsset";
29298
+ Value: 41;
29299
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29300
+ }
29301
+ export const LoadOwnedAsset: LoadOwnedAsset;
29302
+ /**
29303
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Social)
29304
+ */
29305
+ export interface Social extends globalThis.EnumItem {
29306
+ Name: "Social";
29307
+ Value: 42;
29308
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29309
+ }
29310
+ export const Social: Social;
29311
+ /**
29312
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#ServerCommunication)
29313
+ */
29314
+ export interface ServerCommunication extends globalThis.EnumItem {
29315
+ Name: "ServerCommunication";
29316
+ Value: 43;
29317
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29318
+ }
29319
+ export const ServerCommunication: ServerCommunication;
29320
+ /**
29321
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Logging)
29322
+ */
29323
+ export interface Logging extends globalThis.EnumItem {
29324
+ Name: "Logging";
29325
+ Value: 44;
29326
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29327
+ }
29328
+ export const Logging: Logging;
29329
+ /**
29330
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#PromptExternalPurchase)
29331
+ */
29332
+ export interface PromptExternalPurchase extends globalThis.EnumItem {
29333
+ Name: "PromptExternalPurchase";
29334
+ Value: 45;
29335
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29336
+ }
29337
+ export const PromptExternalPurchase: PromptExternalPurchase;
29338
+ /**
29339
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Groups)
29340
+ */
29341
+ export interface Groups extends globalThis.EnumItem {
29342
+ Name: "Groups";
29343
+ Value: 46;
29344
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29345
+ }
29346
+ export const Groups: Groups;
29347
+ /**
29348
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Teleport)
29349
+ */
29350
+ export interface Teleport extends globalThis.EnumItem {
29351
+ Name: "Teleport";
29352
+ Value: 47;
29353
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29354
+ }
29355
+ export const Teleport: Teleport;
29356
+ /**
29357
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Consequences)
29358
+ */
29359
+ export interface Consequences extends globalThis.EnumItem {
29360
+ Name: "Consequences";
29361
+ Value: 48;
29362
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29363
+ }
29364
+ export const Consequences: Consequences;
29365
+ /**
29366
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Material)
29367
+ */
29368
+ export interface Material extends globalThis.EnumItem {
29369
+ Name: "Material";
29370
+ Value: 49;
29371
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29372
+ }
29373
+ export const Material: Material;
29374
+ /**
29375
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#AvatarBehavior)
29376
+ */
29377
+ export interface AvatarBehavior extends globalThis.EnumItem {
29378
+ Name: "AvatarBehavior";
29379
+ Value: 50;
29380
+ EnumType: typeof globalThis.Enum.SecurityCapability;
29381
+ }
29382
+ export const AvatarBehavior: AvatarBehavior;
29147
29383
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
29148
29384
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SecurityCapability | undefined;
29149
29385
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SecurityCapability | undefined;
29150
29386
  }
29151
- export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound | SecurityCapability.Players | SecurityCapability.CapabilityControl | SecurityCapability.Plugin | SecurityCapability.LocalUser | SecurityCapability.WritePlayer | SecurityCapability.RobloxScript | SecurityCapability.RobloxEngine | SecurityCapability.Unassigned | SecurityCapability.InternalTest | SecurityCapability.PluginOrOpenCloud | SecurityCapability.Assistant | SecurityCapability.RemoteCommand;
29387
+ export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound | SecurityCapability.Players | SecurityCapability.CapabilityControl | SecurityCapability.Plugin | SecurityCapability.LocalUser | SecurityCapability.WritePlayer | SecurityCapability.RobloxScript | SecurityCapability.RobloxEngine | SecurityCapability.Unassigned | SecurityCapability.InternalTest | SecurityCapability.PluginOrOpenCloud | SecurityCapability.Assistant | SecurityCapability.RemoteCommand | SecurityCapability.AssetRead | SecurityCapability.AssetManagement | SecurityCapability.DynamicGeneration | SecurityCapability.PlatformAvatarEditing | SecurityCapability.AssetCreateUpdate | SecurityCapability.Capture | SecurityCapability.SensitiveInput | SecurityCapability.Monetization | SecurityCapability.LoadOwnedAsset | SecurityCapability.Social | SecurityCapability.ServerCommunication | SecurityCapability.Logging | SecurityCapability.PromptExternalPurchase | SecurityCapability.Groups | SecurityCapability.Teleport | SecurityCapability.Consequences | SecurityCapability.Material | SecurityCapability.AvatarBehavior;
29152
29388
  /**
29153
29389
  * Customization options for gamepad selection when `GuiBase2d.SelectionGroup` is true.
29154
29390
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.903",
3
+ "version": "1.0.905",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },