@rbxts/types 1.0.807 → 1.0.808

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.
@@ -52,6 +52,7 @@ interface Services {
52
52
  DebuggerUIService: DebuggerUIService;
53
53
  DeviceIdService: DeviceIdService;
54
54
  DraggerService: DraggerService;
55
+ EditableService: EditableService;
55
56
  EventIngestService: EventIngestService;
56
57
  ExampleService: ExampleService;
57
58
  ExperienceAuthService: ExperienceAuthService;
@@ -298,6 +299,7 @@ interface CreatableInstances {
298
299
  FlangeSoundEffect: FlangeSoundEffect;
299
300
  FloatCurve: FloatCurve;
300
301
  FloorWire: FloorWire;
302
+ FluidForceSensor: FluidForceSensor;
301
303
  Folder: Folder;
302
304
  ForceField: ForceField;
303
305
  Frame: Frame;
@@ -11014,6 +11016,17 @@ interface RobloxEditableImage extends EditableImage {
11014
11016
  readonly _nominal_RobloxEditableImage: unique symbol;
11015
11017
  }
11016
11018
 
11019
+ interface EditableService extends Instance {
11020
+ /**
11021
+ * **DO NOT USE!**
11022
+ *
11023
+ * This field exists to force TypeScript to recognize this as a nominal type
11024
+ * @hidden
11025
+ * @deprecated
11026
+ */
11027
+ readonly _nominal_EditableService: unique symbol;
11028
+ }
11029
+
11017
11030
  /** A EulerRotation Curve represents a 3D rotation curve, it groups 3 [FloatCurves](https://developer.roblox.com/en-us/api-reference/class/FloatCurve), stored as 3 FloatCurve child instances. The rotation is decomposed in 3 Euler angles channels that can be accessed via [EulerRotationCurve:X](https://developer.roblox.com/en-us/api-reference/function/EulerRotationCurve/X), [EulerRotationCurve:Y](https://developer.roblox.com/en-us/api-reference/function/EulerRotationCurve/Y), [EulerRotationCurve:Z](https://developer.roblox.com/en-us/api-reference/function/EulerRotationCurve/Z) methods. The 3 axes can be sampled simultaneously via the method [EulerRotationCurve:GetAnglesAtTime](https://developer.roblox.com/en-us/api-reference/function/EulerRotationCurve/GetAnglesAtTime) returning the 3 Euler angles as a Vector3. Similarly, [EulerRotationCurve:GetRotationAtTime](https://developer.roblox.com/en-us/api-reference/function/EulerRotationCurve/GetRotationAtTime) samples all channels simultaneously but returns a CFrame rotated by X, Y, and Z according to the specified rotation order. */
11018
11031
  interface EulerRotationCurve extends Instance {
11019
11032
  /**
@@ -15839,10 +15852,12 @@ interface GuiService extends Instance {
15839
15852
  * Creates a gui selection group where gamepad gui navigation will only consider selectable gui objects that are within the group (children of selectionParent).
15840
15853
  *
15841
15854
  * A use case is you have a menu pop open, but there are other selectable objects on the screen (maybe from previous menus), but you want to the user to only be able to select gui objects in the new menu.
15855
+ * @deprecated Use `SelectionGroup` instead
15842
15856
  */
15843
15857
  AddSelectionParent(this: GuiService, selectionName: string, selectionParent: GuiObject): void;
15844
15858
  /**
15845
15859
  * Functions similarly to [GuiService:AddSelectionParent](https://developer.roblox.com/en-us/api-reference/function/GuiService/AddSelectionParent), but you can give it a tuple of [GuiObject](https://developer.roblox.com/en-us/api-reference/class/GuiObject) that you want to be contained in the group.
15860
+ * @deprecated Use `SelectionGroup` instead
15846
15861
  */
15847
15862
  AddSelectionTuple(this: GuiService, selectionName: string, selections: Array<GuiObject>): void;
15848
15863
  /**
@@ -15929,6 +15944,7 @@ interface GuiService extends Instance {
15929
15944
  IsTenFootInterface(this: GuiService): boolean;
15930
15945
  /**
15931
15946
  * Removes a group that was created with [GuiService:AddSelectionParent](https://developer.roblox.com/en-us/api-reference/function/GuiService/AddSelectionParent) or [GuiService:AddSelectionTuple](https://developer.roblox.com/en-us/api-reference/function/GuiService/AddSelectionTuple).
15947
+ * @deprecated Use `SelectionGroup` instead
15932
15948
  */
15933
15949
  RemoveSelectionGroup(this: GuiService, selectionName: string): void;
15934
15950
  Select(this: GuiService, selectionParent: Instance): void;
@@ -17467,6 +17483,8 @@ interface HumanoidDescription extends Instance {
17467
17483
  *
17468
17484
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17469
17485
  * * [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory), [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17486
+ *
17487
+ * Tags: NotReplicated
17470
17488
  */
17471
17489
  BackAccessory: string;
17472
17490
  /**
@@ -17536,6 +17554,8 @@ interface HumanoidDescription extends Instance {
17536
17554
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17537
17555
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory), [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17538
17556
  * * [Face](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Face), a property that determines what Face texture is used on the head
17557
+ *
17558
+ * Tags: NotReplicated
17539
17559
  */
17540
17560
  FaceAccessory: string;
17541
17561
  /**
@@ -17558,6 +17578,8 @@ interface HumanoidDescription extends Instance {
17558
17578
  *
17559
17579
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17560
17580
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory), [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17581
+ *
17582
+ * Tags: NotReplicated
17561
17583
  */
17562
17584
  FrontAccessory: string;
17563
17585
  /**
@@ -17583,6 +17605,8 @@ interface HumanoidDescription extends Instance {
17583
17605
  *
17584
17606
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17585
17607
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory), [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17608
+ *
17609
+ * Tags: NotReplicated
17586
17610
  */
17587
17611
  HairAccessory: string;
17588
17612
  /**
@@ -17595,6 +17619,8 @@ interface HumanoidDescription extends Instance {
17595
17619
  *
17596
17620
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17597
17621
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory), [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17622
+ *
17623
+ * Tags: NotReplicated
17598
17624
  */
17599
17625
  HatAccessory: string;
17600
17626
  /**
@@ -17607,6 +17633,8 @@ interface HumanoidDescription extends Instance {
17607
17633
  * * [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm), [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg) and [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which are similar properties that also control body part
17608
17634
  * * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), which controls the color of this limb
17609
17635
  * * [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory) and [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), which all can apply [Accessory](https://developer.roblox.com/en-us/api-reference/class/Accessory) objects which are joined to to the head
17636
+ *
17637
+ * Tags: NotReplicated
17610
17638
  */
17611
17639
  Head: number;
17612
17640
  /**
@@ -17619,6 +17647,8 @@ interface HumanoidDescription extends Instance {
17619
17647
  * * [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), and [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which are similar properties that also control body colors
17620
17648
  * * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), which controls the mesh used for the head
17621
17649
  * * [Face](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Face), which applies a texture to the front of the head
17650
+ *
17651
+ * Tags: NotReplicated
17622
17652
  */
17623
17653
  HeadColor: Color3;
17624
17654
  /**
@@ -17680,6 +17710,8 @@ interface HumanoidDescription extends Instance {
17680
17710
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17681
17711
  * * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg) and [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which are similar properties that also control body part
17682
17712
  * * [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), which controls the color of this limb
17713
+ *
17714
+ * Tags: NotReplicated
17683
17715
  */
17684
17716
  LeftArm: number;
17685
17717
  /**
@@ -17692,6 +17724,8 @@ interface HumanoidDescription extends Instance {
17692
17724
  * * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), and [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which are similar properties that also control body colors
17693
17725
  * * [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm), which controls the mesh used for this limb
17694
17726
  * * [Shirt](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Shirt), which can apply a texture to this limb
17727
+ *
17728
+ * Tags: NotReplicated
17695
17729
  */
17696
17730
  LeftArmColor: Color3;
17697
17731
  /**
@@ -17703,6 +17737,8 @@ interface HumanoidDescription extends Instance {
17703
17737
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17704
17738
  * * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm), and [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg), which are similar properties that also control body part
17705
17739
  * * [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), which controls the color of this limb
17740
+ *
17741
+ * Tags: NotReplicated
17706
17742
  */
17707
17743
  LeftLeg: number;
17708
17744
  /**
@@ -17715,6 +17751,8 @@ interface HumanoidDescription extends Instance {
17715
17751
  * * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), and [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which are similar properties that also control body colors
17716
17752
  * * [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which controls the mesh used for this limb
17717
17753
  * * [Pants](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Pants), which can apply a texture to this limb
17754
+ *
17755
+ * Tags: NotReplicated
17718
17756
  */
17719
17757
  LeftLegColor: Color3;
17720
17758
  MoodAnimation: number;
@@ -17728,6 +17766,8 @@ interface HumanoidDescription extends Instance {
17728
17766
  *
17729
17767
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17730
17768
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17769
+ *
17770
+ * Tags: NotReplicated
17731
17771
  */
17732
17772
  NeckAccessory: string;
17733
17773
  /**
@@ -17800,6 +17840,8 @@ interface HumanoidDescription extends Instance {
17800
17840
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17801
17841
  * * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm), [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg) and [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which are similar properties that also control body part
17802
17842
  * * [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), which controls the color of this limb
17843
+ *
17844
+ * Tags: NotReplicated
17803
17845
  */
17804
17846
  RightArm: number;
17805
17847
  /**
@@ -17812,6 +17854,8 @@ interface HumanoidDescription extends Instance {
17812
17854
  * * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), and [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which are similar properties that also control body colors
17813
17855
  * * [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), which controls the mesh used for this limb
17814
17856
  * * [Shirt](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Shirt), which can apply a texture to this limb
17857
+ *
17858
+ * Tags: NotReplicated
17815
17859
  */
17816
17860
  RightArmColor: Color3;
17817
17861
  /**
@@ -17823,6 +17867,8 @@ interface HumanoidDescription extends Instance {
17823
17867
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17824
17868
  * * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm) and [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which are similar properties that also control body part
17825
17869
  * * [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which controls the color of this limb
17870
+ *
17871
+ * Tags: NotReplicated
17826
17872
  */
17827
17873
  RightLeg: number;
17828
17874
  /**
@@ -17835,6 +17881,8 @@ interface HumanoidDescription extends Instance {
17835
17881
  * * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), and [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), which are similar properties that also control body colors
17836
17882
  * * [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg), which controls the mesh used for this limb
17837
17883
  * * [Pants](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Pants), which can apply a texture to this limb
17884
+ *
17885
+ * Tags: NotReplicated
17838
17886
  */
17839
17887
  RightLegColor: Color3;
17840
17888
  /**
@@ -17871,6 +17919,8 @@ interface HumanoidDescription extends Instance {
17871
17919
  *
17872
17920
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17873
17921
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory) and [WaistAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/WaistAccessory), which are similar properties that apply accessories like this one
17922
+ *
17923
+ * Tags: NotReplicated
17874
17924
  */
17875
17925
  ShouldersAccessory: string;
17876
17926
  /**
@@ -17892,6 +17942,8 @@ interface HumanoidDescription extends Instance {
17892
17942
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17893
17943
  * * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm), [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg) and [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which are similar properties that also control body part
17894
17944
  * * [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), which controls the color of this limb
17945
+ *
17946
+ * Tags: NotReplicated
17895
17947
  */
17896
17948
  Torso: number;
17897
17949
  /**
@@ -17904,6 +17956,8 @@ interface HumanoidDescription extends Instance {
17904
17956
  * * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), and [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which are similar properties that also control body colors
17905
17957
  * * [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), which controls the mesh used for this body part
17906
17958
  * * [GraphicTShirt](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/GraphicTShirt) and [Shirt](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Shirt), which can apply a texture to this body part
17959
+ *
17960
+ * Tags: NotReplicated
17907
17961
  */
17908
17962
  TorsoColor: Color3;
17909
17963
  /**
@@ -17916,6 +17970,8 @@ interface HumanoidDescription extends Instance {
17916
17970
  *
17917
17971
  * * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
17918
17972
  * * [BackAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/BackAccessory), [FaceAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FaceAccessory), [FrontAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/FrontAccessory), [HairAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HairAccessory), [HatAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HatAccessory), [NeckAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/NeckAccessory) and [ShouldersAccessory](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/ShouldersAccessory), which are similar properties that apply accessories like this one
17973
+ *
17974
+ * Tags: NotReplicated
17919
17975
  */
17920
17976
  WaistAccessory: string;
17921
17977
  /**
@@ -28092,14 +28148,14 @@ interface PathfindingService extends Instance {
28092
28148
  * Tags: Yields
28093
28149
  * @deprecated Use `FindPathAsync` instead
28094
28150
  */
28095
- ComputeRawPathAsync(this: PathfindingService, start: Vector3, finish: Vector3, maxDistance: number): Instance | undefined;
28151
+ ComputeRawPathAsync(this: PathfindingService, start: Vector3, finish: Vector3, maxDistance: number): Path;
28096
28152
  /**
28097
28153
  * This function computes and returns a smooth [Path](https://developer.roblox.com/en-us/api-reference/class/Path) between two [Vector3s](https://developer.roblox.com/en-us/api-reference/datatype/Vector3). This function fulfills the same purpose as [PathfindingService:ComputeRawPathAsync](https://developer.roblox.com/en-us/api-reference/function/PathfindingService/ComputeRawPathAsync), but creates a much smoother path for an NPC to follow in comparison.
28098
28154
  *
28099
28155
  * Tags: Yields
28100
28156
  * @deprecated Use `FindPathAsync` instead
28101
28157
  */
28102
- ComputeSmoothPathAsync(this: PathfindingService, start: Vector3, finish: Vector3, maxDistance: number): Instance | undefined;
28158
+ ComputeSmoothPathAsync(this: PathfindingService, start: Vector3, finish: Vector3, maxDistance: number): Path;
28103
28159
  /**
28104
28160
  * This function is used to find a [Path](https://developer.roblox.com/en-us/api-reference/class/Path) between two provided points. This path uses the navigation grid created by [PathfindingService](https://developer.roblox.com/en-us/api-reference/class/PathfindingService) and makes sure that the path can be followed by a regular-sized Roblox character.
28105
28161
  *
@@ -31249,6 +31305,33 @@ interface ControllerPartSensor extends ControllerSensor {
31249
31305
  SensorMode: Enum.SensorMode;
31250
31306
  }
31251
31307
 
31308
+ interface FluidForceSensor extends SensorBase {
31309
+ /**
31310
+ * **DO NOT USE!**
31311
+ *
31312
+ * This field exists to force TypeScript to recognize this as a nominal type
31313
+ * @hidden
31314
+ * @deprecated
31315
+ */
31316
+ readonly _nominal_FluidForceSensor: unique symbol;
31317
+ /**
31318
+ * Tags: NotReplicated
31319
+ */
31320
+ readonly CenterOfPressure: Vector3;
31321
+ /**
31322
+ * Tags: NotReplicated
31323
+ */
31324
+ readonly Force: Vector3;
31325
+ /**
31326
+ * Tags: NotReplicated
31327
+ */
31328
+ readonly Torque: Vector3;
31329
+ /**
31330
+ * Tags: Yields
31331
+ */
31332
+ EvaluateAsync(this: FluidForceSensor, linearVelocity: Vector3, angularVelocity: Vector3, cframe: CFrame): unknown;
31333
+ }
31334
+
31252
31335
  /** **ServerScriptService** is a container service for [Script](https://developer.roblox.com/en-us/api-reference/class/Script), [ModuleScript](https://developer.roblox.com/en-us/api-reference/class/ModuleScript) and other scripting-related assets that are only meant for server use. The contents are never replicated to player clients at all, which allows for a secure storage of important game logic. Script objects will run if they are within this service and not [Disabled](https://developer.roblox.com/en-us/api-reference/property/BaseScript/Disabled).
31253
31336
  *
31254
31337
  * This service houses just one property, [LoadStringEnabled](https://developer.roblox.com/en-us/api-reference/property/ServerScriptService/LoadStringEnabled), which determines whether the `loadstring` function in Lua is enabled. It's recommended to keep this disabled for security reasons, as misusing this function can lead to remote code execution vulnerabilities.
@@ -3487,6 +3487,7 @@ interface Studio extends Instance {
3487
3487
  * Tags: NotReplicated
3488
3488
  */
3489
3489
  ["\"self\" Color"]: Color3;
3490
+ ActionOnStopSync: Enum.ActionOnStopSync;
3490
3491
  ["Active Color"]: Color3;
3491
3492
  ["Active Hover Over Color"]: Color3;
3492
3493
  ["Always Save Script Changes"]: boolean;
@@ -209,6 +209,35 @@ declare namespace Enum {
209
209
  }
210
210
  export type AccessoryType = AccessoryType.Unknown | AccessoryType.Hat | AccessoryType.Hair | AccessoryType.Face | AccessoryType.Neck | AccessoryType.Shoulder | AccessoryType.Front | AccessoryType.Back | AccessoryType.Waist | AccessoryType.TShirt | AccessoryType.Shirt | AccessoryType.Pants | AccessoryType.Jacket | AccessoryType.Sweater | AccessoryType.Shorts | AccessoryType.LeftShoe | AccessoryType.RightShoe | AccessoryType.DressSkirt | AccessoryType.Eyebrow | AccessoryType.Eyelash;
211
211
 
212
+ export namespace ActionOnStopSync {
213
+ export interface AlwaysAsk extends globalThis.EnumItem {
214
+ Name: "AlwaysAsk";
215
+ Value: 0;
216
+ EnumType: typeof globalThis.Enum.ActionOnStopSync;
217
+ }
218
+
219
+ export const AlwaysAsk: AlwaysAsk;
220
+
221
+ export interface KeepLocalFiles extends globalThis.EnumItem {
222
+ Name: "KeepLocalFiles";
223
+ Value: 1;
224
+ EnumType: typeof globalThis.Enum.ActionOnStopSync;
225
+ }
226
+
227
+ export const KeepLocalFiles: KeepLocalFiles;
228
+
229
+ export interface DeleteLocalFiles extends globalThis.EnumItem {
230
+ Name: "DeleteLocalFiles";
231
+ Value: 2;
232
+ EnumType: typeof globalThis.Enum.ActionOnStopSync;
233
+ }
234
+
235
+ export const DeleteLocalFiles: DeleteLocalFiles;
236
+
237
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ActionOnStopSync>;
238
+ }
239
+ export type ActionOnStopSync = ActionOnStopSync.AlwaysAsk | ActionOnStopSync.KeepLocalFiles | ActionOnStopSync.DeleteLocalFiles;
240
+
212
241
  export namespace ActionType {
213
242
  export interface Nothing extends globalThis.EnumItem {
214
243
  Name: "Nothing";
@@ -1311,9 +1340,17 @@ declare namespace Enum {
1311
1340
 
1312
1341
  export const Available: Available;
1313
1342
 
1343
+ export interface AvailableBoundChannel extends globalThis.EnumItem {
1344
+ Name: "AvailableBoundChannel";
1345
+ Value: 5;
1346
+ EnumType: typeof globalThis.Enum.AppUpdateStatus;
1347
+ }
1348
+
1349
+ export const AvailableBoundChannel: AvailableBoundChannel;
1350
+
1314
1351
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AppUpdateStatus>;
1315
1352
  }
1316
- export type AppUpdateStatus = AppUpdateStatus.Unknown | AppUpdateStatus.NotSupported | AppUpdateStatus.Failed | AppUpdateStatus.NotAvailable | AppUpdateStatus.Available;
1353
+ export type AppUpdateStatus = AppUpdateStatus.Unknown | AppUpdateStatus.NotSupported | AppUpdateStatus.Failed | AppUpdateStatus.NotAvailable | AppUpdateStatus.Available | AppUpdateStatus.AvailableBoundChannel;
1317
1354
 
1318
1355
  export namespace ApplyStrokeMode {
1319
1356
  export interface Contextual extends globalThis.EnumItem {
@@ -5153,6 +5190,14 @@ declare namespace Enum {
5153
5190
 
5154
5191
  export const ReplacementReady: ReplacementReady;
5155
5192
 
5193
+ export interface ServerEmpty extends globalThis.EnumItem {
5194
+ Name: "ServerEmpty";
5195
+ Value: 302;
5196
+ EnumType: typeof globalThis.Enum.ConnectionError;
5197
+ }
5198
+
5199
+ export const ServerEmpty: ServerEmpty;
5200
+
5156
5201
  export interface PlacelaunchErrors extends globalThis.EnumItem {
5157
5202
  Name: "PlacelaunchErrors";
5158
5203
  Value: 512;
@@ -5355,7 +5400,7 @@ declare namespace Enum {
5355
5400
 
5356
5401
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ConnectionError>;
5357
5402
  }
5358
- export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
5403
+ export type ConnectionError = ConnectionError.OK | ConnectionError.Unknown | ConnectionError.DisconnectErrors | ConnectionError.DisconnectBadhash | ConnectionError.DisconnectSecurityKeyMismatch | ConnectionError.DisconnectProtocolMismatch | ConnectionError.DisconnectReceivePacketError | ConnectionError.DisconnectReceivePacketStreamError | ConnectionError.DisconnectSendPacketError | ConnectionError.DisconnectIllegalTeleport | ConnectionError.DisconnectDuplicatePlayer | ConnectionError.DisconnectDuplicateTicket | ConnectionError.DisconnectTimeout | ConnectionError.DisconnectLuaKick | ConnectionError.DisconnectOnRemoteSysStats | ConnectionError.DisconnectHashTimeout | ConnectionError.DisconnectCloudEditKick | ConnectionError.DisconnectPlayerless | ConnectionError.DisconnectNewSecurityKeyMismatch | ConnectionError.DisconnectEvicted | ConnectionError.DisconnectDevMaintenance | ConnectionError.DisconnectRobloxMaintenance | ConnectionError.DisconnectRejoin | ConnectionError.DisconnectConnectionLost | ConnectionError.DisconnectIdle | ConnectionError.DisconnectRaknetErrors | ConnectionError.DisconnectWrongVersion | ConnectionError.DisconnectBySecurityPolicy | ConnectionError.DisconnectBlockedIP | ConnectionError.DisconnectClientFailure | ConnectionError.DisconnectClientRequest | ConnectionError.DisconnectPrivateServerKickout | ConnectionError.DisconnectModeratedGame | ConnectionError.ServerShutdown | ConnectionError.ReplicatorTimeout | ConnectionError.PlayerRemoved | ConnectionError.DisconnectOutOfMemoryKeepPlayingLeave | ConnectionError.DisconnectRomarkEndOfTest | ConnectionError.DisconnectCollaboratorPermissionRevoked | ConnectionError.DisconnectCollaboratorUnderage | ConnectionError.NetworkInternal | ConnectionError.NetworkSend | ConnectionError.NetworkTimeout | ConnectionError.NetworkMisbehavior | ConnectionError.NetworkSecurity | ConnectionError.ReplacementReady | ConnectionError.ServerEmpty | ConnectionError.PlacelaunchErrors | ConnectionError.PlacelaunchDisabled | ConnectionError.PlacelaunchError | ConnectionError.PlacelaunchGameEnded | ConnectionError.PlacelaunchGameFull | ConnectionError.PlacelaunchUserLeft | ConnectionError.PlacelaunchRestricted | ConnectionError.PlacelaunchUnauthorized | ConnectionError.PlacelaunchFlooded | ConnectionError.PlacelaunchHashExpired | ConnectionError.PlacelaunchHashException | ConnectionError.PlacelaunchPartyCannotFit | ConnectionError.PlacelaunchHttpError | ConnectionError.PlacelaunchUserPrivacyUnauthorized | ConnectionError.PlacelaunchCreatorBan | ConnectionError.PlacelaunchCustomMessage | ConnectionError.PlacelaunchOtherError | ConnectionError.TeleportErrors | ConnectionError.TeleportFailure | ConnectionError.TeleportGameNotFound | ConnectionError.TeleportGameEnded | ConnectionError.TeleportGameFull | ConnectionError.TeleportUnauthorized | ConnectionError.TeleportFlooded | ConnectionError.TeleportIsTeleporting;
5359
5404
 
5360
5405
  export namespace ConnectionState {
5361
5406
  export interface Connected extends globalThis.EnumItem {
@@ -6917,6 +6962,35 @@ declare namespace Enum {
6917
6962
  }
6918
6963
  export type EasingStyle = EasingStyle.Linear | EasingStyle.Sine | EasingStyle.Back | EasingStyle.Quad | EasingStyle.Quart | EasingStyle.Quint | EasingStyle.Bounce | EasingStyle.Elastic | EasingStyle.Exponential | EasingStyle.Circular | EasingStyle.Cubic;
6919
6964
 
6965
+ export namespace EditableStatus {
6966
+ export interface Unknown extends globalThis.EnumItem {
6967
+ Name: "Unknown";
6968
+ Value: 0;
6969
+ EnumType: typeof globalThis.Enum.EditableStatus;
6970
+ }
6971
+
6972
+ export const Unknown: Unknown;
6973
+
6974
+ export interface Allowed extends globalThis.EnumItem {
6975
+ Name: "Allowed";
6976
+ Value: 1;
6977
+ EnumType: typeof globalThis.Enum.EditableStatus;
6978
+ }
6979
+
6980
+ export const Allowed: Allowed;
6981
+
6982
+ export interface Disallowed extends globalThis.EnumItem {
6983
+ Name: "Disallowed";
6984
+ Value: 2;
6985
+ EnumType: typeof globalThis.Enum.EditableStatus;
6986
+ }
6987
+
6988
+ export const Disallowed: Disallowed;
6989
+
6990
+ export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.EditableStatus>;
6991
+ }
6992
+ export type EditableStatus = EditableStatus.Unknown | EditableStatus.Allowed | EditableStatus.Disallowed;
6993
+
6920
6994
  export namespace ElasticBehavior {
6921
6995
  export interface WhenScrollable extends globalThis.EnumItem {
6922
6996
  Name: "WhenScrollable";
@@ -17182,9 +17256,33 @@ declare namespace Enum {
17182
17256
 
17183
17257
  export const Avatar: Avatar;
17184
17258
 
17259
+ export interface Input extends globalThis.EnumItem {
17260
+ Name: "Input";
17261
+ Value: 17;
17262
+ EnumType: typeof globalThis.Enum.SecurityCapability;
17263
+ }
17264
+
17265
+ export const Input: Input;
17266
+
17267
+ export interface Environment extends globalThis.EnumItem {
17268
+ Name: "Environment";
17269
+ Value: 18;
17270
+ EnumType: typeof globalThis.Enum.SecurityCapability;
17271
+ }
17272
+
17273
+ export const Environment: Environment;
17274
+
17275
+ export interface RemoteEvent extends globalThis.EnumItem {
17276
+ Name: "RemoteEvent";
17277
+ Value: 19;
17278
+ EnumType: typeof globalThis.Enum.SecurityCapability;
17279
+ }
17280
+
17281
+ export const RemoteEvent: RemoteEvent;
17282
+
17185
17283
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
17186
17284
  }
17187
- export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar;
17285
+ export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent;
17188
17286
 
17189
17287
  export namespace SelectionBehavior {
17190
17288
  export interface Escape extends globalThis.EnumItem {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.807",
3
+ "version": "1.0.808",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },