@rbxts/types 1.0.904 → 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
  /**
@@ -16713,6 +16702,21 @@ interface FeatureRestrictionManager extends Instance {
16713
16702
  */
16714
16703
  readonly _nominal_FeatureRestrictionManager: unique symbol;
16715
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
+ }
16716
16720
  /**
16717
16721
  * A preconfigured particle emitter with the visual aesthetic of fire.
16718
16722
  *
@@ -20741,7 +20745,7 @@ interface HandleAdornment extends PVAdornment {
20741
20745
  readonly MouseLeave: RBXScriptSignal<() => void>;
20742
20746
  }
20743
20747
  /**
20744
- * A box that can be adorned to a `BasePart`.
20748
+ * A box-shaped handle that can be adorned to a `BasePart`.
20745
20749
  *
20746
20750
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BoxHandleAdornment)
20747
20751
  */
@@ -20761,7 +20765,7 @@ interface BoxHandleAdornment extends HandleAdornment {
20761
20765
  */
20762
20766
  Shading: Enum.AdornShading;
20763
20767
  /**
20764
- * The size of the adornment.
20768
+ * Size of the adornment.
20765
20769
  *
20766
20770
  * - **ThreadSafety**: ReadSafe
20767
20771
  *
@@ -20770,7 +20774,7 @@ interface BoxHandleAdornment extends HandleAdornment {
20770
20774
  Size: Vector3;
20771
20775
  }
20772
20776
  /**
20773
- * A cone that can be adorned to a `BasePart`.
20777
+ * A cone-shaped handle that can be adorned to a `BasePart`.
20774
20778
  *
20775
20779
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConeHandleAdornment)
20776
20780
  */
@@ -20784,7 +20788,7 @@ interface ConeHandleAdornment extends HandleAdornment {
20784
20788
  */
20785
20789
  readonly _nominal_ConeHandleAdornment: unique symbol;
20786
20790
  /**
20787
- * The height of the cone adornment.
20791
+ * Height of the cone adornment.
20788
20792
  *
20789
20793
  * - **ThreadSafety**: ReadSafe
20790
20794
  *
@@ -20798,7 +20802,7 @@ interface ConeHandleAdornment extends HandleAdornment {
20798
20802
  */
20799
20803
  Hollow: boolean;
20800
20804
  /**
20801
- * The radius of the cone adornment.
20805
+ * Radius of the cone adornment.
20802
20806
  *
20803
20807
  * - **ThreadSafety**: ReadSafe
20804
20808
  *
@@ -20813,7 +20817,7 @@ interface ConeHandleAdornment extends HandleAdornment {
20813
20817
  Shading: Enum.AdornShading;
20814
20818
  }
20815
20819
  /**
20816
- * A cylinder that can be adorned to a `BasePart`.
20820
+ * A cylinder-shaped handle that can be adorned to a `BasePart`.
20817
20821
  *
20818
20822
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CylinderHandleAdornment)
20819
20823
  */
@@ -20827,7 +20831,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
20827
20831
  */
20828
20832
  readonly _nominal_CylinderHandleAdornment: unique symbol;
20829
20833
  /**
20830
- * Angle of cylindrical sector (pie-slice).
20834
+ * Angle of the cylinder handle as in a "pie slice" sector.
20831
20835
  *
20832
20836
  * - **ThreadSafety**: ReadSafe
20833
20837
  *
@@ -20835,7 +20839,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
20835
20839
  */
20836
20840
  Angle: number;
20837
20841
  /**
20838
- * The height of the cylinder adornment.
20842
+ * Height of the cylinder adornment.
20839
20843
  *
20840
20844
  * - **ThreadSafety**: ReadSafe
20841
20845
  *
@@ -20843,7 +20847,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
20843
20847
  */
20844
20848
  Height: number;
20845
20849
  /**
20846
- * Inner radius of a hollow cylinder.
20850
+ * Inner radius with which to render a hollow cylinder.
20847
20851
  *
20848
20852
  * - **ThreadSafety**: ReadSafe
20849
20853
  *
@@ -20851,7 +20855,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
20851
20855
  */
20852
20856
  InnerRadius: number;
20853
20857
  /**
20854
- * The radius of the cylinder adornment.
20858
+ * Radius of the cylinder adornment.
20855
20859
  *
20856
20860
  * - **ThreadSafety**: ReadSafe
20857
20861
  *
@@ -20866,7 +20870,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
20866
20870
  Shading: Enum.AdornShading;
20867
20871
  }
20868
20872
  /**
20869
- * An image that can be adorned to a `BasePart`.
20873
+ * An image handle that can be adorned to a `BasePart`.
20870
20874
  *
20871
20875
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageHandleAdornment)
20872
20876
  */
@@ -20880,7 +20884,7 @@ interface ImageHandleAdornment extends HandleAdornment {
20880
20884
  */
20881
20885
  readonly _nominal_ImageHandleAdornment: unique symbol;
20882
20886
  /**
20883
- * The image to draw for the adornment.
20887
+ * Image to draw for the adornment.
20884
20888
  *
20885
20889
  * - **ThreadSafety**: ReadSafe
20886
20890
  *
@@ -20888,7 +20892,7 @@ interface ImageHandleAdornment extends HandleAdornment {
20888
20892
  */
20889
20893
  Image: ContentId;
20890
20894
  /**
20891
- * The size in studs of the image.
20895
+ * Size of the image in studs.
20892
20896
  *
20893
20897
  * - **ThreadSafety**: ReadSafe
20894
20898
  *
@@ -20897,7 +20901,7 @@ interface ImageHandleAdornment extends HandleAdornment {
20897
20901
  Size: Vector2;
20898
20902
  }
20899
20903
  /**
20900
- * A line that can be adorned to a `BasePart`.
20904
+ * A line-shaped handle that can be adorned to a `BasePart`.
20901
20905
  *
20902
20906
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LineHandleAdornment)
20903
20907
  */
@@ -20911,7 +20915,7 @@ interface LineHandleAdornment extends HandleAdornment {
20911
20915
  */
20912
20916
  readonly _nominal_LineHandleAdornment: unique symbol;
20913
20917
  /**
20914
- * The length of the line.
20918
+ * Length of the line.
20915
20919
  *
20916
20920
  * - **ThreadSafety**: ReadSafe
20917
20921
  *
@@ -20919,7 +20923,7 @@ interface LineHandleAdornment extends HandleAdornment {
20919
20923
  */
20920
20924
  Length: number;
20921
20925
  /**
20922
- * The thickness of the line in pixels.
20926
+ * Thickness of the line in pixels.
20923
20927
  *
20924
20928
  * - **ThreadSafety**: ReadSafe
20925
20929
  *
@@ -20928,6 +20932,8 @@ interface LineHandleAdornment extends HandleAdornment {
20928
20932
  Thickness: number;
20929
20933
  }
20930
20934
  /**
20935
+ * A pyramid-shaped handle that can be adorned to a `BasePart`.
20936
+ *
20931
20937
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment)
20932
20938
  */
20933
20939
  interface PyramidHandleAdornment extends HandleAdornment {
@@ -20940,6 +20946,8 @@ interface PyramidHandleAdornment extends HandleAdornment {
20940
20946
  */
20941
20947
  readonly _nominal_PyramidHandleAdornment: unique symbol;
20942
20948
  /**
20949
+ * Height of the pyramid adornment.
20950
+ *
20943
20951
  * - **ThreadSafety**: ReadSafe
20944
20952
  *
20945
20953
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Height)
@@ -20952,12 +20960,16 @@ interface PyramidHandleAdornment extends HandleAdornment {
20952
20960
  */
20953
20961
  Shading: Enum.AdornShading;
20954
20962
  /**
20963
+ * Number of sides for the pyramid adornment.
20964
+ *
20955
20965
  * - **ThreadSafety**: ReadSafe
20956
20966
  *
20957
20967
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Sides)
20958
20968
  */
20959
20969
  Sides: number;
20960
20970
  /**
20971
+ * Size of the pyramid adornment's base.
20972
+ *
20961
20973
  * - **ThreadSafety**: ReadSafe
20962
20974
  *
20963
20975
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment#Size)
@@ -20965,7 +20977,7 @@ interface PyramidHandleAdornment extends HandleAdornment {
20965
20977
  Size: number;
20966
20978
  }
20967
20979
  /**
20968
- * The SphereHandleAdornment is a sphere that can be adorned to a BasePart.
20980
+ * A sphere-shaped handle that can be adorned to a `BasePart`.
20969
20981
  *
20970
20982
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SphereHandleAdornment)
20971
20983
  */
@@ -20979,7 +20991,7 @@ interface SphereHandleAdornment extends HandleAdornment {
20979
20991
  */
20980
20992
  readonly _nominal_SphereHandleAdornment: unique symbol;
20981
20993
  /**
20982
- * The radius of the sphere adornment.
20994
+ * Radius of the sphere adornment.
20983
20995
  *
20984
20996
  * - **ThreadSafety**: ReadSafe
20985
20997
  *
@@ -21435,7 +21447,7 @@ interface Path2D extends GuiBase {
21435
21447
  */
21436
21448
  Closed: boolean;
21437
21449
  /**
21438
- * Determines the Color of the `Path2D`.
21450
+ * Determines the color of the `Path2D`.
21439
21451
  *
21440
21452
  * - **ThreadSafety**: ReadSafe
21441
21453
  *
@@ -23318,7 +23330,7 @@ interface Humanoid extends Instance {
23318
23330
  */
23319
23331
  UnequipTools(this: Humanoid): void;
23320
23332
  /**
23321
- * **Deprecated:**
23333
+ * **Deprecated:** This method has been superseded by `ApplyDescriptionAsync()`.
23322
23334
  *
23323
23335
  * Makes the character's look match that of the passed in `HumanoidDescription`.
23324
23336
  *
@@ -23346,7 +23358,7 @@ interface Humanoid extends Instance {
23346
23358
  */
23347
23359
  ApplyDescriptionAsync(this: Humanoid, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
23348
23360
  /**
23349
- * **Deprecated:**
23361
+ * **Deprecated:** This method has been superseded by `ApplyDescriptionResetAsync()`.
23350
23362
  *
23351
23363
  * Makes the character's look match that of the passed in `HumanoidDescription`, even after external changes.
23352
23364
  *
@@ -23374,7 +23386,7 @@ interface Humanoid extends Instance {
23374
23386
  */
23375
23387
  ApplyDescriptionResetAsync(this: Humanoid, humanoidDescription: HumanoidDescription, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): void;
23376
23388
  /**
23377
- * **Deprecated:**
23389
+ * **Deprecated:** This method has been superseded by `PlayEmoteAsync()`.
23378
23390
  *
23379
23391
  * Plays emotes and returns if was successfully ran.
23380
23392
  *
@@ -25734,7 +25746,7 @@ interface JointInstance extends Instance {
25734
25746
  */
25735
25747
  C0: CFrame;
25736
25748
  /**
25737
- * 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`.
25738
25750
  *
25739
25751
  * - **ThreadSafety**: ReadSafe
25740
25752
  *
@@ -27828,7 +27840,7 @@ interface MarketplaceService extends Instance {
27828
27840
  Name: string;
27829
27841
  }>;
27830
27842
  /**
27831
- * **Deprecated:**
27843
+ * **Deprecated:** This method has been superseded by `GetProductInfoAsync()`.
27832
27844
  *
27833
27845
  * Returns the product information of an asset using its asset ID.
27834
27846
  *
@@ -27923,7 +27935,7 @@ interface MarketplaceService extends Instance {
27923
27935
  */
27924
27936
  GetUsersPriceLevelsAsync(this: MarketplaceService, userIds: Array<unknown>): Array<unknown>;
27925
27937
  /**
27926
- * **Deprecated:**
27938
+ * **Deprecated:** This method has been superseded by `PlayerOwnsAssetAsync()`.
27927
27939
  *
27928
27940
  * Returns whether the given user has the given asset.
27929
27941
  *
@@ -27953,7 +27965,7 @@ interface MarketplaceService extends Instance {
27953
27965
  */
27954
27966
  PlayerOwnsAssetAsync(this: MarketplaceService, player: Instance, assetId: number): boolean;
27955
27967
  /**
27956
- * **Deprecated:**
27968
+ * **Deprecated:** This method has been superseded by `PlayerOwnsBundleAsync()`.
27957
27969
  *
27958
27970
  * Returns whether the given player owns the given bundle.
27959
27971
  *
@@ -28777,15 +28789,6 @@ interface ModerationService extends Instance {
28777
28789
  * @param config
28778
28790
  */
28779
28791
  CreateReviewableContentAsync(this: ModerationService, config: object): string;
28780
- /**
28781
- * - **ThreadSafety**: Unsafe
28782
- * - **Tags**: Yields
28783
- *
28784
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ModerationService#InternalCreateReviewableContentAsync)
28785
- * @param this
28786
- * @param config
28787
- */
28788
- InternalCreateReviewableContentAsync(this: ModerationService, config: object): string;
28789
28792
  /**
28790
28793
  * - **ThreadSafety**: Unsafe
28791
28794
  * - **Tags**: Yields
@@ -28795,13 +28798,6 @@ interface ModerationService extends Instance {
28795
28798
  * @param config
28796
28799
  */
28797
28800
  InternalRequestReviewableContentReviewAsync(this: ModerationService, config: object): void;
28798
- /**
28799
- * - **ThreadSafety**: Unsafe
28800
- *
28801
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ModerationService#InternalProcessReviewableContentEvent)
28802
- * @param event
28803
- */
28804
- InternalProcessReviewableContentEvent: ((event: object) => boolean) | undefined;
28805
28801
  }
28806
28802
  /**
28807
28803
  * Legacy object that contains members useful for pointer input.
@@ -34859,9 +34855,9 @@ interface Player extends Instance {
34859
34855
  */
34860
34856
  SaveString(this: Player, key: string, value: string): void;
34861
34857
  /**
34862
- * **Deprecated:**
34858
+ * **Deprecated:** This method has been superseded by `GetFriendsOnline()`.
34863
34859
  *
34864
- * Returns a dictionary of online connections.
34860
+ * Returns a dictionary of online connections. Returns the product information of an asset using its asset ID.
34865
34861
  *
34866
34862
  * - **ThreadSafety**: Unsafe
34867
34863
  * - **Tags**: Yields
@@ -34915,7 +34911,7 @@ interface Player extends Instance {
34915
34911
  */
34916
34912
  GetRankInGroupAsync(this: Player, groupId: number): number;
34917
34913
  /**
34918
- * **Deprecated:**
34914
+ * **Deprecated:** This method has been superseded by `GetRoleInGroup()`.
34919
34915
  *
34920
34916
  * Returns the player's role in the group as a string, or `Guest` if the player isn't part of the group.
34921
34917
  *
@@ -34986,7 +34982,7 @@ interface Player extends Instance {
34986
34982
  */
34987
34983
  IsFriendsWithAsync(this: Player, userId: number): boolean;
34988
34984
  /**
34989
- * **Deprecated:**
34985
+ * **Deprecated:** This method has been superseded by `IsInGroupAsync()`.
34990
34986
  *
34991
34987
  * Checks whether a player is a member of a group with the given ID.
34992
34988
  *
@@ -35014,7 +35010,7 @@ interface Player extends Instance {
35014
35010
  */
35015
35011
  IsInGroupAsync(this: Player, groupId: number): boolean;
35016
35012
  /**
35017
- * **Deprecated:**
35013
+ * **Deprecated:** This method has been superseded by `LoadCharacterAsync()`.
35018
35014
  *
35019
35015
  * Creates a new character for the player, removing the old one. Also clears the player's `Backpack` and `PlayerGui`.
35020
35016
  *
@@ -35038,7 +35034,7 @@ interface Player extends Instance {
35038
35034
  */
35039
35035
  LoadCharacterAsync(this: Player): void;
35040
35036
  /**
35041
- * **Deprecated:**
35037
+ * **Deprecated:** This method has been superseded by `LoadCharacterWithHumanoidDescriptionAsync()`.
35042
35038
  *
35043
35039
  * Spawns a player character with everything equipped in the passed in `HumanoidDescription`.
35044
35040
  *
@@ -35610,7 +35606,7 @@ interface Players extends Instance {
35610
35606
  */
35611
35607
  RespawnTime: number;
35612
35608
  /**
35613
- * 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.
35614
35610
  *
35615
35611
  * - **ThreadSafety**: Safe
35616
35612
  *
@@ -35656,7 +35652,7 @@ interface Players extends Instance {
35656
35652
  */
35657
35653
  BanAsync(this: Players, config: BanAsyncConfig): void;
35658
35654
  /**
35659
- * **Deprecated:**
35655
+ * **Deprecated:** This method has been superseded by `CreateHumanoidModelFromDescription()`.
35660
35656
  *
35661
35657
  * Returns a character `Model` equipped with everything specified in the passed in `HumanoidDescription`.
35662
35658
  *
@@ -35688,7 +35684,7 @@ interface Players extends Instance {
35688
35684
  */
35689
35685
  CreateHumanoidModelFromDescriptionAsync(this: Players, description: HumanoidDescription, rigType: CastsToEnum<Enum.HumanoidRigType>, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): Model;
35690
35686
  /**
35691
- * **Deprecated:**
35687
+ * **Deprecated:** This method has been superseded by `CreateHumanoidModelFromUserIdAsync()`.
35692
35688
  *
35693
35689
  * Returns a character Model set-up with everything equipped to match the avatar of the user specified by the passed in userId.
35694
35690
  *
@@ -35766,7 +35762,7 @@ interface Players extends Instance {
35766
35762
  */
35767
35763
  GetFriendsAsync(this: Players, userId: number): FriendPages;
35768
35764
  /**
35769
- * **Deprecated:**
35765
+ * **Deprecated:** This method has been superseded by `GetHumanoidDescriptionFromOutfitIdAsync()`.
35770
35766
  *
35771
35767
  * Returns the HumanoidDescription for a specified outfit, which will be set with the parts/colors/Animations etc of the outfit.
35772
35768
  *
@@ -35794,7 +35790,7 @@ interface Players extends Instance {
35794
35790
  */
35795
35791
  GetHumanoidDescriptionFromOutfitIdAsync(this: Players, outfitId: number): HumanoidDescription;
35796
35792
  /**
35797
- * **Deprecated:**
35793
+ * **Deprecated:** This method has been superseded by `GetHumanoidDescriptionFromUserIdAsync()`.
35798
35794
  *
35799
35795
  * Returns a HumanoidDescription which specifies everything equipped for the avatar of the user specified by the passed in userId.
35800
35796
  *
@@ -35881,7 +35877,7 @@ interface Players extends Instance {
35881
35877
  */
35882
35878
  UnbanAsync(this: Players, config: UnbanAsyncConfig): void;
35883
35879
  /**
35884
- * Fires when a player enters the game.
35880
+ * Fires when a player enters the experience.
35885
35881
  *
35886
35882
  * - **ThreadSafety**: Unsafe
35887
35883
  *
@@ -35889,7 +35885,7 @@ interface Players extends Instance {
35889
35885
  */
35890
35886
  readonly PlayerAdded: RBXScriptSignal<(player: Player) => void>;
35891
35887
  /**
35892
- * 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.
35893
35889
  *
35894
35890
  * - **ThreadSafety**: Unsafe
35895
35891
  *
@@ -35897,7 +35893,7 @@ interface Players extends Instance {
35897
35893
  */
35898
35894
  readonly PlayerMembershipChanged: RBXScriptSignal<(player: Player) => void>;
35899
35895
  /**
35900
- * Fires when a player is about to leave the game.
35896
+ * Fires when a player is about to leave the experience.
35901
35897
  *
35902
35898
  * - **ThreadSafety**: Unsafe
35903
35899
  *
@@ -35905,7 +35901,7 @@ interface Players extends Instance {
35905
35901
  */
35906
35902
  readonly PlayerRemoving: RBXScriptSignal<(player: Player, reason: Enum.PlayerExitReason) => void>;
35907
35903
  /**
35908
- * 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.
35909
35905
  *
35910
35906
  * - **ThreadSafety**: Unsafe
35911
35907
  *
@@ -37120,7 +37116,7 @@ interface ReplicatedFirst extends Instance {
37120
37116
  */
37121
37117
  readonly _nominal_ReplicatedFirst: unique symbol;
37122
37118
  /**
37123
- * 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.
37124
37120
  *
37125
37121
  * - **ThreadSafety**: Unsafe
37126
37122
  *
@@ -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;
@@ -4503,6 +4504,75 @@ interface DebugSettings extends Instance {
4503
4504
  * @deprecated
4504
4505
  */
4505
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;
4506
4576
  }
4507
4577
  /**
4508
4578
  * - **Tags**: NotCreatable, Service, NotReplicated
@@ -5715,6 +5785,21 @@ interface File extends Instance {
5715
5785
  */
5716
5786
  GetTemporaryId(this: File): ContentId;
5717
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
+ }
5718
5803
  /**
5719
5804
  * A preconfigured particle emitter with the visual aesthetic of fire.
5720
5805
  *
@@ -5808,6 +5893,17 @@ interface GameSettings extends Instance {
5808
5893
  * @deprecated
5809
5894
  */
5810
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;
5811
5907
  }
5812
5908
  /**
5813
5909
  * The GamepadService is internally responsible for handling inputs from various controllers, such as Xbox One or PlayStation DualShock controllers.
@@ -6547,7 +6643,7 @@ interface HandleAdornment extends PVAdornment {
6547
6643
  readonly _nominal_HandleAdornment: unique symbol;
6548
6644
  }
6549
6645
  /**
6550
- * A box that can be adorned to a `BasePart`.
6646
+ * A box-shaped handle that can be adorned to a `BasePart`.
6551
6647
  *
6552
6648
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BoxHandleAdornment)
6553
6649
  */
@@ -6562,7 +6658,7 @@ interface BoxHandleAdornment extends HandleAdornment {
6562
6658
  readonly _nominal_BoxHandleAdornment: unique symbol;
6563
6659
  }
6564
6660
  /**
6565
- * A cone that can be adorned to a `BasePart`.
6661
+ * A cone-shaped handle that can be adorned to a `BasePart`.
6566
6662
  *
6567
6663
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConeHandleAdornment)
6568
6664
  */
@@ -6577,7 +6673,7 @@ interface ConeHandleAdornment extends HandleAdornment {
6577
6673
  readonly _nominal_ConeHandleAdornment: unique symbol;
6578
6674
  }
6579
6675
  /**
6580
- * A cylinder that can be adorned to a `BasePart`.
6676
+ * A cylinder-shaped handle that can be adorned to a `BasePart`.
6581
6677
  *
6582
6678
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CylinderHandleAdornment)
6583
6679
  */
@@ -6592,7 +6688,7 @@ interface CylinderHandleAdornment extends HandleAdornment {
6592
6688
  readonly _nominal_CylinderHandleAdornment: unique symbol;
6593
6689
  }
6594
6690
  /**
6595
- * An image that can be adorned to a `BasePart`.
6691
+ * An image handle that can be adorned to a `BasePart`.
6596
6692
  *
6597
6693
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageHandleAdornment)
6598
6694
  */
@@ -6607,7 +6703,7 @@ interface ImageHandleAdornment extends HandleAdornment {
6607
6703
  readonly _nominal_ImageHandleAdornment: unique symbol;
6608
6704
  }
6609
6705
  /**
6610
- * A line that can be adorned to a `BasePart`.
6706
+ * A line-shaped handle that can be adorned to a `BasePart`.
6611
6707
  *
6612
6708
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LineHandleAdornment)
6613
6709
  */
@@ -6622,6 +6718,8 @@ interface LineHandleAdornment extends HandleAdornment {
6622
6718
  readonly _nominal_LineHandleAdornment: unique symbol;
6623
6719
  }
6624
6720
  /**
6721
+ * A pyramid-shaped handle that can be adorned to a `BasePart`.
6722
+ *
6625
6723
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PyramidHandleAdornment)
6626
6724
  */
6627
6725
  interface PyramidHandleAdornment extends HandleAdornment {
@@ -6635,7 +6733,7 @@ interface PyramidHandleAdornment extends HandleAdornment {
6635
6733
  readonly _nominal_PyramidHandleAdornment: unique symbol;
6636
6734
  }
6637
6735
  /**
6638
- * The SphereHandleAdornment is a sphere that can be adorned to a BasePart.
6736
+ * A sphere-shaped handle that can be adorned to a `BasePart`.
6639
6737
  *
6640
6738
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SphereHandleAdornment)
6641
6739
  */
@@ -8678,7 +8776,7 @@ interface NetworkMarker extends Instance {
8678
8776
  readonly _nominal_NetworkMarker: unique symbol;
8679
8777
  }
8680
8778
  /**
8681
- * 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.
8682
8780
  *
8683
8781
  * - **Tags**: NotCreatable, NotBrowsable
8684
8782
  *
@@ -8699,7 +8797,7 @@ interface NetworkPeer extends Instance {
8699
8797
  * - **ThreadSafety**: Unsafe
8700
8798
  *
8701
8799
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/NetworkPeer#SetOutgoingKBPSLimit)
8702
- * @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.
8703
8801
  * @param limit
8704
8802
  */
8705
8803
  SetOutgoingKBPSLimit(this: NetworkPeer, limit: number): void;
@@ -8805,7 +8903,7 @@ interface NetworkSettings extends Instance {
8805
8903
  */
8806
8904
  EmulatedTotalMemoryInMB: number;
8807
8905
  /**
8808
- * Describes how much free memory is available, in MBs.
8906
+ * Describes how much free memory is available, in MiBs.
8809
8907
  *
8810
8908
  * - **ThreadSafety**: ReadSafe
8811
8909
  * - **Tags**: Hidden, NotReplicated
@@ -10052,6 +10150,213 @@ interface PhysicsSettings extends Instance {
10052
10150
  * @deprecated
10053
10151
  */
10054
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;
10055
10360
  }
10056
10361
  /**
10057
10362
  * - **Tags**: NotCreatable, Service
@@ -10624,7 +10929,7 @@ interface Plugin extends Instance {
10624
10929
  */
10625
10930
  ImportFbxAnimationAsync(this: Plugin, rigModel: Instance, isR15?: boolean): Instance | undefined;
10626
10931
  /**
10627
- * **Deprecated:**
10932
+ * **Deprecated:** This method has been superseded by `ImportFbxRigAsync()`.
10628
10933
  *
10629
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`.
10630
10935
  *
@@ -10672,7 +10977,7 @@ interface Plugin extends Instance {
10672
10977
  */
10673
10978
  PromptForExistingAssetIdAsync(this: Plugin, assetType: string): number;
10674
10979
  /**
10675
- * **Deprecated:**
10980
+ * **Deprecated:** This method has been superseded by `PromptSaveSelectionAsync()`.
10676
10981
  *
10677
10982
  * Prompts the user to save their current selection with the specified file name.
10678
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.904",
3
+ "version": "1.0.905",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },