@rbxts/types 1.0.924 → 1.0.927

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.
@@ -23,8 +23,6 @@ interface Services {
23
23
  AssetQualityService: AssetQualityService;
24
24
  AssetService: AssetService;
25
25
  AudioFocusService: AudioFocusService;
26
- AuroraScriptService: AuroraScriptService;
27
- AuroraService: AuroraService;
28
26
  AvatarChatService: AvatarChatService;
29
27
  AvatarCreationService: AvatarCreationService;
30
28
  AvatarEditorService: AvatarEditorService;
@@ -39,6 +37,7 @@ interface Services {
39
37
  ChangeHistoryService: ChangeHistoryService;
40
38
  ChangeHistoryStreamingService: ChangeHistoryStreamingService;
41
39
  Chat: Chat;
40
+ ClientStorageService: ClientStorageService;
42
41
  CloudCRUDService: CloudCRUDService;
43
42
  CloudExecutionService: CloudExecutionService;
44
43
  CollaboratorsService: CollaboratorsService;
@@ -65,6 +64,7 @@ interface Services {
65
64
  DebuggerUIService: DebuggerUIService;
66
65
  DebugSettings: DebugSettings;
67
66
  DeferredAssetManagerService: DeferredAssetManagerService;
67
+ DesignFoundationsService: DesignFoundationsService;
68
68
  DeviceIdService: DeviceIdService;
69
69
  DraggerService: DraggerService;
70
70
  EditableService: EditableService;
@@ -108,7 +108,6 @@ interface Services {
108
108
  InstanceFileSyncService: InstanceFileSyncService;
109
109
  InternalMessagingService: InternalMessagingService;
110
110
  InternalMessagingServiceVerifier: InternalMessagingServiceVerifier;
111
- InternalSyncService: InternalSyncService;
112
111
  IXPService: IXPService;
113
112
  JointsService: JointsService;
114
113
  KeyframeSequenceProvider: KeyframeSequenceProvider;
@@ -122,7 +121,6 @@ interface Services {
122
121
  LodDataService: LodDataService;
123
122
  LogReporterService: LogReporterService;
124
123
  LogService: LogService;
125
- LSPFileSyncService: LSPFileSyncService;
126
124
  LuaSettings: LuaSettings;
127
125
  LuauScriptAnalyzerService: LuauScriptAnalyzerService;
128
126
  MarketplaceService: MarketplaceService;
@@ -211,6 +209,7 @@ interface Services {
211
209
  SharedTableRegistry: SharedTableRegistry;
212
210
  SlimAnimationReplicationService: SlimAnimationReplicationService;
213
211
  SlimContentProvider: SlimContentProvider;
212
+ SlimDebugSettings: SlimDebugSettings;
214
213
  SlimReplicationService: SlimReplicationService;
215
214
  SlimService: SlimService;
216
215
  SmoothVoxelsUpgraderService: SmoothVoxelsUpgraderService;
@@ -329,7 +328,6 @@ interface CreatableInstances {
329
328
  AudioSpeechToText: AudioSpeechToText;
330
329
  AudioTextToSpeech: AudioTextToSpeech;
331
330
  AudioTremolo: AudioTremolo;
332
- AuroraScript: AuroraScript;
333
331
  AvatarAbilityRules: AvatarAbilityRules;
334
332
  AvatarAccessoryRules: AvatarAccessoryRules;
335
333
  AvatarAnimationRules: AvatarAnimationRules;
@@ -436,7 +434,6 @@ interface CreatableInstances {
436
434
  InputBinding: InputBinding;
437
435
  InputContext: InputContext;
438
436
  IntConstrainedValue: IntConstrainedValue;
439
- InternalSyncItem: InternalSyncItem;
440
437
  IntersectOperation: IntersectOperation;
441
438
  IntValue: IntValue;
442
439
  Keyframe: Keyframe;
@@ -544,6 +541,7 @@ interface CreatableInstances {
544
541
  TextBox: TextBox;
545
542
  TextButton: TextButton;
546
543
  TextChannel: TextChannel;
544
+ TextChannelWindow: TextChannelWindow;
547
545
  TextChatCommand: TextChatCommand;
548
546
  TextChatMessageProperties: TextChatMessageProperties;
549
547
  TextGenerator: TextGenerator;
@@ -814,6 +812,7 @@ interface Objects extends Instances {
814
812
  OutputLink: OutputLink;
815
813
  PluginConnection: PluginConnection;
816
814
  ScreenshotCapture: ScreenshotCapture;
815
+ StudioActionOverride: StudioActionOverride;
817
816
  TerrainIterateOperation: TerrainIterateOperation;
818
817
  TerrainModifyOperation: TerrainModifyOperation;
819
818
  TerrainReadOperation: TerrainReadOperation;
@@ -926,7 +925,7 @@ interface ConfigSnapshot extends RBXObject {
926
925
  readonly _nominal_ConfigSnapshot: unique symbol;
927
926
  }
928
927
  /**
929
- * Instance which allows for the runtime creation and manipulation of images.
928
+ * Object which allows for the runtime creation and manipulation of images.
930
929
  *
931
930
  * - **Tags**: NotCreatable
932
931
  *
@@ -943,7 +942,7 @@ interface EditableImage extends RBXObject {
943
942
  readonly _nominal_EditableImage: unique symbol;
944
943
  }
945
944
  /**
946
- * Instance which allows for the runtime creation and manipulation of meshes.
945
+ * Object which allows for the runtime creation and manipulation of meshes.
947
946
  *
948
947
  * - **Tags**: NotCreatable
949
948
  *
@@ -1281,7 +1280,7 @@ interface AnimationClipProvider extends Instance {
1281
1280
  * @param assetId The content ID of the animation.
1282
1281
  * @returns The `AnimationClip` found.
1283
1282
  *
1284
- * @deprecated GetAnimationClipAsync
1283
+ * @deprecated
1285
1284
  */
1286
1285
  GetAnimationClip(this: AnimationClipProvider, assetId: ContentId): AnimationClip;
1287
1286
  /**
@@ -1298,7 +1297,7 @@ interface AnimationClipProvider extends Instance {
1298
1297
  * @param useCache True if a cached version can be returned.
1299
1298
  * @returns The `AnimationClip` found.
1300
1299
  *
1301
- * @deprecated GetAnimationClipAsync
1300
+ * @deprecated
1302
1301
  */
1303
1302
  GetAnimationClipById(this: AnimationClipProvider, assetId: number, useCache: boolean): AnimationClip;
1304
1303
  }
@@ -2096,40 +2095,6 @@ interface AuroraScriptObject extends Instance {
2096
2095
  */
2097
2096
  readonly _nominal_AuroraScriptObject: unique symbol;
2098
2097
  }
2099
- /**
2100
- * - **Tags**: NotCreatable, Service
2101
- *
2102
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService)
2103
- *
2104
- * @deprecated
2105
- */
2106
- interface AuroraScriptService extends Instance {
2107
- /**
2108
- * **DO NOT USE!**
2109
- *
2110
- * This field exists to force TypeScript to recognize this as a nominal type
2111
- * @hidden
2112
- * @deprecated
2113
- */
2114
- readonly _nominal_AuroraScriptService: unique symbol;
2115
- }
2116
- /**
2117
- * - **Tags**: NotCreatable, Service
2118
- *
2119
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService)
2120
- *
2121
- * @deprecated
2122
- */
2123
- interface AuroraService extends Instance {
2124
- /**
2125
- * **DO NOT USE!**
2126
- *
2127
- * This field exists to force TypeScript to recognize this as a nominal type
2128
- * @hidden
2129
- * @deprecated
2130
- */
2131
- readonly _nominal_AuroraService: unique symbol;
2132
- }
2133
2098
  /**
2134
2099
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAbilityRules)
2135
2100
  */
@@ -2513,7 +2478,7 @@ interface RootImportData extends BaseImportData {
2513
2478
  readonly _nominal_RootImportData: unique symbol;
2514
2479
  }
2515
2480
  /**
2516
- * The BasePlayerGui is an abstract class which the GUI drawing storage classes inherit from.
2481
+ * `BasePlayerGui` is an abstract class which the GUI drawing storage classes inherit from.
2517
2482
  *
2518
2483
  * - **Tags**: NotCreatable
2519
2484
  *
@@ -2845,7 +2810,7 @@ interface BodyMover extends Instance {
2845
2810
  *
2846
2811
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyAngularVelocity)
2847
2812
  *
2848
- * @deprecated AngularVelocity
2813
+ * @deprecated
2849
2814
  */
2850
2815
  interface BodyAngularVelocity extends BodyMover {
2851
2816
  /**
@@ -2866,7 +2831,7 @@ interface BodyAngularVelocity extends BodyMover {
2866
2831
  *
2867
2832
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyForce)
2868
2833
  *
2869
- * @deprecated VectorForce
2834
+ * @deprecated
2870
2835
  */
2871
2836
  interface BodyForce extends BodyMover {
2872
2837
  /**
@@ -2887,7 +2852,7 @@ interface BodyForce extends BodyMover {
2887
2852
  *
2888
2853
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyGyro)
2889
2854
  *
2890
- * @deprecated AlignOrientation
2855
+ * @deprecated
2891
2856
  */
2892
2857
  interface BodyGyro extends BodyMover {
2893
2858
  /**
@@ -2908,7 +2873,7 @@ interface BodyGyro extends BodyMover {
2908
2873
  *
2909
2874
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyPosition)
2910
2875
  *
2911
- * @deprecated AlignPosition
2876
+ * @deprecated
2912
2877
  */
2913
2878
  interface BodyPosition extends BodyMover {
2914
2879
  /**
@@ -2929,7 +2894,7 @@ interface BodyPosition extends BodyMover {
2929
2894
  *
2930
2895
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyThrust)
2931
2896
  *
2932
- * @deprecated VectorForce
2897
+ * @deprecated
2933
2898
  */
2934
2899
  interface BodyThrust extends BodyMover {
2935
2900
  /**
@@ -2950,7 +2915,7 @@ interface BodyThrust extends BodyMover {
2950
2915
  *
2951
2916
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BodyVelocity)
2952
2917
  *
2953
- * @deprecated LinearVelocity
2918
+ * @deprecated
2954
2919
  */
2955
2920
  interface BodyVelocity extends BodyMover {
2956
2921
  /**
@@ -2971,7 +2936,7 @@ interface BodyVelocity extends BodyMover {
2971
2936
  *
2972
2937
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RocketPropulsion)
2973
2938
  *
2974
- * @deprecated LineForce
2939
+ * @deprecated
2975
2940
  */
2976
2941
  interface RocketPropulsion extends BodyMover {
2977
2942
  /**
@@ -3423,6 +3388,21 @@ interface DragDetector extends ClickDetector {
3423
3388
  */
3424
3389
  readonly _nominal_DragDetector: unique symbol;
3425
3390
  }
3391
+ /**
3392
+ * - **Tags**: NotCreatable, Service, NotReplicated
3393
+ *
3394
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ClientStorageService)
3395
+ */
3396
+ interface ClientStorageService extends Instance {
3397
+ /**
3398
+ * **DO NOT USE!**
3399
+ *
3400
+ * This field exists to force TypeScript to recognize this as a nominal type
3401
+ * @hidden
3402
+ * @deprecated
3403
+ */
3404
+ readonly _nominal_ClientStorageService: unique symbol;
3405
+ }
3426
3406
  /**
3427
3407
  * - **Tags**: NotCreatable, Service, NotReplicated
3428
3408
  *
@@ -3770,7 +3750,7 @@ interface PlaneConstraint extends Constraint {
3770
3750
  *
3771
3751
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Plane)
3772
3752
  *
3773
- * @deprecated PlaneConstraint
3753
+ * @deprecated
3774
3754
  */
3775
3755
  interface Plane extends PlaneConstraint {
3776
3756
  /**
@@ -4779,6 +4759,21 @@ interface DeferredAssetManagerService extends Instance {
4779
4759
  */
4780
4760
  readonly _nominal_DeferredAssetManagerService: unique symbol;
4781
4761
  }
4762
+ /**
4763
+ * - **Tags**: NotCreatable, Service, NotReplicated
4764
+ *
4765
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DesignFoundationsService)
4766
+ */
4767
+ interface DesignFoundationsService extends Instance {
4768
+ /**
4769
+ * **DO NOT USE!**
4770
+ *
4771
+ * This field exists to force TypeScript to recognize this as a nominal type
4772
+ * @hidden
4773
+ * @deprecated
4774
+ */
4775
+ readonly _nominal_DesignFoundationsService: unique symbol;
4776
+ }
4782
4777
  /**
4783
4778
  * - **Tags**: NotCreatable, Service, NotReplicated
4784
4779
  *
@@ -6415,6 +6410,21 @@ interface TextBox extends GuiObject {
6415
6410
  */
6416
6411
  readonly _nominal_TextBox: unique symbol;
6417
6412
  }
6413
+ /**
6414
+ * - **Tags**: NotBrowsable
6415
+ *
6416
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextChannelWindow)
6417
+ */
6418
+ interface TextChannelWindow extends GuiObject {
6419
+ /**
6420
+ * **DO NOT USE!**
6421
+ *
6422
+ * This field exists to force TypeScript to recognize this as a nominal type
6423
+ * @hidden
6424
+ * @deprecated
6425
+ */
6426
+ readonly _nominal_TextChannelWindow: unique symbol;
6427
+ }
6418
6428
  /**
6419
6429
  * A GUI object that displays video content from a connected `VideoPlayer`.
6420
6430
  *
@@ -7601,36 +7611,6 @@ interface InternalMessagingServiceVerifier extends Instance {
7601
7611
  */
7602
7612
  readonly _nominal_InternalMessagingServiceVerifier: unique symbol;
7603
7613
  }
7604
- /**
7605
- * - **Tags**: NotReplicated
7606
- *
7607
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InternalSyncItem)
7608
- */
7609
- interface InternalSyncItem extends Instance {
7610
- /**
7611
- * **DO NOT USE!**
7612
- *
7613
- * This field exists to force TypeScript to recognize this as a nominal type
7614
- * @hidden
7615
- * @deprecated
7616
- */
7617
- readonly _nominal_InternalSyncItem: unique symbol;
7618
- }
7619
- /**
7620
- * - **Tags**: NotCreatable, Service, NotReplicated
7621
- *
7622
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InternalSyncService)
7623
- */
7624
- interface InternalSyncService extends Instance {
7625
- /**
7626
- * **DO NOT USE!**
7627
- *
7628
- * This field exists to force TypeScript to recognize this as a nominal type
7629
- * @hidden
7630
- * @deprecated
7631
- */
7632
- readonly _nominal_InternalSyncService: unique symbol;
7633
- }
7634
7614
  /**
7635
7615
  * The base class for joints.
7636
7616
  *
@@ -7672,7 +7652,7 @@ interface DynamicRotate extends JointInstance {
7672
7652
  *
7673
7653
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RotateP)
7674
7654
  *
7675
- * @deprecated HingeConstraint
7655
+ * @deprecated
7676
7656
  */
7677
7657
  interface RotateP extends DynamicRotate {
7678
7658
  /**
@@ -7691,7 +7671,7 @@ interface RotateP extends DynamicRotate {
7691
7671
  *
7692
7672
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RotateV)
7693
7673
  *
7694
- * @deprecated HingeConstraint
7674
+ * @deprecated
7695
7675
  */
7696
7676
  interface RotateV extends DynamicRotate {
7697
7677
  /**
@@ -7712,7 +7692,7 @@ interface RotateV extends DynamicRotate {
7712
7692
  *
7713
7693
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Glue)
7714
7694
  *
7715
- * @deprecated WeldConstraint
7695
+ * @deprecated
7716
7696
  */
7717
7697
  interface Glue extends JointInstance {
7718
7698
  /**
@@ -7733,7 +7713,7 @@ interface Glue extends JointInstance {
7733
7713
  *
7734
7714
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ManualSurfaceJointInstance)
7735
7715
  *
7736
- * @deprecated WeldConstraint
7716
+ * @deprecated
7737
7717
  */
7738
7718
  interface ManualSurfaceJointInstance extends JointInstance {
7739
7719
  /**
@@ -7754,7 +7734,7 @@ interface ManualSurfaceJointInstance extends JointInstance {
7754
7734
  *
7755
7735
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ManualGlue)
7756
7736
  *
7757
- * @deprecated WeldConstraint
7737
+ * @deprecated
7758
7738
  */
7759
7739
  interface ManualGlue extends ManualSurfaceJointInstance {
7760
7740
  /**
@@ -7775,7 +7755,7 @@ interface ManualGlue extends ManualSurfaceJointInstance {
7775
7755
  *
7776
7756
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ManualWeld)
7777
7757
  *
7778
- * @deprecated WeldConstraint
7758
+ * @deprecated
7779
7759
  */
7780
7760
  interface ManualWeld extends ManualSurfaceJointInstance {
7781
7761
  /**
@@ -7824,7 +7804,7 @@ interface Motor6D extends Motor {
7824
7804
  *
7825
7805
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Rotate)
7826
7806
  *
7827
- * @deprecated HingeConstraint
7807
+ * @deprecated
7828
7808
  */
7829
7809
  interface Rotate extends JointInstance {
7830
7810
  /**
@@ -7845,7 +7825,7 @@ interface Rotate extends JointInstance {
7845
7825
  *
7846
7826
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Snap)
7847
7827
  *
7848
- * @deprecated WeldConstraint
7828
+ * @deprecated
7849
7829
  */
7850
7830
  interface Snap extends JointInstance {
7851
7831
  /**
@@ -7963,7 +7943,7 @@ interface KeyframeSequenceProvider extends Instance {
7963
7943
  * @param assetId The content ID of the animation.
7964
7944
  * @returns The `KeyframeSequence` found.
7965
7945
  *
7966
- * @deprecated GetKeyframeSequenceAsync
7946
+ * @deprecated
7967
7947
  */
7968
7948
  GetKeyframeSequence(this: KeyframeSequenceProvider, assetId: ContentId): Instance | undefined;
7969
7949
  /**
@@ -7980,24 +7960,9 @@ interface KeyframeSequenceProvider extends Instance {
7980
7960
  * @param useCache True if a cached version can be returned.
7981
7961
  * @returns The `KeyframeSequence` found.
7982
7962
  *
7983
- * @deprecated GetKeyframeSequenceAsync
7984
- */
7985
- GetKeyframeSequenceById(this: KeyframeSequenceProvider, assetId: number, useCache: boolean): Instance | undefined;
7986
- }
7987
- /**
7988
- * - **Tags**: NotCreatable, Service, NotReplicated
7989
- *
7990
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LSPFileSyncService)
7991
- */
7992
- interface LSPFileSyncService extends Instance {
7993
- /**
7994
- * **DO NOT USE!**
7995
- *
7996
- * This field exists to force TypeScript to recognize this as a nominal type
7997
- * @hidden
7998
7963
  * @deprecated
7999
7964
  */
8000
- readonly _nominal_LSPFileSyncService: unique symbol;
7965
+ GetKeyframeSequenceById(this: KeyframeSequenceProvider, assetId: number, useCache: boolean): Instance | undefined;
8001
7966
  }
8002
7967
  /**
8003
7968
  * - **Tags**: NotCreatable, Service, NotReplicated
@@ -8279,53 +8244,6 @@ interface LuaSourceContainer extends Instance {
8279
8244
  */
8280
8245
  readonly _nominal_LuaSourceContainer: unique symbol;
8281
8246
  }
8282
- /**
8283
- * - **Tags**:
8284
- *
8285
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript)
8286
- *
8287
- * @deprecated
8288
- */
8289
- interface AuroraScript extends LuaSourceContainer {
8290
- /**
8291
- * **DO NOT USE!**
8292
- *
8293
- * This field exists to force TypeScript to recognize this as a nominal type
8294
- * @hidden
8295
- * @deprecated
8296
- */
8297
- readonly _nominal_AuroraScript: unique symbol;
8298
- /**
8299
- * - **ThreadSafety**: ReadSafe
8300
- *
8301
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#EnableCulling)
8302
- */
8303
- EnableCulling: boolean;
8304
- /**
8305
- * - **ThreadSafety**: ReadSafe
8306
- *
8307
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#EnableLOD)
8308
- */
8309
- EnableLOD: boolean;
8310
- /**
8311
- * - **ThreadSafety**: ReadSafe
8312
- *
8313
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#LODCriticality)
8314
- */
8315
- LODCriticality: number;
8316
- /**
8317
- * - **ThreadSafety**: ReadSafe
8318
- *
8319
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Priority)
8320
- */
8321
- Priority: number;
8322
- /**
8323
- * - **ThreadSafety**: ReadSafe
8324
- *
8325
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Source)
8326
- */
8327
- Source: ProtectedString;
8328
- }
8329
8247
  /**
8330
8248
  * The base class for all script objects which run automatically.
8331
8249
  *
@@ -9178,7 +9096,7 @@ interface OmniRecommendationsService extends Instance {
9178
9096
  *
9179
9097
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudApiV1)
9180
9098
  *
9181
- * @deprecated HttpService
9099
+ * @deprecated
9182
9100
  */
9183
9101
  interface OpenCloudApiV1 extends Instance {
9184
9102
  /**
@@ -9197,7 +9115,7 @@ interface OpenCloudApiV1 extends Instance {
9197
9115
  *
9198
9116
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/OpenCloudService)
9199
9117
  *
9200
- * @deprecated HttpService
9118
+ * @deprecated
9201
9119
  */
9202
9120
  interface OpenCloudService extends Instance {
9203
9121
  /**
@@ -9733,7 +9651,7 @@ interface WorldRoot extends Model {
9733
9651
  StepPhysics(this: WorldRoot, dt: number, parts?: Array<Instance>): void;
9734
9652
  }
9735
9653
  /**
9736
- * **Workspace** houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
9654
+ * `Workspace` houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
9737
9655
  *
9738
9656
  * - **Tags**: NotCreatable, Service
9739
9657
  *
@@ -9806,7 +9724,7 @@ interface Workspace extends WorldRoot {
9806
9724
  * - **Tags**:
9807
9725
  *
9808
9726
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#BreakJoints)
9809
- * @param this **Workspace** houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
9727
+ * @param this `Workspace` houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
9810
9728
  * @param objects An array of `BaseParts` for whom joints are to be broken.
9811
9729
  *
9812
9730
  * @deprecated
@@ -9821,7 +9739,7 @@ interface Workspace extends WorldRoot {
9821
9739
  * - **Tags**:
9822
9740
  *
9823
9741
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#MakeJoints)
9824
- * @param this **Workspace** houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
9742
+ * @param this `Workspace` houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
9825
9743
  * @param objects An array of `parts` for whom joints are to be made.
9826
9744
  *
9827
9745
  * @deprecated
@@ -9833,7 +9751,7 @@ interface Workspace extends WorldRoot {
9833
9751
  * - **ThreadSafety**: Unsafe
9834
9752
  *
9835
9753
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Workspace#ZoomToExtents)
9836
- * @param this **Workspace** houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
9754
+ * @param this `Workspace` houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
9837
9755
  */
9838
9756
  ZoomToExtents(this: Workspace): void;
9839
9757
  }
@@ -11139,7 +11057,7 @@ interface Plugin extends Instance {
11139
11057
  * @param pluginGuiId A unique and consistent identifier used to storing the widget's dock state and other internal details.
11140
11058
  * @param dockWidgetPluginGuiInfo Describes the `DockWidgetPluginGui` to create (initial state, size, etc).
11141
11059
  *
11142
- * @deprecated CreateDockWidgetPluginGuiAsync
11060
+ * @deprecated
11143
11061
  */
11144
11062
  CreateDockWidgetPluginGui(this: Plugin, pluginGuiId: string, dockWidgetPluginGuiInfo: DockWidgetPluginGuiInfo): DockWidgetPluginGui;
11145
11063
  /**
@@ -11167,7 +11085,7 @@ interface Plugin extends Instance {
11167
11085
  * @param rigModel
11168
11086
  * @param isR15
11169
11087
  *
11170
- * @deprecated ImportFbxAnimationAsync
11088
+ * @deprecated
11171
11089
  */
11172
11090
  ImportFbxAnimation(this: Plugin, rigModel: Instance, isR15?: boolean): Instance | undefined;
11173
11091
  /**
@@ -11194,7 +11112,7 @@ interface Plugin extends Instance {
11194
11112
  * @param this
11195
11113
  * @param isR15
11196
11114
  *
11197
- * @deprecated ImportFbxRigAsync
11115
+ * @deprecated
11198
11116
  */
11199
11117
  ImportFbxRig(this: Plugin, isR15?: boolean): Model;
11200
11118
  /**
@@ -11242,7 +11160,7 @@ interface Plugin extends Instance {
11242
11160
  * @param this
11243
11161
  * @param suggestedFileName
11244
11162
  *
11245
- * @deprecated PromptSaveSelectionAsync
11163
+ * @deprecated
11246
11164
  */
11247
11165
  PromptSaveSelection(this: Plugin, suggestedFileName?: string): boolean;
11248
11166
  /**
@@ -11597,6 +11515,13 @@ interface PluginToolbarButton extends Instance {
11597
11515
  * @deprecated
11598
11516
  */
11599
11517
  readonly _nominal_PluginToolbarButton: unique symbol;
11518
+ /**
11519
+ * - **ThreadSafety**: ReadSafe
11520
+ * - **Tags**: NotReplicated
11521
+ *
11522
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginToolbarButton#IconContent)
11523
+ */
11524
+ IconContent: Content;
11600
11525
  /**
11601
11526
  * Sets the state of the plugin button.
11602
11527
  *
@@ -12013,6 +11938,132 @@ interface RenderSettings extends Instance {
12013
11938
  * @deprecated
12014
11939
  */
12015
11940
  readonly _nominal_RenderSettings: unique symbol;
11941
+ /**
11942
+ * Sets the starting quality level of the framerate manager.
11943
+ *
11944
+ * - **ThreadSafety**: ReadSafe
11945
+ *
11946
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#AutoFRMLevel)
11947
+ */
11948
+ AutoFRMLevel: number;
11949
+ /**
11950
+ * Whether all scene updates will be given an unlimited budget, regardless of how computationally expensive it may be.
11951
+ *
11952
+ * - **ThreadSafety**: ReadSafe
11953
+ *
11954
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#EagerBulkExecution)
11955
+ */
11956
+ EagerBulkExecution: boolean;
11957
+ /**
11958
+ * Sets the graphics quality level in Roblox Studio.
11959
+ *
11960
+ * - **ThreadSafety**: ReadSafe
11961
+ *
11962
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#EditQualityLevel)
11963
+ */
11964
+ EditQualityLevel: Enum.QualityLevel;
11965
+ /**
11966
+ * Toggles the enabled state of the framerate manager.
11967
+ *
11968
+ * - **ThreadSafety**: ReadSafe
11969
+ * - **Tags**: Hidden, NotReplicated
11970
+ *
11971
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#EnableFRM)
11972
+ */
11973
+ EnableFRM: boolean;
11974
+ /**
11975
+ * - **ThreadSafety**: ReadSafe
11976
+ *
11977
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#Enable VR Mode)
11978
+ */
11979
+ "Enable VR Mode": boolean;
11980
+ /**
11981
+ * Sets whether materials should be generated per part, or per unique appearance in Roblox's exporter.
11982
+ *
11983
+ * - **ThreadSafety**: ReadSafe
11984
+ *
11985
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#ExportMergeByMaterial)
11986
+ */
11987
+ ExportMergeByMaterial: boolean;
11988
+ /**
11989
+ * Specifies the behavior of the framerate manager.
11990
+ *
11991
+ * - **ThreadSafety**: ReadSafe
11992
+ *
11993
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#FrameRateManager)
11994
+ */
11995
+ FrameRateManager: Enum.FramerateManagerMode;
11996
+ /**
11997
+ * The graphics API that Roblox will use on startup.
11998
+ *
11999
+ * - **ThreadSafety**: ReadSafe
12000
+ *
12001
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#GraphicsMode)
12002
+ */
12003
+ GraphicsMode: Enum.GraphicsMode;
12004
+ /**
12005
+ * The size in bytes of the mesh cache.
12006
+ *
12007
+ * - **ThreadSafety**: ReadSafe
12008
+ *
12009
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#MeshCacheSize)
12010
+ */
12011
+ MeshCacheSize: number;
12012
+ /**
12013
+ * Studio only. Used to visually verify the quality of `MeshParts` at lower level of detail at close range.
12014
+ *
12015
+ * - **ThreadSafety**: ReadSafe
12016
+ *
12017
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#MeshPartDetailLevel)
12018
+ */
12019
+ MeshPartDetailLevel: Enum.MeshPartDetailLevel;
12020
+ /**
12021
+ * Controls the quality level in Roblox Studio.
12022
+ *
12023
+ * - **ThreadSafety**: ReadSafe
12024
+ *
12025
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#QualityLevel)
12026
+ */
12027
+ QualityLevel: Enum.QualityLevel;
12028
+ /**
12029
+ * Whether Roblox Studio will automatically reload changes that are made to files in Roblox's `content` folder.
12030
+ *
12031
+ * - **ThreadSafety**: ReadSafe
12032
+ *
12033
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#ReloadAssets)
12034
+ */
12035
+ ReloadAssets: boolean;
12036
+ /**
12037
+ * Whether a wireframe of polygons will be shown on all `PartOperation` objects.
12038
+ *
12039
+ * - **ThreadSafety**: ReadSafe
12040
+ *
12041
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#RenderCSGTrianglesDebug)
12042
+ */
12043
+ RenderCSGTrianglesDebug: boolean;
12044
+ /**
12045
+ * Whether bounding boxes are rendered around each individual rendered entity in the scene.
12046
+ *
12047
+ * - **ThreadSafety**: ReadSafe
12048
+ *
12049
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#ShowBoundingBoxes)
12050
+ */
12051
+ ShowBoundingBoxes: boolean;
12052
+ /**
12053
+ * - **ThreadSafety**: ReadSafe
12054
+ *
12055
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#ViewMode)
12056
+ */
12057
+ ViewMode: Enum.ViewMode;
12058
+ /**
12059
+ * Returns the maximum quality level.
12060
+ *
12061
+ * - **ThreadSafety**: Unsafe
12062
+ *
12063
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RenderSettings#GetMaxQualityLevel)
12064
+ * @param this
12065
+ */
12066
+ GetMaxQualityLevel(this: RenderSettings): number;
12016
12067
  }
12017
12068
  /**
12018
12069
  * An internal testing utility for the rendering pipeline.
@@ -13028,11 +13079,13 @@ interface Selection extends Instance {
13028
13079
  */
13029
13080
  readonly _nominal_Selection: unique symbol;
13030
13081
  /**
13082
+ * Adds the given `Instances` to the current selection in Roblox Studio.
13083
+ *
13031
13084
  * - **ThreadSafety**: Unsafe
13032
13085
  *
13033
13086
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Selection#Add)
13034
13087
  * @param this The Selection service controls the `Instances` that are selected in Roblox Studio.
13035
- * @param instancesToAdd
13088
+ * @param instancesToAdd An array of `Instances` to add to the current selection.
13036
13089
  */
13037
13090
  Add(this: Selection, instancesToAdd: Array<Instance>): void;
13038
13091
  /**
@@ -13046,11 +13099,13 @@ interface Selection extends Instance {
13046
13099
  */
13047
13100
  Get(this: Selection): Array<Instance>;
13048
13101
  /**
13102
+ * Removes the given `Instances` from the current selection in Roblox Studio.
13103
+ *
13049
13104
  * - **ThreadSafety**: Unsafe
13050
13105
  *
13051
13106
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Selection#Remove)
13052
13107
  * @param this The Selection service controls the `Instances` that are selected in Roblox Studio.
13053
- * @param instancesToRemove
13108
+ * @param instancesToRemove An array of `Instances` to remove from the current selection.
13054
13109
  */
13055
13110
  Remove(this: Selection, instancesToRemove: Array<Instance>): void;
13056
13111
  /**
@@ -13456,11 +13511,11 @@ interface SlimAnimationReplicationService extends Instance {
13456
13511
  readonly _nominal_SlimAnimationReplicationService: unique symbol;
13457
13512
  }
13458
13513
  /**
13459
- * - **Tags**: NotCreatable, Service
13514
+ * - **Tags**: NotCreatable, Service, NotReplicated
13460
13515
  *
13461
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimReplicationService)
13516
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimDebugSettings)
13462
13517
  */
13463
- interface SlimReplicationService extends Instance {
13518
+ interface SlimDebugSettings extends Instance {
13464
13519
  /**
13465
13520
  * **DO NOT USE!**
13466
13521
  *
@@ -13468,12 +13523,27 @@ interface SlimReplicationService extends Instance {
13468
13523
  * @hidden
13469
13524
  * @deprecated
13470
13525
  */
13471
- readonly _nominal_SlimReplicationService: unique symbol;
13526
+ readonly _nominal_SlimDebugSettings: unique symbol;
13472
13527
  }
13473
13528
  /**
13474
- * - **Tags**: NotCreatable, Service, NotReplicated
13529
+ * - **Tags**: NotCreatable, Service
13475
13530
  *
13476
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimService)
13531
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimReplicationService)
13532
+ */
13533
+ interface SlimReplicationService extends Instance {
13534
+ /**
13535
+ * **DO NOT USE!**
13536
+ *
13537
+ * This field exists to force TypeScript to recognize this as a nominal type
13538
+ * @hidden
13539
+ * @deprecated
13540
+ */
13541
+ readonly _nominal_SlimReplicationService: unique symbol;
13542
+ }
13543
+ /**
13544
+ * - **Tags**: NotCreatable, Service, NotReplicated
13545
+ *
13546
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimService)
13477
13547
  */
13478
13548
  interface SlimService extends Instance {
13479
13549
  /**
@@ -13864,268 +13934,1067 @@ interface Sparkles extends Instance {
13864
13934
  */
13865
13935
  interface StackFrame extends Instance {
13866
13936
  /**
13867
- * **DO NOT USE!**
13937
+ * **DO NOT USE!**
13938
+ *
13939
+ * This field exists to force TypeScript to recognize this as a nominal type
13940
+ * @hidden
13941
+ * @deprecated
13942
+ */
13943
+ readonly _nominal_StackFrame: unique symbol;
13944
+ }
13945
+ /**
13946
+ * - **Tags**: NotCreatable, Service, NotReplicated
13947
+ *
13948
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StartPageService)
13949
+ */
13950
+ interface StartPageService extends Instance {
13951
+ /**
13952
+ * **DO NOT USE!**
13953
+ *
13954
+ * This field exists to force TypeScript to recognize this as a nominal type
13955
+ * @hidden
13956
+ * @deprecated
13957
+ */
13958
+ readonly _nominal_StartPageService: unique symbol;
13959
+ }
13960
+ /**
13961
+ * If the game allows gear, `StarterGear` is a container automatically inserted into each `Player` object when the player joins the game. Whenever the player's character spawns, the contents of that player's `StarterGear` are copied into the player's `Backpack`.
13962
+ *
13963
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterGear)
13964
+ */
13965
+ interface StarterGear extends Instance {
13966
+ /**
13967
+ * **DO NOT USE!**
13968
+ *
13969
+ * This field exists to force TypeScript to recognize this as a nominal type
13970
+ * @hidden
13971
+ * @deprecated
13972
+ */
13973
+ readonly _nominal_StarterGear: unique symbol;
13974
+ }
13975
+ /**
13976
+ * A container whose contents are copied into each player's `Backpack` when their player character spawns. It is generally used to hold `Tools`.
13977
+ *
13978
+ * - **Tags**: NotCreatable, Service
13979
+ *
13980
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPack)
13981
+ */
13982
+ interface StarterPack extends Instance {
13983
+ /**
13984
+ * **DO NOT USE!**
13985
+ *
13986
+ * This field exists to force TypeScript to recognize this as a nominal type
13987
+ * @hidden
13988
+ * @deprecated
13989
+ */
13990
+ readonly _nominal_StarterPack: unique symbol;
13991
+ }
13992
+ /**
13993
+ * A service which allows the defaults of properties in the `Player` object to be set.
13994
+ *
13995
+ * - **Tags**: NotCreatable, Service
13996
+ *
13997
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer)
13998
+ */
13999
+ interface StarterPlayer extends Instance {
14000
+ /**
14001
+ * **DO NOT USE!**
14002
+ *
14003
+ * This field exists to force TypeScript to recognize this as a nominal type
14004
+ * @hidden
14005
+ * @deprecated
14006
+ */
14007
+ readonly _nominal_StarterPlayer: unique symbol;
14008
+ }
14009
+ /**
14010
+ * A container for objects to be copied to a Player's PlayerScripts when they join a game.
14011
+ *
14012
+ * - **Tags**: NotCreatable
14013
+ *
14014
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayerScripts)
14015
+ */
14016
+ interface StarterPlayerScripts extends Instance {
14017
+ /**
14018
+ * **DO NOT USE!**
14019
+ *
14020
+ * This field exists to force TypeScript to recognize this as a nominal type
14021
+ * @hidden
14022
+ * @deprecated
14023
+ */
14024
+ readonly _nominal_StarterPlayerScripts: unique symbol;
14025
+ }
14026
+ /**
14027
+ * Stores instances to be parented to a player's character when it spawns.
14028
+ *
14029
+ * - **Tags**: NotCreatable
14030
+ *
14031
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterCharacterScripts)
14032
+ */
14033
+ interface StarterCharacterScripts extends StarterPlayerScripts {
14034
+ /**
14035
+ * **DO NOT USE!**
14036
+ *
14037
+ * This field exists to force TypeScript to recognize this as a nominal type
14038
+ * @hidden
14039
+ * @deprecated
14040
+ */
14041
+ readonly _nominal_StarterCharacterScripts: unique symbol;
14042
+ }
14043
+ /**
14044
+ * - **Tags**: NotCreatable, Service, NotReplicated
14045
+ *
14046
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StartupMessageService)
14047
+ */
14048
+ interface StartupMessageService extends Instance {
14049
+ /**
14050
+ * **DO NOT USE!**
14051
+ *
14052
+ * This field exists to force TypeScript to recognize this as a nominal type
14053
+ * @hidden
14054
+ * @deprecated
14055
+ */
14056
+ readonly _nominal_StartupMessageService: unique symbol;
14057
+ }
14058
+ /**
14059
+ * Performance metrics for a game.
14060
+ *
14061
+ * - **Tags**: NotCreatable, Service
14062
+ *
14063
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats)
14064
+ */
14065
+ interface Stats extends Instance {
14066
+ /**
14067
+ * **DO NOT USE!**
14068
+ *
14069
+ * This field exists to force TypeScript to recognize this as a nominal type
14070
+ * @hidden
14071
+ * @deprecated
14072
+ */
14073
+ readonly _nominal_Stats: unique symbol;
14074
+ }
14075
+ /**
14076
+ * A single performance metric.
14077
+ *
14078
+ * - **Tags**: NotCreatable
14079
+ *
14080
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StatsItem)
14081
+ */
14082
+ interface StatsItem extends Instance {
14083
+ /**
14084
+ * **DO NOT USE!**
14085
+ *
14086
+ * This field exists to force TypeScript to recognize this as a nominal type
14087
+ * @hidden
14088
+ * @deprecated
14089
+ */
14090
+ readonly _nominal_StatsItem: unique symbol;
14091
+ /**
14092
+ * - **ThreadSafety**: ReadSafe
14093
+ * - **Tags**: Hidden, NotReplicated
14094
+ *
14095
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StatsItem#DisplayName)
14096
+ */
14097
+ readonly DisplayName: string;
14098
+ /**
14099
+ * Returns the StatsItem's value.
14100
+ *
14101
+ * - **ThreadSafety**: Unsafe
14102
+ *
14103
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StatsItem#GetValue)
14104
+ * @param this A single performance metric.
14105
+ */
14106
+ GetValue(this: StatsItem): number;
14107
+ /**
14108
+ * Returns the StatsItem's value as a formatted string.
14109
+ *
14110
+ * - **ThreadSafety**: Unsafe
14111
+ *
14112
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StatsItem#GetValueString)
14113
+ * @param this A single performance metric.
14114
+ */
14115
+ GetValueString(this: StatsItem): string;
14116
+ }
14117
+ /**
14118
+ * Measures the runtime average of a **double** value.
14119
+ *
14120
+ * - **Tags**: NotCreatable
14121
+ *
14122
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunningAverageItemDouble)
14123
+ */
14124
+ interface RunningAverageItemDouble extends StatsItem {
14125
+ /**
14126
+ * **DO NOT USE!**
14127
+ *
14128
+ * This field exists to force TypeScript to recognize this as a nominal type
14129
+ * @hidden
14130
+ * @deprecated
14131
+ */
14132
+ readonly _nominal_RunningAverageItemDouble: unique symbol;
14133
+ }
14134
+ /**
14135
+ * Measures the runtime average of an **integer** value.
14136
+ *
14137
+ * - **Tags**: NotCreatable
14138
+ *
14139
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunningAverageItemInt)
14140
+ */
14141
+ interface RunningAverageItemInt extends StatsItem {
14142
+ /**
14143
+ * **DO NOT USE!**
14144
+ *
14145
+ * This field exists to force TypeScript to recognize this as a nominal type
14146
+ * @hidden
14147
+ * @deprecated
14148
+ */
14149
+ readonly _nominal_RunningAverageItemInt: unique symbol;
14150
+ }
14151
+ /**
14152
+ * Measures the runtime average of a time interval value.
14153
+ *
14154
+ * - **Tags**: NotCreatable
14155
+ *
14156
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunningAverageTimeIntervalItem)
14157
+ */
14158
+ interface RunningAverageTimeIntervalItem extends StatsItem {
14159
+ /**
14160
+ * **DO NOT USE!**
14161
+ *
14162
+ * This field exists to force TypeScript to recognize this as a nominal type
14163
+ * @hidden
14164
+ * @deprecated
14165
+ */
14166
+ readonly _nominal_RunningAverageTimeIntervalItem: unique symbol;
14167
+ }
14168
+ /**
14169
+ * Measures a total-count-over-time interval.
14170
+ *
14171
+ * - **Tags**: NotCreatable
14172
+ *
14173
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TotalCountTimeIntervalItem)
14174
+ */
14175
+ interface TotalCountTimeIntervalItem extends StatsItem {
14176
+ /**
14177
+ * **DO NOT USE!**
14178
+ *
14179
+ * This field exists to force TypeScript to recognize this as a nominal type
14180
+ * @hidden
14181
+ * @deprecated
14182
+ */
14183
+ readonly _nominal_TotalCountTimeIntervalItem: unique symbol;
14184
+ }
14185
+ /**
14186
+ * - **Tags**: NotCreatable, Service, NotReplicated
14187
+ *
14188
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio)
14189
+ */
14190
+ interface Studio extends Instance {
14191
+ /**
14192
+ * **DO NOT USE!**
14193
+ *
14194
+ * This field exists to force TypeScript to recognize this as a nominal type
14195
+ * @hidden
14196
+ * @deprecated
14197
+ */
14198
+ readonly _nominal_Studio: unique symbol;
14199
+ /**
14200
+ * - **ThreadSafety**: ReadSafe
14201
+ *
14202
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#ActionOnStopSync)
14203
+ */
14204
+ ActionOnStopSync: Enum.ActionOnStopSync;
14205
+ /**
14206
+ * - **ThreadSafety**: ReadSafe
14207
+ *
14208
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Active Color)
14209
+ */
14210
+ "Active Color": Color3;
14211
+ /**
14212
+ * - **ThreadSafety**: ReadSafe
14213
+ *
14214
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Active Hover Over Color)
14215
+ */
14216
+ "Active Hover Over Color": Color3;
14217
+ /**
14218
+ * If set to true, Roblox Studio will attempt to transfer script changes that were made during a Play Solo session to the opened place.
14219
+ *
14220
+ * - **ThreadSafety**: ReadSafe
14221
+ *
14222
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Always Save Script Changes)
14223
+ */
14224
+ "Always Save Script Changes": boolean;
14225
+ /**
14226
+ * If set to true, the hover selection box that is shown when mousing over selectable objects in the `Workspace` will flash between `Hover Over Color` and `Select Color` based on the `Hover Animate Speed`.
14227
+ *
14228
+ * - **ThreadSafety**: ReadSafe
14229
+ *
14230
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Animate Hover Over)
14231
+ */
14232
+ "Animate Hover Over": boolean;
14233
+ /**
14234
+ * - **ThreadSafety**: ReadSafe
14235
+ *
14236
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Animation Skeleton Scale)
14237
+ */
14238
+ "Animation Skeleton Scale": number;
14239
+ /**
14240
+ * - **ThreadSafety**: ReadSafe
14241
+ *
14242
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Animation Skeleton Transparency)
14243
+ */
14244
+ "Animation Skeleton Transparency": number;
14245
+ /**
14246
+ * - **ThreadSafety**: ReadSafe
14247
+ *
14248
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Clean Empty Line)
14249
+ */
14250
+ "Auto Clean Empty Line": boolean;
14251
+ /**
14252
+ * - **ThreadSafety**: ReadSafe
14253
+ *
14254
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Closing Brackets)
14255
+ */
14256
+ "Auto Closing Brackets": boolean;
14257
+ /**
14258
+ * - **ThreadSafety**: ReadSafe
14259
+ *
14260
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Closing Quotes)
14261
+ */
14262
+ "Auto Closing Quotes": boolean;
14263
+ /**
14264
+ * - **ThreadSafety**: ReadSafe
14265
+ *
14266
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Delete Closing Brackets and Quotes)
14267
+ */
14268
+ "Auto Delete Closing Brackets and Quotes": boolean;
14269
+ /**
14270
+ * - **ThreadSafety**: ReadSafe
14271
+ *
14272
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Indent Rule)
14273
+ */
14274
+ "Auto Indent Rule": Enum.AutoIndentRule;
14275
+ /**
14276
+ * - **ThreadSafety**: ReadSafe
14277
+ *
14278
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto-Recovery Enabled)
14279
+ */
14280
+ "Auto-Recovery Enabled": boolean;
14281
+ /**
14282
+ * - **ThreadSafety**: ReadSafe
14283
+ *
14284
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto-Recovery Interval (Minutes))
14285
+ */
14286
+ "Auto-Recovery Interval (Minutes)": number;
14287
+ /**
14288
+ * Specifies the background color of Roblox Studio's script editor.
14289
+ *
14290
+ * - **ThreadSafety**: ReadSafe
14291
+ * - **Tags**: NotReplicated
14292
+ *
14293
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Background Color)
14294
+ */
14295
+ "Background Color": Color3;
14296
+ /**
14297
+ * Sets the scrolling mode of the `Advanced Objects` tab in Roblox Studio.
14298
+ *
14299
+ * - **ThreadSafety**: ReadSafe
14300
+ *
14301
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Basic Objects Display Mode)
14302
+ */
14303
+ "Basic Objects Display Mode": Enum.ListDisplayMode;
14304
+ /**
14305
+ * - **ThreadSafety**: ReadSafe
14306
+ * - **Tags**: NotReplicated
14307
+ *
14308
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Bool Color)
14309
+ */
14310
+ "Bool Color": Color3;
14311
+ /**
14312
+ * - **ThreadSafety**: ReadSafe
14313
+ * - **Tags**: NotReplicated
14314
+ *
14315
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Bracket Color)
14316
+ */
14317
+ "Bracket Color": Color3;
14318
+ /**
14319
+ * Sets the color of built-in functions and keywords in the script editor.
14320
+ *
14321
+ * - **ThreadSafety**: ReadSafe
14322
+ * - **Tags**: NotReplicated
14323
+ *
14324
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Built-in Function Color)
14325
+ */
14326
+ "Built-in Function Color": Color3;
14327
+ /**
14328
+ * Sets how many studs the camera will move forward or backwards when using the mouse wheel.
14329
+ *
14330
+ * - **ThreadSafety**: ReadSafe
14331
+ *
14332
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Camera Mouse Wheel Speed)
14333
+ */
14334
+ "Camera Mouse Wheel Speed": number;
14335
+ /**
14336
+ * Sets the speed in studs/sec that the camera moves while holding down Shift with the movement keys.
14337
+ *
14338
+ * - **ThreadSafety**: ReadSafe
14339
+ *
14340
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Camera Shift Speed)
14341
+ */
14342
+ "Camera Shift Speed": number;
14343
+ /**
14344
+ * Sets the speed in studs/sec that the camera moves when movement keys are pressed.
14345
+ *
14346
+ * - **ThreadSafety**: ReadSafe
14347
+ *
14348
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Camera Speed)
14349
+ */
14350
+ "Camera Speed": number;
14351
+ /**
14352
+ * - **ThreadSafety**: ReadSafe
14353
+ *
14354
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Camera Zoom to Mouse Position)
14355
+ */
14356
+ "Camera Zoom to Mouse Position": boolean;
14357
+ /**
14358
+ * If set to true, the output will be automatically cleared when game sessions are switched.
14359
+ *
14360
+ * - **ThreadSafety**: ReadSafe
14361
+ *
14362
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Clear Output On Start)
14363
+ */
14364
+ "Clear Output On Start": boolean;
14365
+ /**
14366
+ * - **ThreadSafety**: ReadSafe
14367
+ *
14368
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#CommandBarLocalState)
14369
+ */
14370
+ CommandBarLocalState: boolean;
14371
+ /**
14372
+ * Specifies the color of comments in Roblox Studio's script editor.
14373
+ *
14374
+ * - **ThreadSafety**: ReadSafe
14375
+ * - **Tags**: NotReplicated
14376
+ *
14377
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Comment Color)
14378
+ */
14379
+ "Comment Color": Color3;
14380
+ /**
14381
+ * - **ThreadSafety**: ReadSafe
14382
+ * - **Tags**: NotReplicated
14383
+ *
14384
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Current Line Highlight Color)
14385
+ */
14386
+ "Current Line Highlight Color": Color3;
14387
+ /**
14388
+ * - **ThreadSafety**: ReadSafe
14389
+ * - **Tags**: NotReplicated
14390
+ *
14391
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Debugger Current Line Color)
14392
+ */
14393
+ "Debugger Current Line Color": Color3;
14394
+ /**
14395
+ * - **ThreadSafety**: ReadSafe
14396
+ * - **Tags**: NotReplicated
14397
+ *
14398
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Debugger Error Line Color)
14399
+ */
14400
+ "Debugger Error Line Color": Color3;
14401
+ /**
14402
+ * If set to true, deprecated objects will be shown in the Advanced Objects window, as well as the Object Browser.
14403
+ *
14404
+ * - **ThreadSafety**: ReadSafe
14405
+ *
14406
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#DeprecatedObjectsShown)
14407
+ */
14408
+ DeprecatedObjectsShown: boolean;
14409
+ /**
14410
+ * When set to true, the script editor and command bar will show an autocomplete menu while writing.
14411
+ *
14412
+ * - **ThreadSafety**: ReadSafe
14413
+ *
14414
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Autocomplete)
14415
+ */
14416
+ "Enable Autocomplete": boolean;
14417
+ /**
14418
+ * - **ThreadSafety**: ReadSafe
14419
+ *
14420
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable CoreScript Debugger)
14421
+ */
14422
+ "Enable CoreScript Debugger": boolean;
14423
+ /**
14424
+ * - **ThreadSafety**: ReadSafe
14425
+ *
14426
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Http Sandboxing)
14427
+ */
14428
+ "Enable Http Sandboxing": boolean;
14429
+ /**
14430
+ * - **ThreadSafety**: ReadSafe
14431
+ *
14432
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Internal Beta Features)
14433
+ */
14434
+ "Enable Internal Beta Features": boolean;
14435
+ /**
14436
+ * - **ThreadSafety**: ReadSafe
14437
+ *
14438
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Internal Features)
14439
+ */
14440
+ "Enable Internal Features": boolean;
14441
+ /**
14442
+ * - **ThreadSafety**: ReadSafe
14443
+ *
14444
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Temporary Tabs)
14445
+ */
14446
+ "Enable Temporary Tabs": boolean;
14447
+ /**
14448
+ * - **ThreadSafety**: ReadSafe
14449
+ *
14450
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Temporary Tabs In Explorer)
14451
+ */
14452
+ "Enable Temporary Tabs In Explorer": boolean;
14453
+ /**
14454
+ * Specifies the color of the wavy underline shown when malformed code is detected in the script editor.
14455
+ *
14456
+ * - **ThreadSafety**: ReadSafe
14457
+ * - **Tags**: NotReplicated
14458
+ *
14459
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Error Color)
14460
+ */
14461
+ "Error Color": Color3;
14462
+ /**
14463
+ * Sets the highlight color of matches in the script editor's Find Selection operation (Ctrl+F).
14464
+ *
14465
+ * - **ThreadSafety**: ReadSafe
14466
+ * - **Tags**: NotReplicated
14467
+ *
14468
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Find Selection Background Color)
14469
+ */
14470
+ "Find Selection Background Color": Color3;
14471
+ /**
14472
+ * Specifies the font used in the script editor.
14473
+ *
14474
+ * - **ThreadSafety**: ReadSafe
14475
+ *
14476
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Font)
14477
+ */
14478
+ Font: QFont;
14479
+ /**
14480
+ * - **ThreadSafety**: ReadSafe
14481
+ *
14482
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Format On Paste)
14483
+ */
14484
+ "Format On Paste": boolean;
14485
+ /**
14486
+ * - **ThreadSafety**: ReadSafe
14487
+ *
14488
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Format On Type)
14489
+ */
14490
+ "Format On Type": boolean;
14491
+ /**
14492
+ * - **ThreadSafety**: ReadSafe
14493
+ * - **Tags**: NotReplicated
14494
+ *
14495
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Function Name Color)
14496
+ */
14497
+ "Function Name Color": Color3;
14498
+ /**
14499
+ * - **ThreadSafety**: ReadSafe
14500
+ *
14501
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Highlight Current Line)
14502
+ */
14503
+ "Highlight Current Line": boolean;
14504
+ /**
14505
+ * - **ThreadSafety**: ReadSafe
14506
+ *
14507
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Highlight Occurances)
14508
+ */
14509
+ "Highlight Occurances": boolean;
14510
+ /**
14511
+ * - **ThreadSafety**: ReadSafe
14512
+ * - **Tags**: NotReplicated
14513
+ *
14514
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#HintColor)
14515
+ */
14516
+ HintColor: Color3;
14517
+ /**
14518
+ * Specifies how frequently the hover animation flashes when the mouse is hovering over a selectable object in the `Workspace`.
14519
+ *
14520
+ * - **ThreadSafety**: ReadSafe
14521
+ *
14522
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Hover Animate Speed)
14523
+ */
14524
+ "Hover Animate Speed": Enum.HoverAnimateSpeed;
14525
+ /**
14526
+ * Specifies the color that the hover selection box uses.
14527
+ *
14528
+ * - **ThreadSafety**: ReadSafe
14529
+ *
14530
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Hover Over Color)
14531
+ */
14532
+ "Hover Over Color": Color3;
14533
+ /**
14534
+ * - **ThreadSafety**: ReadSafe
14535
+ *
14536
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Indent Using Spaces)
14537
+ */
14538
+ "Indent Using Spaces": boolean;
14539
+ /**
14540
+ * - **ThreadSafety**: ReadSafe
14541
+ * - **Tags**: NotReplicated
14542
+ *
14543
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#InformationColor)
14544
+ */
14545
+ InformationColor: Color3;
14546
+ /**
14547
+ * Sets the text color of built-in Luau keywords.
14548
+ *
14549
+ * - **ThreadSafety**: ReadSafe
14550
+ * - **Tags**: NotReplicated
14551
+ *
14552
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Keyword Color)
14553
+ */
14554
+ "Keyword Color": Color3;
14555
+ /**
14556
+ * Sets the thickness of the `Model.PrimaryPart` selection adornee. This value is constrained between 0 and 0.05.
14557
+ *
14558
+ * - **ThreadSafety**: ReadSafe
14559
+ *
14560
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Line Thickness)
14561
+ */
14562
+ "Line Thickness": number;
14563
+ /**
14564
+ * Specifies whether or not the Lua Debugger feature is enabled.
14565
+ *
14566
+ * - **ThreadSafety**: ReadSafe
14567
+ *
14568
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#LuaDebuggerEnabled)
14569
+ */
14570
+ LuaDebuggerEnabled: boolean;
14571
+ /**
14572
+ * - **ThreadSafety**: ReadSafe
14573
+ * - **Tags**: Hidden, NotReplicated
14574
+ *
14575
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#LuaDebuggerEnabledAtStartup)
14576
+ */
14577
+ readonly LuaDebuggerEnabledAtStartup: boolean;
14578
+ /**
14579
+ * - **ThreadSafety**: ReadSafe
14580
+ * - **Tags**: NotReplicated
14581
+ *
14582
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Luau Keyword Color)
14583
+ */
14584
+ "Luau Keyword Color": Color3;
14585
+ /**
14586
+ * Sets the highlight color of double-clicked variables in the script editor.
14587
+ *
14588
+ * - **ThreadSafety**: ReadSafe
14589
+ * - **Tags**: NotReplicated
14590
+ *
14591
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Matching Word Background Color)
14592
+ */
14593
+ "Matching Word Background Color": Color3;
14594
+ /**
14595
+ * The maximum number of lines that can be displayed in the output.
14596
+ *
14597
+ * - **ThreadSafety**: ReadSafe
14598
+ *
14599
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Maximum Output Lines)
14600
+ */
14601
+ "Maximum Output Lines": number;
14602
+ /**
14603
+ * - **ThreadSafety**: ReadSafe
14604
+ * - **Tags**: NotReplicated
14605
+ *
14606
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Menu Item Background Color)
14607
+ */
14608
+ "Menu Item Background Color": Color3;
14609
+ /**
14610
+ * - **ThreadSafety**: ReadSafe
14611
+ * - **Tags**: NotReplicated
14612
+ *
14613
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Method Color)
14614
+ */
14615
+ "Method Color": Color3;
14616
+ /**
14617
+ * Specifies the color of numbers in Roblox Studio's script editor.
14618
+ *
14619
+ * - **ThreadSafety**: ReadSafe
14620
+ * - **Tags**: NotReplicated
14621
+ *
14622
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Number Color)
14623
+ */
14624
+ "Number Color": Color3;
14625
+ /**
14626
+ * If set to true, audio being played will only be heard if the game window is being focused on.
14627
+ *
14628
+ * - **ThreadSafety**: ReadSafe
14629
+ *
14630
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Only Play Audio from Window in Focus)
14631
+ */
14632
+ "Only Play Audio from Window in Focus": boolean;
14633
+ /**
14634
+ * Sets the text color of operator characters in the script editor.
14635
+ *
14636
+ * - **ThreadSafety**: ReadSafe
14637
+ * - **Tags**: NotReplicated
14638
+ *
14639
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Operator Color)
14640
+ */
14641
+ "Operator Color": Color3;
14642
+ /**
14643
+ * Specifies the font used by the output.
14644
+ *
14645
+ * - **ThreadSafety**: ReadSafe
14646
+ *
14647
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Output Font)
14648
+ */
14649
+ "Output Font": QFont;
14650
+ /**
14651
+ * Sets the layout mode of the output.
14652
+ *
14653
+ * - **ThreadSafety**: ReadSafe
14654
+ *
14655
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Output Layout Mode)
14656
+ */
14657
+ "Output Layout Mode": Enum.OutputLayoutMode;
14658
+ /**
14659
+ * Sets the highest permission level that APIs have to have in order to be shown in the Object Browser. See `PermissionLevelShown` for more info.
14660
+ *
14661
+ * - **ThreadSafety**: ReadSafe
14662
+ *
14663
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#PermissionLevelShown)
14664
+ */
14665
+ PermissionLevelShown: Enum.PermissionLevelShown;
14666
+ /**
14667
+ * - **ThreadSafety**: ReadSafe
14668
+ *
14669
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#PluginDebuggingEnabled)
14670
+ */
14671
+ PluginDebuggingEnabled: boolean;
14672
+ /**
14673
+ * The directory where local plugins are stored.
14674
+ *
14675
+ * - **ThreadSafety**: ReadSafe
14676
+ *
14677
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#PluginsDir)
14678
+ */
14679
+ PluginsDir: QDir;
14680
+ /**
14681
+ * - **ThreadSafety**: ReadSafe
14682
+ *
14683
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#PreferredTextSize)
14684
+ */
14685
+ PreferredTextSize: Enum.PreferredTextSize;
14686
+ /**
14687
+ * - **ThreadSafety**: ReadSafe
14688
+ * - **Tags**: NotReplicated
14689
+ *
14690
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Primary Text Color)
14691
+ */
14692
+ "Primary Text Color": Color3;
14693
+ /**
14694
+ * - **ThreadSafety**: ReadSafe
14695
+ * - **Tags**: NotReplicated
14696
+ *
14697
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Property Color)
14698
+ */
14699
+ "Property Color": Color3;
14700
+ /**
14701
+ * When set to true, Roblox Studio shortcuts will take priority over inputs being captured in the game window.
14702
+ *
14703
+ * - **ThreadSafety**: ReadSafe
14704
+ *
14705
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Respect Studio shortcuts when game has focus)
14706
+ */
14707
+ "Respect Studio shortcuts when game has focus": boolean;
14708
+ /**
14709
+ * - **ThreadSafety**: ReadSafe
14710
+ * - **Tags**: NotReplicated
14711
+ *
14712
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Ruler Color)
14713
+ */
14714
+ "Ruler Color": Color3;
14715
+ /**
14716
+ * - **ThreadSafety**: ReadSafe
14717
+ *
14718
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Rulers)
14719
+ */
14720
+ Rulers: string;
14721
+ /**
14722
+ * - **ThreadSafety**: ReadSafe
14723
+ *
14724
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#RuntimeUndoBehavior)
14725
+ */
14726
+ RuntimeUndoBehavior: Enum.RuntimeUndoBehavior;
14727
+ /**
14728
+ * The time (in seconds) a script can wait to be resumed before timing out.
14729
+ *
14730
+ * - **ThreadSafety**: ReadSafe
14731
+ *
14732
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#ScriptTimeoutLength)
14733
+ */
14734
+ ScriptTimeoutLength: number;
14735
+ /**
14736
+ * - **ThreadSafety**: ReadSafe
14737
+ *
14738
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Script Editor Color Preset)
14739
+ */
14740
+ "Script Editor Color Preset": Enum.StudioScriptEditorColorPresets;
14741
+ /**
14742
+ * - **ThreadSafety**: ReadSafe
14743
+ * - **Tags**: NotReplicated
14744
+ *
14745
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Script Editor Scrollbar Background Color)
14746
+ */
14747
+ "Script Editor Scrollbar Background Color": Color3;
14748
+ /**
14749
+ * - **ThreadSafety**: ReadSafe
14750
+ * - **Tags**: NotReplicated
14751
+ *
14752
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Script Editor Scrollbar Handle Color)
14753
+ */
14754
+ "Script Editor Scrollbar Handle Color": Color3;
14755
+ /**
14756
+ * - **ThreadSafety**: ReadSafe
14757
+ *
14758
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Scroll Past Last Line)
14759
+ */
14760
+ "Scroll Past Last Line": boolean;
14761
+ /**
14762
+ * - **ThreadSafety**: ReadSafe
14763
+ * - **Tags**: NotReplicated
14764
+ *
14765
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Secondary Text Color)
14766
+ */
14767
+ "Secondary Text Color": Color3;
14768
+ /**
14769
+ * The color of the selection box used with object selections in the `Workspace`.
14770
+ *
14771
+ * - **ThreadSafety**: ReadSafe
14772
+ *
14773
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Select Color)
14774
+ */
14775
+ "Select Color": Color3;
14776
+ /**
14777
+ * - **ThreadSafety**: ReadSafe
14778
+ *
14779
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Select/Hover Color)
14780
+ */
14781
+ "Select/Hover Color": Color3;
14782
+ /**
14783
+ * - **ThreadSafety**: ReadSafe
14784
+ * - **Tags**: NotReplicated
14785
+ *
14786
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Selected Menu Item Background Color)
14787
+ */
14788
+ "Selected Menu Item Background Color": Color3;
14789
+ /**
14790
+ * - **ThreadSafety**: ReadSafe
14791
+ * - **Tags**: NotReplicated
14792
+ *
14793
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Selected Text Color)
14794
+ */
14795
+ "Selected Text Color": Color3;
14796
+ /**
14797
+ * Sets the background color of selected text in the script editor.
14798
+ *
14799
+ * - **ThreadSafety**: ReadSafe
14800
+ * - **Tags**: NotReplicated
14801
+ *
14802
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Selection Background Color)
14803
+ */
14804
+ "Selection Background Color": Color3;
14805
+ /**
14806
+ * Sets the text color of selected text in the script editor.
14807
+ *
14808
+ * - **ThreadSafety**: ReadSafe
14809
+ * - **Tags**: NotReplicated
14810
+ *
14811
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Selection Color)
14812
+ */
14813
+ "Selection Color": Color3;
14814
+ /**
14815
+ * - **ThreadSafety**: ReadSafe
14816
+ *
14817
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Set Pivot of Imported Parts)
14818
+ */
14819
+ "Set Pivot of Imported Parts": boolean;
14820
+ /**
14821
+ * - **ThreadSafety**: ReadSafe
14822
+ *
14823
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Animation Skeleton)
14824
+ */
14825
+ "Show Animation Skeleton": boolean;
14826
+ /**
14827
+ * - **ThreadSafety**: ReadSafe
14828
+ *
14829
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Animation Skeleton Attachments)
14830
+ */
14831
+ "Show Animation Skeleton Attachments": boolean;
14832
+ /**
14833
+ * - **ThreadSafety**: ReadSafe
14834
+ *
14835
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Animation Skeleton Axes)
14836
+ */
14837
+ "Show Animation Skeleton Axes": boolean;
14838
+ /**
14839
+ * - **ThreadSafety**: ReadSafe
14840
+ *
14841
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Animation Skeleton Rotations)
14842
+ */
14843
+ "Show Animation Skeleton Rotations": boolean;
14844
+ /**
14845
+ * - **ThreadSafety**: ReadSafe
14846
+ *
14847
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Animation Skeleton Text)
14848
+ */
14849
+ "Show Animation Skeleton Text": boolean;
14850
+ /**
14851
+ * If set to true, the `CoreGui` will be visible in the Explorer while the game is running.
14852
+ *
14853
+ * - **ThreadSafety**: ReadSafe
14854
+ *
14855
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Core GUI in Explorer while Playing)
14856
+ */
14857
+ "Show Core GUI in Explorer while Playing": boolean;
14858
+ /**
14859
+ * If set to true, basic diagnostic information is shown in the bottom right.
13868
14860
  *
13869
- * This field exists to force TypeScript to recognize this as a nominal type
13870
- * @hidden
13871
- * @deprecated
14861
+ * - **ThreadSafety**: ReadSafe
14862
+ *
14863
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Diagnostics Bar)
13872
14864
  */
13873
- readonly _nominal_StackFrame: unique symbol;
13874
- }
13875
- /**
13876
- * - **Tags**: NotCreatable, Service, NotReplicated
13877
- *
13878
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StartPageService)
13879
- */
13880
- interface StartPageService extends Instance {
14865
+ "Show Diagnostics Bar": boolean;
13881
14866
  /**
13882
- * **DO NOT USE!**
14867
+ * - **ThreadSafety**: ReadSafe
13883
14868
  *
13884
- * This field exists to force TypeScript to recognize this as a nominal type
13885
- * @hidden
13886
- * @deprecated
14869
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show FileSyncService)
13887
14870
  */
13888
- readonly _nominal_StartPageService: unique symbol;
13889
- }
13890
- /**
13891
- * If the game allows gear, `StarterGear` is a container automatically inserted into each `Player` object when the player joins the game. Whenever the player's character spawns, the contents of that player's `StarterGear` are copied into the player's `Backpack`.
13892
- *
13893
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterGear)
13894
- */
13895
- interface StarterGear extends Instance {
14871
+ "Show FileSyncService": boolean;
13896
14872
  /**
13897
- * **DO NOT USE!**
14873
+ * - **ThreadSafety**: ReadSafe
13898
14874
  *
13899
- * This field exists to force TypeScript to recognize this as a nominal type
13900
- * @hidden
13901
- * @deprecated
14875
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Hidden Objects in Explorer)
13902
14876
  */
13903
- readonly _nominal_StarterGear: unique symbol;
13904
- }
13905
- /**
13906
- * A container whose contents are copied into each player's `Backpack` when their player character spawns. It is generally used to hold `Tools`.
13907
- *
13908
- * - **Tags**: NotCreatable, Service
13909
- *
13910
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPack)
13911
- */
13912
- interface StarterPack extends Instance {
14877
+ "Show Hidden Objects in Explorer": boolean;
13913
14878
  /**
13914
- * **DO NOT USE!**
14879
+ * If set to true, hovering over an object in the `Workspace` will show a selection box.
13915
14880
  *
13916
- * This field exists to force TypeScript to recognize this as a nominal type
13917
- * @hidden
13918
- * @deprecated
14881
+ * - **ThreadSafety**: ReadSafe
14882
+ *
14883
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Hover Over)
13919
14884
  */
13920
- readonly _nominal_StarterPack: unique symbol;
13921
- }
13922
- /**
13923
- * A service which allows the defaults of properties in the `Player` object to be set.
13924
- *
13925
- * - **Tags**: NotCreatable, Service
13926
- *
13927
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer)
13928
- */
13929
- interface StarterPlayer extends Instance {
14885
+ "Show Hover Over": boolean;
13930
14886
  /**
13931
- * **DO NOT USE!**
14887
+ * When set to true, the navigation mesh used by the `PathfindingService` will be visualized.
13932
14888
  *
13933
- * This field exists to force TypeScript to recognize this as a nominal type
13934
- * @hidden
13935
- * @deprecated
14889
+ * - **ThreadSafety**: ReadSafe
14890
+ *
14891
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Navigation Mesh)
13936
14892
  */
13937
- readonly _nominal_StarterPlayer: unique symbol;
13938
- }
13939
- /**
13940
- * A container for objects to be copied to a Player's PlayerScripts when they join a game.
13941
- *
13942
- * - **Tags**: NotCreatable
13943
- *
13944
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayerScripts)
13945
- */
13946
- interface StarterPlayerScripts extends Instance {
14893
+ "Show Navigation Mesh": boolean;
13947
14894
  /**
13948
- * **DO NOT USE!**
14895
+ * When set to true, the `PluginGuiService` will be shown in Roblox Studio's explorer.
13949
14896
  *
13950
- * This field exists to force TypeScript to recognize this as a nominal type
13951
- * @hidden
13952
- * @deprecated
14897
+ * - **ThreadSafety**: ReadSafe
14898
+ *
14899
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Plugin GUI Service in Explorer)
13953
14900
  */
13954
- readonly _nominal_StarterPlayerScripts: unique symbol;
13955
- }
13956
- /**
13957
- * Stores instances to be parented to a player's character when it spawns.
13958
- *
13959
- * - **Tags**: NotCreatable
13960
- *
13961
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterCharacterScripts)
13962
- */
13963
- interface StarterCharacterScripts extends StarterPlayerScripts {
14901
+ "Show Plugin GUI Service in Explorer": boolean;
13964
14902
  /**
13965
- * **DO NOT USE!**
14903
+ * - **ThreadSafety**: ReadSafe
13966
14904
  *
13967
- * This field exists to force TypeScript to recognize this as a nominal type
13968
- * @hidden
13969
- * @deprecated
14905
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Whitespace)
13970
14906
  */
13971
- readonly _nominal_StarterCharacterScripts: unique symbol;
13972
- }
13973
- /**
13974
- * - **Tags**: NotCreatable, Service, NotReplicated
13975
- *
13976
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StartupMessageService)
13977
- */
13978
- interface StartupMessageService extends Instance {
14907
+ "Show Whitespace": boolean;
13979
14908
  /**
13980
- * **DO NOT USE!**
14909
+ * - **ThreadSafety**: ReadSafe
13981
14910
  *
13982
- * This field exists to force TypeScript to recognize this as a nominal type
13983
- * @hidden
13984
- * @deprecated
14911
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show plus button on hover in Explorer)
13985
14912
  */
13986
- readonly _nominal_StartupMessageService: unique symbol;
13987
- }
13988
- /**
13989
- * Performance metrics for a game.
13990
- *
13991
- * - **Tags**: NotCreatable, Service
13992
- *
13993
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats)
13994
- */
13995
- interface Stats extends Instance {
14913
+ "Show plus button on hover in Explorer": boolean;
13996
14914
  /**
13997
- * **DO NOT USE!**
14915
+ * - **ThreadSafety**: ReadSafe
13998
14916
  *
13999
- * This field exists to force TypeScript to recognize this as a nominal type
14000
- * @hidden
14001
- * @deprecated
14917
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Skip Closing Brackets and Quotes)
14002
14918
  */
14003
- readonly _nominal_Stats: unique symbol;
14004
- }
14005
- /**
14006
- * A single performance metric.
14007
- *
14008
- * - **Tags**: NotCreatable
14009
- *
14010
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StatsItem)
14011
- */
14012
- interface StatsItem extends Instance {
14919
+ "Skip Closing Brackets and Quotes": boolean;
14013
14920
  /**
14014
- * **DO NOT USE!**
14921
+ * Specifies the color of strings in the script editor.
14015
14922
  *
14016
- * This field exists to force TypeScript to recognize this as a nominal type
14017
- * @hidden
14018
- * @deprecated
14923
+ * - **ThreadSafety**: ReadSafe
14924
+ * - **Tags**: NotReplicated
14925
+ *
14926
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#String Color)
14019
14927
  */
14020
- readonly _nominal_StatsItem: unique symbol;
14928
+ "String Color": Color3;
14021
14929
  /**
14930
+ * Specifies how many spaces are used to represent a tab in the script editor.
14931
+ *
14022
14932
  * - **ThreadSafety**: ReadSafe
14023
- * - **Tags**: Hidden, NotReplicated
14024
14933
  *
14025
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StatsItem#DisplayName)
14934
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Tab Width)
14026
14935
  */
14027
- readonly DisplayName: string;
14936
+ "Tab Width": number;
14028
14937
  /**
14029
- * Returns the StatsItem's value.
14938
+ * Specifies the color of normal text in the script editor.
14030
14939
  *
14031
- * - **ThreadSafety**: Unsafe
14940
+ * - **ThreadSafety**: ReadSafe
14941
+ * - **Tags**: NotReplicated
14032
14942
  *
14033
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StatsItem#GetValue)
14034
- * @param this A single performance metric.
14943
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Text Color)
14035
14944
  */
14036
- GetValue(this: StatsItem): number;
14945
+ "Text Color": Color3;
14037
14946
  /**
14038
- * Returns the StatsItem's value as a formatted string.
14947
+ * If set to true, text in the script editor will be wrapped.
14039
14948
  *
14040
- * - **ThreadSafety**: Unsafe
14949
+ * - **ThreadSafety**: ReadSafe
14041
14950
  *
14042
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StatsItem#GetValueString)
14043
- * @param this A single performance metric.
14951
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Text Wrapping)
14044
14952
  */
14045
- GetValueString(this: StatsItem): string;
14046
- }
14047
- /**
14048
- * Measures the runtime average of a **double** value.
14049
- *
14050
- * - **Tags**: NotCreatable
14051
- *
14052
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunningAverageItemDouble)
14053
- */
14054
- interface RunningAverageItemDouble extends StatsItem {
14953
+ "Text Wrapping": boolean;
14055
14954
  /**
14056
- * **DO NOT USE!**
14955
+ * Used to get/set current `theme` used by Studio.
14057
14956
  *
14058
- * This field exists to force TypeScript to recognize this as a nominal type
14059
- * @hidden
14060
- * @deprecated
14957
+ * - **ThreadSafety**: ReadSafe
14958
+ *
14959
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Theme)
14061
14960
  */
14062
- readonly _nominal_RunningAverageItemDouble: unique symbol;
14063
- }
14064
- /**
14065
- * Measures the runtime average of an **integer** value.
14066
- *
14067
- * - **Tags**: NotCreatable
14068
- *
14069
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunningAverageItemInt)
14070
- */
14071
- interface RunningAverageItemInt extends StatsItem {
14961
+ Theme: StudioTheme;
14072
14962
  /**
14073
- * **DO NOT USE!**
14963
+ * - **ThreadSafety**: ReadSafe
14964
+ * - **Tags**: NotReplicated
14074
14965
  *
14075
- * This field exists to force TypeScript to recognize this as a nominal type
14076
- * @hidden
14077
- * @deprecated
14966
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#TypeColor)
14078
14967
  */
14079
- readonly _nominal_RunningAverageItemInt: unique symbol;
14080
- }
14081
- /**
14082
- * Measures the runtime average of a time interval value.
14083
- *
14084
- * - **Tags**: NotCreatable
14085
- *
14086
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunningAverageTimeIntervalItem)
14087
- */
14088
- interface RunningAverageTimeIntervalItem extends StatsItem {
14968
+ TypeColor: Color3;
14089
14969
  /**
14090
- * **DO NOT USE!**
14970
+ * **Deprecated:**
14971
+ *
14972
+ * Specifies the color scheme of Roblox Studio.
14973
+ *
14974
+ * - **ThreadSafety**: ReadSafe
14975
+ * - **Tags**: Hidden, NotReplicated
14976
+ *
14977
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#UI Theme)
14091
14978
  *
14092
- * This field exists to force TypeScript to recognize this as a nominal type
14093
- * @hidden
14094
14979
  * @deprecated
14095
14980
  */
14096
- readonly _nominal_RunningAverageTimeIntervalItem: unique symbol;
14097
- }
14098
- /**
14099
- * Measures a total-count-over-time interval.
14100
- *
14101
- * - **Tags**: NotCreatable
14102
- *
14103
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TotalCountTimeIntervalItem)
14104
- */
14105
- interface TotalCountTimeIntervalItem extends StatsItem {
14981
+ readonly "UI Theme": Enum.UITheme;
14106
14982
  /**
14107
- * **DO NOT USE!**
14983
+ * Specifies the color of the wavy underline shown when the script analyzer picks up a problem that should be addressed in the script editor.
14108
14984
  *
14109
- * This field exists to force TypeScript to recognize this as a nominal type
14110
- * @hidden
14111
- * @deprecated
14985
+ * - **ThreadSafety**: ReadSafe
14986
+ * - **Tags**: NotReplicated
14987
+ *
14988
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Warning Color)
14112
14989
  */
14113
- readonly _nominal_TotalCountTimeIntervalItem: unique symbol;
14114
- }
14115
- /**
14116
- * - **Tags**: NotCreatable, Service, NotReplicated
14117
- *
14118
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio)
14119
- */
14120
- interface Studio extends Instance {
14990
+ "Warning Color": Color3;
14121
14991
  /**
14122
- * **DO NOT USE!**
14992
+ * - **ThreadSafety**: ReadSafe
14993
+ * - **Tags**: NotReplicated
14123
14994
  *
14124
- * This field exists to force TypeScript to recognize this as a nominal type
14125
- * @hidden
14126
- * @deprecated
14995
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Whitespace Color)
14127
14996
  */
14128
- readonly _nominal_Studio: unique symbol;
14997
+ "Whitespace Color": Color3;
14129
14998
  /**
14130
14999
  * Returns a list of `themes` available in Studio.
14131
15000
  *
@@ -14653,7 +15522,7 @@ interface StudioService extends Instance {
14653
15522
  * @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only a JPG or PNG file to be selected. If no filter is provided, the filter is `nil` and allows the user to select any file type.
14654
15523
  * @returns The imported `File`. Returns `nil` if no files were selected, or if the selected file was too large (FileSize greater than 100 megabytes).
14655
15524
  *
14656
- * @deprecated PromptImportFileAsync
15525
+ * @deprecated
14657
15526
  */
14658
15527
  PromptImportFile(this: StudioService, fileTypeFilter?: Array<unknown>): Instance | undefined;
14659
15528
  /**
@@ -14681,7 +15550,7 @@ interface StudioService extends Instance {
14681
15550
  * @param fileTypeFilter A list of file types that the user is allowed to select. File types are formatted without a period. For example, {"jpg", "png"} would allow only JPG and PNG files to be selected. If no filter is provided, the filter is `nil` and allows the user to select any file type.
14682
15551
  * @returns The imported `Files`. Returns an empty list if no files were selected. Returns `nil` if the user selected one or more files that were too large (FileSize greater than 100 megabytes).
14683
15552
  *
14684
- * @deprecated PromptImportFilesAsync
15553
+ * @deprecated
14685
15554
  */
14686
15555
  PromptImportFiles(this: StudioService, fileTypeFilter?: Array<unknown>): Array<Instance>;
14687
15556
  /**
@@ -15356,7 +16225,7 @@ interface TestService extends Instance {
15356
16225
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#Run)
15357
16226
  * @param this A service used by Roblox to run controlled tests of the engine. It is available for developers to use, to a limited degree.
15358
16227
  *
15359
- * @deprecated RunAsync
16228
+ * @deprecated
15360
16229
  */
15361
16230
  Run(this: TestService): void;
15362
16231
  /**
@@ -17018,6 +17887,21 @@ interface PluginConnection extends RBXObject {
17018
17887
  */
17019
17888
  SendMessage(this: PluginConnection, message: unknown): void;
17020
17889
  }
17890
+ /**
17891
+ * - **Tags**: NotCreatable, NotReplicated
17892
+ *
17893
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioActionOverride)
17894
+ */
17895
+ interface StudioActionOverride extends RBXObject {
17896
+ /**
17897
+ * **DO NOT USE!**
17898
+ *
17899
+ * This field exists to force TypeScript to recognize this as a nominal type
17900
+ * @hidden
17901
+ * @deprecated
17902
+ */
17903
+ readonly _nominal_StudioActionOverride: unique symbol;
17904
+ }
17021
17905
  /**
17022
17906
  * - **Tags**: NotCreatable, NotReplicated
17023
17907
  *