@rbxts/types 1.0.941 → 1.0.942

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.
@@ -707,6 +707,7 @@ interface Instances extends Services, CreatableInstances {
707
707
  LuaSourceContainer: LuaSourceContainer;
708
708
  ManualSurfaceJointInstance: ManualSurfaceJointInstance;
709
709
  MaterialImportData: MaterialImportData;
710
+ MemoryStoreDistributedCounter: MemoryStoreDistributedCounter;
710
711
  MemoryStoreHashMap: MemoryStoreHashMap;
711
712
  MemoryStoreHashMapPages: MemoryStoreHashMapPages;
712
713
  MemoryStoreQueue: MemoryStoreQueue;
@@ -819,6 +820,7 @@ interface Objects extends Instances {
819
820
  AnimationNode: AnimationNode;
820
821
  Capture: Capture;
821
822
  ConfigSnapshot: ConfigSnapshot;
823
+ DataModelDiff: DataModelDiff;
822
824
  EditableImage: EditableImage;
823
825
  EditableMesh: EditableMesh;
824
826
  ExecutedRemoteCommand: ExecutedRemoteCommand;
@@ -940,6 +942,21 @@ interface ConfigSnapshot extends RBXObject {
940
942
  */
941
943
  readonly _nominal_ConfigSnapshot: unique symbol;
942
944
  }
945
+ /**
946
+ * - **Tags**: NotCreatable
947
+ *
948
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModelDiff)
949
+ */
950
+ interface DataModelDiff extends RBXObject {
951
+ /**
952
+ * **DO NOT USE!**
953
+ *
954
+ * This field exists to force TypeScript to recognize this as a nominal type
955
+ * @hidden
956
+ * @deprecated
957
+ */
958
+ readonly _nominal_DataModelDiff: unique symbol;
959
+ }
943
960
  /**
944
961
  * Object which allows for the runtime creation and manipulation of images.
945
962
  *
@@ -6473,6 +6490,8 @@ interface TextLabel extends GuiLabel {
6473
6490
  readonly _nominal_TextLabel: unique symbol;
6474
6491
  }
6475
6492
  /**
6493
+ * A `GuiObject` that automatically displays the keybinding for an action as text or an image.
6494
+ *
6476
6495
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel)
6477
6496
  */
6478
6497
  interface InputActionLabel extends GuiObject {
@@ -7247,6 +7266,8 @@ interface HarmonyService extends Instance {
7247
7266
  readonly _nominal_HarmonyService: unique symbol;
7248
7267
  }
7249
7268
  /**
7269
+ * Provides methods which return Luau heap memory usage summaries on client and server.
7270
+ *
7250
7271
  * - **Tags**: NotCreatable, Service
7251
7272
  *
7252
7273
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HeapProfilerService)
@@ -7261,20 +7282,24 @@ interface HeapProfilerService extends Instance {
7261
7282
  */
7262
7283
  readonly _nominal_HeapProfilerService: unique symbol;
7263
7284
  /**
7285
+ * Returns a summary of Luau heap memory usage for the requested player's client.
7286
+ *
7264
7287
  * - **ThreadSafety**: Unsafe
7265
7288
  * - **Tags**: Yields
7266
7289
  *
7267
7290
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HeapProfilerService#ClientRequestDataAsync)
7268
- * @param this
7291
+ * @param this Provides methods which return Luau heap memory usage summaries on client and server.
7269
7292
  * @param player
7270
7293
  */
7271
7294
  ClientRequestDataAsync(this: HeapProfilerService, player: Player): string;
7272
7295
  /**
7296
+ * Returns a summary of Luau heap memory usage on the client.
7297
+ *
7273
7298
  * - **ThreadSafety**: Unsafe
7274
7299
  * - **Tags**: Yields
7275
7300
  *
7276
7301
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HeapProfilerService#ServerRequestDataAsync)
7277
- * @param this
7302
+ * @param this Provides methods which return Luau heap memory usage summaries on client and server.
7278
7303
  */
7279
7304
  ServerRequestDataAsync(this: HeapProfilerService): string;
7280
7305
  /**
@@ -8430,7 +8455,7 @@ interface BaseScript extends LuaSourceContainer {
8430
8455
  */
8431
8456
  readonly _nominal_BaseScript: unique symbol;
8432
8457
  /**
8433
- * Determines the context under which the script will run.
8458
+ * Determines the context under which the script runs.
8434
8459
  *
8435
8460
  * - **ThreadSafety**: ReadSafe
8436
8461
  *
@@ -8756,6 +8781,21 @@ interface MemStorageConnection extends Instance {
8756
8781
  */
8757
8782
  Disconnect(this: MemStorageConnection): void;
8758
8783
  }
8784
+ /**
8785
+ * - **Tags**: NotCreatable, NotReplicated
8786
+ *
8787
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreDistributedCounter)
8788
+ */
8789
+ interface MemoryStoreDistributedCounter extends Instance {
8790
+ /**
8791
+ * **DO NOT USE!**
8792
+ *
8793
+ * This field exists to force TypeScript to recognize this as a nominal type
8794
+ * @hidden
8795
+ * @deprecated
8796
+ */
8797
+ readonly _nominal_MemoryStoreDistributedCounter: unique symbol;
8798
+ }
8759
8799
  /**
8760
8800
  * Provides access to a hash map within `MemoryStoreService`.
8761
8801
  *
@@ -10483,6 +10523,8 @@ interface PhysicsService extends Instance {
10483
10523
  readonly _nominal_PhysicsService: unique symbol;
10484
10524
  }
10485
10525
  /**
10526
+ * Lets you view debugging features in Roblox's physics engine, found under the Physics tab in Studio's settings menu.
10527
+ *
10486
10528
  * - **Tags**: NotCreatable, Service, NotReplicated
10487
10529
  *
10488
10530
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings)
@@ -10577,6 +10619,8 @@ interface PhysicsSettings extends Instance {
10577
10619
  */
10578
10620
  AreModelCoordsShown: boolean;
10579
10621
  /**
10622
+ * When set to true, parts that are not `BasePart.Anchored` will be highlighted.
10623
+ *
10580
10624
  * - **ThreadSafety**: ReadSafe
10581
10625
  *
10582
10626
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreNonAnchorsShown)
@@ -10607,6 +10651,8 @@ interface PhysicsSettings extends Instance {
10607
10651
  */
10608
10652
  AreRegionsShown: boolean;
10609
10653
  /**
10654
+ * When set to true, shows terrain replication streaming regions.
10655
+ *
10610
10656
  * - **ThreadSafety**: ReadSafe
10611
10657
  *
10612
10658
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#AreTerrainReplicationRegionsShown)
@@ -10637,12 +10683,16 @@ interface PhysicsSettings extends Instance {
10637
10683
  */
10638
10684
  DisableCSGv2: boolean;
10639
10685
  /**
10686
+ * When set to true, disables CSGv3 for plugin solid modeling operations.
10687
+ *
10640
10688
  * - **ThreadSafety**: ReadSafe
10641
10689
  *
10642
10690
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#DisableCSGv3ForPlugins)
10643
10691
  */
10644
10692
  DisableCSGv3ForPlugins: boolean;
10645
10693
  /**
10694
+ * When set to true, forces the use of CSGv2 for solid modeling operations.
10695
+ *
10646
10696
  * - **ThreadSafety**: ReadSafe
10647
10697
  * - **Tags**: Hidden, NotReplicated
10648
10698
  *
@@ -10650,6 +10700,8 @@ interface PhysicsSettings extends Instance {
10650
10700
  */
10651
10701
  ForceCSGv2: boolean;
10652
10702
  /**
10703
+ * When set to true, shows physics interpolation throttle information.
10704
+ *
10653
10705
  * - **ThreadSafety**: ReadSafe
10654
10706
  *
10655
10707
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PhysicsSettings#IsInterpolationThrottleShown)
@@ -13630,16 +13682,6 @@ interface DataModel extends ServiceProvider<Services> {
13630
13682
  * @deprecated
13631
13683
  */
13632
13684
  readonly _nominal_DataModel: unique symbol;
13633
- /**
13634
- * Returns a table containing basic information about the jobs performed by the task scheduler.
13635
- *
13636
- * - **ThreadSafety**: Unsafe
13637
- *
13638
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#GetJobsInfo)
13639
- * @param this The root of Roblox's parent-child hierarchy. Its direct children are services, such as `Workspace` and `Lighting`, that act as the fundamental components of a Roblox game.
13640
- * @returns A table containing information about the jobs performed by the task scheduler, see above for the format.
13641
- */
13642
- GetJobsInfo(this: DataModel): Array<unknown>;
13643
13685
  /**
13644
13686
  * Sets the `DataModel.PlaceId` of the current game instance.
13645
13687
  *
@@ -13660,6 +13702,16 @@ interface DataModel extends ServiceProvider<Services> {
13660
13702
  * @param universeId The ID to set the `DataModel.GameId` to.
13661
13703
  */
13662
13704
  SetUniverseId(this: DataModel, universeId: number): void;
13705
+ /**
13706
+ * Returns a table containing basic information about the jobs performed by the task scheduler.
13707
+ *
13708
+ * - **ThreadSafety**: Unsafe
13709
+ *
13710
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#GetJobsInfo)
13711
+ * @param this The root of Roblox's parent-child hierarchy. Its direct children are services, such as `Workspace` and `Lighting`, that act as the fundamental components of a Roblox game.
13712
+ * @returns A table containing information about the jobs performed by the task scheduler, see above for the format.
13713
+ */
13714
+ GetJobsInfo(this: DataModel): Array<unknown>;
13663
13715
  /**
13664
13716
  * Returns an array of `Instances` associated with the given content URL.
13665
13717
  *
@@ -14519,18 +14571,24 @@ interface Studio extends Instance {
14519
14571
  */
14520
14572
  readonly _nominal_Studio: unique symbol;
14521
14573
  /**
14574
+ * Sets the action Studio takes when stopping file sync.
14575
+ *
14522
14576
  * - **ThreadSafety**: ReadSafe
14523
14577
  *
14524
14578
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#ActionOnStopSync)
14525
14579
  */
14526
14580
  ActionOnStopSync: Enum.ActionOnStopSync;
14527
14581
  /**
14582
+ * Sets the color of active UI elements in Studio.
14583
+ *
14528
14584
  * - **ThreadSafety**: ReadSafe
14529
14585
  *
14530
14586
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Active Color)
14531
14587
  */
14532
14588
  "Active Color": Color3;
14533
14589
  /**
14590
+ * Sets the color of active UI elements when hovered in Studio.
14591
+ *
14534
14592
  * - **ThreadSafety**: ReadSafe
14535
14593
  *
14536
14594
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Active Hover Over Color)
@@ -14565,36 +14623,48 @@ interface Studio extends Instance {
14565
14623
  */
14566
14624
  "Animation Skeleton Transparency": number;
14567
14625
  /**
14626
+ * Controls whether trailing whitespace is automatically removed from empty lines in the script editor.
14627
+ *
14568
14628
  * - **ThreadSafety**: ReadSafe
14569
14629
  *
14570
14630
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Clean Empty Line)
14571
14631
  */
14572
14632
  "Auto Clean Empty Line": boolean;
14573
14633
  /**
14634
+ * Controls whether the script editor automatically inserts a matching closing bracket.
14635
+ *
14574
14636
  * - **ThreadSafety**: ReadSafe
14575
14637
  *
14576
14638
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Closing Brackets)
14577
14639
  */
14578
14640
  "Auto Closing Brackets": boolean;
14579
14641
  /**
14642
+ * Controls whether the script editor automatically inserts a matching closing quote.
14643
+ *
14580
14644
  * - **ThreadSafety**: ReadSafe
14581
14645
  *
14582
14646
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Closing Quotes)
14583
14647
  */
14584
14648
  "Auto Closing Quotes": boolean;
14585
14649
  /**
14650
+ * Controls whether deleting an opening bracket or quote also removes its closing counterpart.
14651
+ *
14586
14652
  * - **ThreadSafety**: ReadSafe
14587
14653
  *
14588
14654
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Delete Closing Brackets and Quotes)
14589
14655
  */
14590
14656
  "Auto Delete Closing Brackets and Quotes": boolean;
14591
14657
  /**
14658
+ * Sets the rule used to determine automatic indentation in the script editor.
14659
+ *
14592
14660
  * - **ThreadSafety**: ReadSafe
14593
14661
  *
14594
14662
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto Indent Rule)
14595
14663
  */
14596
14664
  "Auto Indent Rule": Enum.AutoIndentRule;
14597
14665
  /**
14666
+ * Controls whether Studio automatically saves recovery files at a set interval.
14667
+ *
14598
14668
  * - **ThreadSafety**: ReadSafe
14599
14669
  *
14600
14670
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Auto-Recovery Enabled)
@@ -14624,6 +14694,8 @@ interface Studio extends Instance {
14624
14694
  */
14625
14695
  "Basic Objects Display Mode": Enum.ListDisplayMode;
14626
14696
  /**
14697
+ * Sets the color of boolean literals in the script editor.
14698
+ *
14627
14699
  * - **ThreadSafety**: ReadSafe
14628
14700
  * - **Tags**: NotReplicated
14629
14701
  *
@@ -14631,6 +14703,8 @@ interface Studio extends Instance {
14631
14703
  */
14632
14704
  "Bool Color": Color3;
14633
14705
  /**
14706
+ * Sets the color of brackets in the script editor.
14707
+ *
14634
14708
  * - **ThreadSafety**: ReadSafe
14635
14709
  * - **Tags**: NotReplicated
14636
14710
  *
@@ -14671,6 +14745,8 @@ interface Studio extends Instance {
14671
14745
  */
14672
14746
  "Camera Speed": number;
14673
14747
  /**
14748
+ * Controls whether the camera zooms toward the mouse cursor position.
14749
+ *
14674
14750
  * - **ThreadSafety**: ReadSafe
14675
14751
  *
14676
14752
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Camera Zoom to Mouse Position)
@@ -14685,6 +14761,8 @@ interface Studio extends Instance {
14685
14761
  */
14686
14762
  "Clear Output On Start": boolean;
14687
14763
  /**
14764
+ * Controls whether the command bar retains its input state between sessions.
14765
+ *
14688
14766
  * - **ThreadSafety**: ReadSafe
14689
14767
  *
14690
14768
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#CommandBarLocalState)
@@ -14700,6 +14778,8 @@ interface Studio extends Instance {
14700
14778
  */
14701
14779
  "Comment Color": Color3;
14702
14780
  /**
14781
+ * Sets the color of the current line highlight in the script editor.
14782
+ *
14703
14783
  * - **ThreadSafety**: ReadSafe
14704
14784
  * - **Tags**: NotReplicated
14705
14785
  *
@@ -14707,6 +14787,8 @@ interface Studio extends Instance {
14707
14787
  */
14708
14788
  "Current Line Highlight Color": Color3;
14709
14789
  /**
14790
+ * Sets the color of the current debugger line in the script editor.
14791
+ *
14710
14792
  * - **ThreadSafety**: ReadSafe
14711
14793
  * - **Tags**: NotReplicated
14712
14794
  *
@@ -14714,6 +14796,8 @@ interface Studio extends Instance {
14714
14796
  */
14715
14797
  "Debugger Current Line Color": Color3;
14716
14798
  /**
14799
+ * Sets the color of debugger error lines in the script editor.
14800
+ *
14717
14801
  * - **ThreadSafety**: ReadSafe
14718
14802
  * - **Tags**: NotReplicated
14719
14803
  *
@@ -14737,36 +14821,48 @@ interface Studio extends Instance {
14737
14821
  */
14738
14822
  "Enable Autocomplete": boolean;
14739
14823
  /**
14824
+ * Controls whether the CoreScript debugger is available in Studio.
14825
+ *
14740
14826
  * - **ThreadSafety**: ReadSafe
14741
14827
  *
14742
14828
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable CoreScript Debugger)
14743
14829
  */
14744
14830
  "Enable CoreScript Debugger": boolean;
14745
14831
  /**
14832
+ * Controls whether HTTP requests from plugins are sandboxed.
14833
+ *
14746
14834
  * - **ThreadSafety**: ReadSafe
14747
14835
  *
14748
14836
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Http Sandboxing)
14749
14837
  */
14750
14838
  "Enable Http Sandboxing": boolean;
14751
14839
  /**
14840
+ * Controls whether internal beta features are accessible in Studio.
14841
+ *
14752
14842
  * - **ThreadSafety**: ReadSafe
14753
14843
  *
14754
14844
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Internal Beta Features)
14755
14845
  */
14756
14846
  "Enable Internal Beta Features": boolean;
14757
14847
  /**
14848
+ * Controls whether internal developer features are accessible in Studio.
14849
+ *
14758
14850
  * - **ThreadSafety**: ReadSafe
14759
14851
  *
14760
14852
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Internal Features)
14761
14853
  */
14762
14854
  "Enable Internal Features": boolean;
14763
14855
  /**
14856
+ * Controls whether opening a script creates a temporary tab that is replaced on the next open.
14857
+ *
14764
14858
  * - **ThreadSafety**: ReadSafe
14765
14859
  *
14766
14860
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Temporary Tabs)
14767
14861
  */
14768
14862
  "Enable Temporary Tabs": boolean;
14769
14863
  /**
14864
+ * Controls whether clicking a script in the Explorer opens it in a temporary tab.
14865
+ *
14770
14866
  * - **ThreadSafety**: ReadSafe
14771
14867
  *
14772
14868
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Enable Temporary Tabs In Explorer)
@@ -14799,18 +14895,24 @@ interface Studio extends Instance {
14799
14895
  */
14800
14896
  Font: QFont;
14801
14897
  /**
14898
+ * Controls whether pasted code is automatically formatted in the script editor.
14899
+ *
14802
14900
  * - **ThreadSafety**: ReadSafe
14803
14901
  *
14804
14902
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Format On Paste)
14805
14903
  */
14806
14904
  "Format On Paste": boolean;
14807
14905
  /**
14906
+ * Controls whether code is automatically formatted as you type in the script editor.
14907
+ *
14808
14908
  * - **ThreadSafety**: ReadSafe
14809
14909
  *
14810
14910
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Format On Type)
14811
14911
  */
14812
14912
  "Format On Type": boolean;
14813
14913
  /**
14914
+ * Sets the color of function names in the script editor.
14915
+ *
14814
14916
  * - **ThreadSafety**: ReadSafe
14815
14917
  * - **Tags**: NotReplicated
14816
14918
  *
@@ -14818,18 +14920,24 @@ interface Studio extends Instance {
14818
14920
  */
14819
14921
  "Function Name Color": Color3;
14820
14922
  /**
14923
+ * Controls whether the current line is highlighted in the script editor.
14924
+ *
14821
14925
  * - **ThreadSafety**: ReadSafe
14822
14926
  *
14823
14927
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Highlight Current Line)
14824
14928
  */
14825
14929
  "Highlight Current Line": boolean;
14826
14930
  /**
14931
+ * Controls whether other occurrences of the word under the cursor are highlighted.
14932
+ *
14827
14933
  * - **ThreadSafety**: ReadSafe
14828
14934
  *
14829
14935
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Highlight Occurances)
14830
14936
  */
14831
14937
  "Highlight Occurances": boolean;
14832
14938
  /**
14939
+ * Sets the color of hint diagnostics in the script editor.
14940
+ *
14833
14941
  * - **ThreadSafety**: ReadSafe
14834
14942
  * - **Tags**: NotReplicated
14835
14943
  *
@@ -14853,12 +14961,16 @@ interface Studio extends Instance {
14853
14961
  */
14854
14962
  "Hover Over Color": Color3;
14855
14963
  /**
14964
+ * Controls whether the script editor uses spaces instead of tabs for indentation.
14965
+ *
14856
14966
  * - **ThreadSafety**: ReadSafe
14857
14967
  *
14858
14968
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Indent Using Spaces)
14859
14969
  */
14860
14970
  "Indent Using Spaces": boolean;
14861
14971
  /**
14972
+ * Sets the color of information diagnostics in the script editor.
14973
+ *
14862
14974
  * - **ThreadSafety**: ReadSafe
14863
14975
  * - **Tags**: NotReplicated
14864
14976
  *
@@ -14891,6 +15003,8 @@ interface Studio extends Instance {
14891
15003
  */
14892
15004
  LuaDebuggerEnabled: boolean;
14893
15005
  /**
15006
+ * Controls whether the Lua debugger is enabled when Studio starts.
15007
+ *
14894
15008
  * - **ThreadSafety**: ReadSafe
14895
15009
  * - **Tags**: Hidden, NotReplicated
14896
15010
  *
@@ -14898,6 +15012,8 @@ interface Studio extends Instance {
14898
15012
  */
14899
15013
  readonly LuaDebuggerEnabledAtStartup: boolean;
14900
15014
  /**
15015
+ * Sets the color of Luau-specific keywords in the script editor.
15016
+ *
14901
15017
  * - **ThreadSafety**: ReadSafe
14902
15018
  * - **Tags**: NotReplicated
14903
15019
  *
@@ -14922,6 +15038,8 @@ interface Studio extends Instance {
14922
15038
  */
14923
15039
  "Maximum Output Lines": number;
14924
15040
  /**
15041
+ * Sets the background color of menu items in Studio.
15042
+ *
14925
15043
  * - **ThreadSafety**: ReadSafe
14926
15044
  * - **Tags**: NotReplicated
14927
15045
  *
@@ -14929,6 +15047,8 @@ interface Studio extends Instance {
14929
15047
  */
14930
15048
  "Menu Item Background Color": Color3;
14931
15049
  /**
15050
+ * Sets the color of method names in the script editor.
15051
+ *
14932
15052
  * - **ThreadSafety**: ReadSafe
14933
15053
  * - **Tags**: NotReplicated
14934
15054
  *
@@ -14986,6 +15106,8 @@ interface Studio extends Instance {
14986
15106
  */
14987
15107
  PermissionLevelShown: Enum.PermissionLevelShown;
14988
15108
  /**
15109
+ * Controls whether plugin script debugging is enabled in Studio.
15110
+ *
14989
15111
  * - **ThreadSafety**: ReadSafe
14990
15112
  *
14991
15113
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#PluginDebuggingEnabled)
@@ -15000,12 +15122,16 @@ interface Studio extends Instance {
15000
15122
  */
15001
15123
  PluginsDir: QDir;
15002
15124
  /**
15125
+ * Sets the preferred font size in the script editor.
15126
+ *
15003
15127
  * - **ThreadSafety**: ReadSafe
15004
15128
  *
15005
15129
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#PreferredTextSize)
15006
15130
  */
15007
15131
  PreferredTextSize: Enum.PreferredTextSize;
15008
15132
  /**
15133
+ * Sets the primary text color in Studio.
15134
+ *
15009
15135
  * - **ThreadSafety**: ReadSafe
15010
15136
  * - **Tags**: NotReplicated
15011
15137
  *
@@ -15013,6 +15139,8 @@ interface Studio extends Instance {
15013
15139
  */
15014
15140
  "Primary Text Color": Color3;
15015
15141
  /**
15142
+ * Sets the color of property names in the script editor.
15143
+ *
15016
15144
  * - **ThreadSafety**: ReadSafe
15017
15145
  * - **Tags**: NotReplicated
15018
15146
  *
@@ -15028,6 +15156,8 @@ interface Studio extends Instance {
15028
15156
  */
15029
15157
  "Respect Studio shortcuts when game has focus": boolean;
15030
15158
  /**
15159
+ * Sets the color of the column ruler in the script editor.
15160
+ *
15031
15161
  * - **ThreadSafety**: ReadSafe
15032
15162
  * - **Tags**: NotReplicated
15033
15163
  *
@@ -15035,12 +15165,16 @@ interface Studio extends Instance {
15035
15165
  */
15036
15166
  "Ruler Color": Color3;
15037
15167
  /**
15168
+ * Sets the column positions at which vertical ruler lines are drawn in the script editor.
15169
+ *
15038
15170
  * - **ThreadSafety**: ReadSafe
15039
15171
  *
15040
15172
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Rulers)
15041
15173
  */
15042
15174
  Rulers: string;
15043
15175
  /**
15176
+ * Sets how Studio handles undo operations during runtime playback.
15177
+ *
15044
15178
  * - **ThreadSafety**: ReadSafe
15045
15179
  *
15046
15180
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#RuntimeUndoBehavior)
@@ -15055,12 +15189,16 @@ interface Studio extends Instance {
15055
15189
  */
15056
15190
  ScriptTimeoutLength: number;
15057
15191
  /**
15192
+ * Sets the color preset applied to the script editor.
15193
+ *
15058
15194
  * - **ThreadSafety**: ReadSafe
15059
15195
  *
15060
15196
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Script Editor Color Preset)
15061
15197
  */
15062
15198
  "Script Editor Color Preset": Enum.StudioScriptEditorColorPresets;
15063
15199
  /**
15200
+ * Sets the background color of the script editor scrollbar in Studio.
15201
+ *
15064
15202
  * - **ThreadSafety**: ReadSafe
15065
15203
  * - **Tags**: NotReplicated
15066
15204
  *
@@ -15068,6 +15206,8 @@ interface Studio extends Instance {
15068
15206
  */
15069
15207
  "Script Editor Scrollbar Background Color": Color3;
15070
15208
  /**
15209
+ * Sets the handle color of the script editor scrollbar in Studio.
15210
+ *
15071
15211
  * - **ThreadSafety**: ReadSafe
15072
15212
  * - **Tags**: NotReplicated
15073
15213
  *
@@ -15075,12 +15215,16 @@ interface Studio extends Instance {
15075
15215
  */
15076
15216
  "Script Editor Scrollbar Handle Color": Color3;
15077
15217
  /**
15218
+ * Controls whether the script editor allows scrolling below the last line.
15219
+ *
15078
15220
  * - **ThreadSafety**: ReadSafe
15079
15221
  *
15080
15222
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Scroll Past Last Line)
15081
15223
  */
15082
15224
  "Scroll Past Last Line": boolean;
15083
15225
  /**
15226
+ * Sets the secondary text color in Studio.
15227
+ *
15084
15228
  * - **ThreadSafety**: ReadSafe
15085
15229
  * - **Tags**: NotReplicated
15086
15230
  *
@@ -15102,6 +15246,8 @@ interface Studio extends Instance {
15102
15246
  */
15103
15247
  "Select/Hover Color": Color3;
15104
15248
  /**
15249
+ * Sets the background color of selected menu items in Studio.
15250
+ *
15105
15251
  * - **ThreadSafety**: ReadSafe
15106
15252
  * - **Tags**: NotReplicated
15107
15253
  *
@@ -15109,6 +15255,8 @@ interface Studio extends Instance {
15109
15255
  */
15110
15256
  "Selected Menu Item Background Color": Color3;
15111
15257
  /**
15258
+ * Sets the color of selected text in Studio.
15259
+ *
15112
15260
  * - **ThreadSafety**: ReadSafe
15113
15261
  * - **Tags**: NotReplicated
15114
15262
  *
@@ -15134,6 +15282,8 @@ interface Studio extends Instance {
15134
15282
  */
15135
15283
  "Selection Color": Color3;
15136
15284
  /**
15285
+ * Sets whether the pivot point is repositioned when parts are imported.
15286
+ *
15137
15287
  * - **ThreadSafety**: ReadSafe
15138
15288
  *
15139
15289
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Set Pivot of Imported Parts)
@@ -15186,12 +15336,16 @@ interface Studio extends Instance {
15186
15336
  */
15187
15337
  "Show Diagnostics Bar": boolean;
15188
15338
  /**
15339
+ * Controls whether FileSyncService is shown in the Explorer panel.
15340
+ *
15189
15341
  * - **ThreadSafety**: ReadSafe
15190
15342
  *
15191
15343
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show FileSyncService)
15192
15344
  */
15193
15345
  "Show FileSyncService": boolean;
15194
15346
  /**
15347
+ * Controls whether hidden objects are visible in the Explorer panel.
15348
+ *
15195
15349
  * - **ThreadSafety**: ReadSafe
15196
15350
  *
15197
15351
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Hidden Objects in Explorer)
@@ -15222,18 +15376,24 @@ interface Studio extends Instance {
15222
15376
  */
15223
15377
  "Show Plugin GUI Service in Explorer": boolean;
15224
15378
  /**
15379
+ * Controls whether whitespace characters are shown as visible glyphs in the script editor.
15380
+ *
15225
15381
  * - **ThreadSafety**: ReadSafe
15226
15382
  *
15227
15383
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show Whitespace)
15228
15384
  */
15229
15385
  "Show Whitespace": boolean;
15230
15386
  /**
15387
+ * Controls whether a plus button appears when hovering over items in the Explorer.
15388
+ *
15231
15389
  * - **ThreadSafety**: ReadSafe
15232
15390
  *
15233
15391
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Show plus button on hover in Explorer)
15234
15392
  */
15235
15393
  "Show plus button on hover in Explorer": boolean;
15236
15394
  /**
15395
+ * Controls whether the cursor skips over a typed closing bracket or quote if one already exists.
15396
+ *
15237
15397
  * - **ThreadSafety**: ReadSafe
15238
15398
  *
15239
15399
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Studio#Skip Closing Brackets and Quotes)
@@ -15282,6 +15442,8 @@ interface Studio extends Instance {
15282
15442
  */
15283
15443
  Theme: StudioTheme;
15284
15444
  /**
15445
+ * Sets the color of type annotations in the script editor.
15446
+ *
15285
15447
  * - **ThreadSafety**: ReadSafe
15286
15448
  * - **Tags**: NotReplicated
15287
15449
  *
@@ -15311,6 +15473,8 @@ interface Studio extends Instance {
15311
15473
  */
15312
15474
  "Warning Color": Color3;
15313
15475
  /**
15476
+ * Sets the color of visible whitespace characters in the script editor.
15477
+ *
15314
15478
  * - **ThreadSafety**: ReadSafe
15315
15479
  * - **Tags**: NotReplicated
15316
15480
  *
@@ -17480,7 +17644,7 @@ interface UnvalidatedAssetService extends Instance {
17480
17644
  readonly _nominal_UnvalidatedAssetService: unique symbol;
17481
17645
  }
17482
17646
  /**
17483
- * The UserGameSettings is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
17647
+ * `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
17484
17648
  *
17485
17649
  * - **Tags**: NotCreatable, Service, NotReplicated
17486
17650
  *