@rbxts/types 1.0.807 → 1.0.809
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.
|
@@ -43,6 +43,7 @@ interface Services {
|
|
|
43
43
|
ConversationalAIAcceptanceService: ConversationalAIAcceptanceService;
|
|
44
44
|
CoreScriptDebuggingManagerHelper: CoreScriptDebuggingManagerHelper;
|
|
45
45
|
CreationDBService: CreationDBService;
|
|
46
|
+
CreatorStoreService: CreatorStoreService;
|
|
46
47
|
CrossDMScriptChangeListener: CrossDMScriptChangeListener;
|
|
47
48
|
DataModelPatchService: DataModelPatchService;
|
|
48
49
|
DataStoreService: DataStoreService;
|
|
@@ -52,6 +53,7 @@ interface Services {
|
|
|
52
53
|
DebuggerUIService: DebuggerUIService;
|
|
53
54
|
DeviceIdService: DeviceIdService;
|
|
54
55
|
DraggerService: DraggerService;
|
|
56
|
+
EditableService: EditableService;
|
|
55
57
|
EventIngestService: EventIngestService;
|
|
56
58
|
ExampleService: ExampleService;
|
|
57
59
|
ExperienceAuthService: ExperienceAuthService;
|
|
@@ -291,6 +293,7 @@ interface CreatableInstances {
|
|
|
291
293
|
EqualizerSoundEffect: EqualizerSoundEffect;
|
|
292
294
|
EulerRotationCurve: EulerRotationCurve;
|
|
293
295
|
ExperienceInviteOptions: ExperienceInviteOptions;
|
|
296
|
+
ExplorerFilterInstance: ExplorerFilterInstance;
|
|
294
297
|
Explosion: Explosion;
|
|
295
298
|
FaceControls: FaceControls;
|
|
296
299
|
FileMesh: FileMesh;
|
|
@@ -298,6 +301,7 @@ interface CreatableInstances {
|
|
|
298
301
|
FlangeSoundEffect: FlangeSoundEffect;
|
|
299
302
|
FloatCurve: FloatCurve;
|
|
300
303
|
FloorWire: FloorWire;
|
|
304
|
+
FluidForceSensor: FluidForceSensor;
|
|
301
305
|
Folder: Folder;
|
|
302
306
|
ForceField: ForceField;
|
|
303
307
|
Frame: Frame;
|
|
@@ -498,6 +502,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
498
502
|
CharacterAppearance: CharacterAppearance;
|
|
499
503
|
ChatInputBarConfiguration: ChatInputBarConfiguration;
|
|
500
504
|
ChatWindowConfiguration: ChatWindowConfiguration;
|
|
505
|
+
ChatWindowMessageProperties: ChatWindowMessageProperties;
|
|
501
506
|
Clothing: Clothing;
|
|
502
507
|
CloudLocalizationTable: CloudLocalizationTable;
|
|
503
508
|
Collaborator: Collaborator;
|
|
@@ -523,6 +528,7 @@ interface Instances extends Services, CreatableInstances {
|
|
|
523
528
|
DebuggerVariable: DebuggerVariable;
|
|
524
529
|
DynamicRotate: DynamicRotate;
|
|
525
530
|
EmotesPages: EmotesPages;
|
|
531
|
+
ExplorerFilterAutocompleterInstance: ExplorerFilterAutocompleterInstance;
|
|
526
532
|
FaceInstance: FaceInstance;
|
|
527
533
|
FacialAnimationStreamingServiceStats: FacialAnimationStreamingServiceStats;
|
|
528
534
|
FacialAnimationStreamingSubsessionStats: FacialAnimationStreamingSubsessionStats;
|
|
@@ -9793,6 +9799,17 @@ interface CreationDBService extends Instance {
|
|
|
9793
9799
|
readonly _nominal_CreationDBService: unique symbol;
|
|
9794
9800
|
}
|
|
9795
9801
|
|
|
9802
|
+
interface CreatorStoreService extends Instance {
|
|
9803
|
+
/**
|
|
9804
|
+
* **DO NOT USE!**
|
|
9805
|
+
*
|
|
9806
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
9807
|
+
* @hidden
|
|
9808
|
+
* @deprecated
|
|
9809
|
+
*/
|
|
9810
|
+
readonly _nominal_CreatorStoreService: unique symbol;
|
|
9811
|
+
}
|
|
9812
|
+
|
|
9796
9813
|
interface CrossDMScriptChangeListener extends Instance {
|
|
9797
9814
|
/**
|
|
9798
9815
|
* **DO NOT USE!**
|
|
@@ -9988,14 +10005,35 @@ interface EditableMesh extends DataModelMesh {
|
|
|
9988
10005
|
GetAdjacentVertices(this: EditableMesh, vertexId: number): Array<number>;
|
|
9989
10006
|
GetColor(this: EditableMesh, colorId: number): Color3 | undefined;
|
|
9990
10007
|
GetColorAlpha(this: EditableMesh, colorId: number): number | undefined;
|
|
10008
|
+
/**
|
|
10009
|
+
* Tags: CustomLuaState
|
|
10010
|
+
*/
|
|
9991
10011
|
GetColors(this: EditableMesh): unknown;
|
|
10012
|
+
/**
|
|
10013
|
+
* Tags: CustomLuaState
|
|
10014
|
+
*/
|
|
9992
10015
|
GetFaceColors(this: EditableMesh, faceId: number): unknown;
|
|
10016
|
+
/**
|
|
10017
|
+
* Tags: CustomLuaState
|
|
10018
|
+
*/
|
|
9993
10019
|
GetFaceNormals(this: EditableMesh, faceId: number): unknown;
|
|
10020
|
+
/**
|
|
10021
|
+
* Tags: CustomLuaState
|
|
10022
|
+
*/
|
|
9994
10023
|
GetFaceUVs(this: EditableMesh, faceId: number): unknown;
|
|
10024
|
+
/**
|
|
10025
|
+
* Tags: CustomLuaState
|
|
10026
|
+
*/
|
|
9995
10027
|
GetFaceVertices(this: EditableMesh, faceId: number): unknown;
|
|
10028
|
+
/**
|
|
10029
|
+
* Tags: CustomLuaState
|
|
10030
|
+
*/
|
|
9996
10031
|
GetFaces(this: EditableMesh): unknown;
|
|
9997
10032
|
GetFacesWithAttribute(this: EditableMesh, id: number): unknown;
|
|
9998
10033
|
GetNormal(this: EditableMesh, normalId: number): Vector3 | undefined;
|
|
10034
|
+
/**
|
|
10035
|
+
* Tags: CustomLuaState
|
|
10036
|
+
*/
|
|
9999
10037
|
GetNormals(this: EditableMesh): unknown;
|
|
10000
10038
|
GetPosition(this: EditableMesh, vertexId: number): Vector3;
|
|
10001
10039
|
/**
|
|
@@ -10007,6 +10045,9 @@ interface EditableMesh extends DataModelMesh {
|
|
|
10007
10045
|
*/
|
|
10008
10046
|
GetTriangles(this: EditableMesh): Array<number>;
|
|
10009
10047
|
GetUV(this: EditableMesh, uvId: number): Vector2 | undefined;
|
|
10048
|
+
/**
|
|
10049
|
+
* Tags: CustomLuaState
|
|
10050
|
+
*/
|
|
10010
10051
|
GetUVs(this: EditableMesh): unknown;
|
|
10011
10052
|
/**
|
|
10012
10053
|
* @deprecated
|
|
@@ -10038,9 +10079,21 @@ interface EditableMesh extends DataModelMesh {
|
|
|
10038
10079
|
ResetNormal(this: EditableMesh, normalId: number): void;
|
|
10039
10080
|
SetColor(this: EditableMesh, colorId: number, color: Color3): void;
|
|
10040
10081
|
SetColorAlpha(this: EditableMesh, colorId: number, alpha: number): void;
|
|
10082
|
+
/**
|
|
10083
|
+
* Tags: CustomLuaState
|
|
10084
|
+
*/
|
|
10041
10085
|
SetFaceColors(this: EditableMesh, faceId: number, ids: Array<any>): void;
|
|
10086
|
+
/**
|
|
10087
|
+
* Tags: CustomLuaState
|
|
10088
|
+
*/
|
|
10042
10089
|
SetFaceNormals(this: EditableMesh, faceId: number, ids: Array<any>): void;
|
|
10090
|
+
/**
|
|
10091
|
+
* Tags: CustomLuaState
|
|
10092
|
+
*/
|
|
10043
10093
|
SetFaceUVs(this: EditableMesh, faceId: number, ids: Array<any>): void;
|
|
10094
|
+
/**
|
|
10095
|
+
* Tags: CustomLuaState
|
|
10096
|
+
*/
|
|
10044
10097
|
SetFaceVertices(this: EditableMesh, faceId: number, ids: Array<any>): void;
|
|
10045
10098
|
SetNormal(this: EditableMesh, normalId: number, normal: Vector3): void;
|
|
10046
10099
|
SetPosition(this: EditableMesh, vertexId: number, p: Vector3): void;
|
|
@@ -11014,6 +11067,17 @@ interface RobloxEditableImage extends EditableImage {
|
|
|
11014
11067
|
readonly _nominal_RobloxEditableImage: unique symbol;
|
|
11015
11068
|
}
|
|
11016
11069
|
|
|
11070
|
+
interface EditableService extends Instance {
|
|
11071
|
+
/**
|
|
11072
|
+
* **DO NOT USE!**
|
|
11073
|
+
*
|
|
11074
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11075
|
+
* @hidden
|
|
11076
|
+
* @deprecated
|
|
11077
|
+
*/
|
|
11078
|
+
readonly _nominal_EditableService: unique symbol;
|
|
11079
|
+
}
|
|
11080
|
+
|
|
11017
11081
|
/** 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
11082
|
interface EulerRotationCurve extends Instance {
|
|
11019
11083
|
/**
|
|
@@ -11137,6 +11201,42 @@ interface ExperienceStateCaptureService extends Instance {
|
|
|
11137
11201
|
readonly _nominal_ExperienceStateCaptureService: unique symbol;
|
|
11138
11202
|
}
|
|
11139
11203
|
|
|
11204
|
+
interface ExplorerFilterAutocompleterInstance extends Instance {
|
|
11205
|
+
/**
|
|
11206
|
+
* **DO NOT USE!**
|
|
11207
|
+
*
|
|
11208
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11209
|
+
* @hidden
|
|
11210
|
+
* @deprecated
|
|
11211
|
+
*/
|
|
11212
|
+
readonly _nominal_ExplorerFilterAutocompleterInstance: unique symbol;
|
|
11213
|
+
/**
|
|
11214
|
+
* Tags: NotReplicated
|
|
11215
|
+
*/
|
|
11216
|
+
readonly ReplaceRange: Vector2;
|
|
11217
|
+
/**
|
|
11218
|
+
* Tags: NotReplicated
|
|
11219
|
+
*/
|
|
11220
|
+
readonly RequiresOutsideContext: boolean;
|
|
11221
|
+
GetSuggestions(this: ExplorerFilterAutocompleterInstance): unknown;
|
|
11222
|
+
}
|
|
11223
|
+
|
|
11224
|
+
interface ExplorerFilterInstance extends Instance {
|
|
11225
|
+
/**
|
|
11226
|
+
* **DO NOT USE!**
|
|
11227
|
+
*
|
|
11228
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
11229
|
+
* @hidden
|
|
11230
|
+
* @deprecated
|
|
11231
|
+
*/
|
|
11232
|
+
readonly _nominal_ExplorerFilterInstance: unique symbol;
|
|
11233
|
+
GetAutocompleter(this: ExplorerFilterInstance): ExplorerFilterAutocompleterInstance;
|
|
11234
|
+
GetErrors(this: ExplorerFilterInstance): unknown;
|
|
11235
|
+
GetLexemes(this: ExplorerFilterInstance): unknown;
|
|
11236
|
+
InstancePassesFilter(this: ExplorerFilterInstance, instance: Instance): boolean;
|
|
11237
|
+
SetFilter(this: ExplorerFilterInstance, search: string): void;
|
|
11238
|
+
}
|
|
11239
|
+
|
|
11140
11240
|
/** An Explosion applies force to `BaseParts` within the explosion's [Explosion.BlastRadius](https://developer.roblox.com/en-us/api-reference/property/Explosion/BlastRadius). This force breaks joints between parts and kills [Humanoid](https://developer.roblox.com/en-us/api-reference/class/Humanoid) characters not protected by a [ForceField](https://developer.roblox.com/en-us/api-reference/class/ForceField).
|
|
11141
11241
|
*
|
|
11142
11242
|
* If an explosion is instanced whilst the game is running, it will destroy itself shortly afterwards meaning they do not need to be cleaned up using the [Debris](https://developer.roblox.com/en-us/api-reference/class/Debris) service.
|
|
@@ -15839,10 +15939,12 @@ interface GuiService extends Instance {
|
|
|
15839
15939
|
* Creates a gui selection group where gamepad gui navigation will only consider selectable gui objects that are within the group (children of selectionParent).
|
|
15840
15940
|
*
|
|
15841
15941
|
* 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.
|
|
15942
|
+
* @deprecated Use `SelectionGroup` instead
|
|
15842
15943
|
*/
|
|
15843
15944
|
AddSelectionParent(this: GuiService, selectionName: string, selectionParent: GuiObject): void;
|
|
15844
15945
|
/**
|
|
15845
15946
|
* 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.
|
|
15947
|
+
* @deprecated Use `SelectionGroup` instead
|
|
15846
15948
|
*/
|
|
15847
15949
|
AddSelectionTuple(this: GuiService, selectionName: string, selections: Array<GuiObject>): void;
|
|
15848
15950
|
/**
|
|
@@ -15929,6 +16031,7 @@ interface GuiService extends Instance {
|
|
|
15929
16031
|
IsTenFootInterface(this: GuiService): boolean;
|
|
15930
16032
|
/**
|
|
15931
16033
|
* 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).
|
|
16034
|
+
* @deprecated Use `SelectionGroup` instead
|
|
15932
16035
|
*/
|
|
15933
16036
|
RemoveSelectionGroup(this: GuiService, selectionName: string): void;
|
|
15934
16037
|
Select(this: GuiService, selectionParent: Instance): void;
|
|
@@ -17467,6 +17570,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17467
17570
|
*
|
|
17468
17571
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17469
17572
|
* * [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
|
|
17573
|
+
*
|
|
17574
|
+
* Tags: NotReplicated
|
|
17470
17575
|
*/
|
|
17471
17576
|
BackAccessory: string;
|
|
17472
17577
|
/**
|
|
@@ -17536,6 +17641,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17536
17641
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17537
17642
|
* * [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
17643
|
* * [Face](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Face), a property that determines what Face texture is used on the head
|
|
17644
|
+
*
|
|
17645
|
+
* Tags: NotReplicated
|
|
17539
17646
|
*/
|
|
17540
17647
|
FaceAccessory: string;
|
|
17541
17648
|
/**
|
|
@@ -17558,6 +17665,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17558
17665
|
*
|
|
17559
17666
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17560
17667
|
* * [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
|
|
17668
|
+
*
|
|
17669
|
+
* Tags: NotReplicated
|
|
17561
17670
|
*/
|
|
17562
17671
|
FrontAccessory: string;
|
|
17563
17672
|
/**
|
|
@@ -17583,6 +17692,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17583
17692
|
*
|
|
17584
17693
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17585
17694
|
* * [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
|
|
17695
|
+
*
|
|
17696
|
+
* Tags: NotReplicated
|
|
17586
17697
|
*/
|
|
17587
17698
|
HairAccessory: string;
|
|
17588
17699
|
/**
|
|
@@ -17595,6 +17706,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17595
17706
|
*
|
|
17596
17707
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17597
17708
|
* * [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
|
|
17709
|
+
*
|
|
17710
|
+
* Tags: NotReplicated
|
|
17598
17711
|
*/
|
|
17599
17712
|
HatAccessory: string;
|
|
17600
17713
|
/**
|
|
@@ -17607,6 +17720,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17607
17720
|
* * [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
17721
|
* * [HeadColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/HeadColor), which controls the color of this limb
|
|
17609
17722
|
* * [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
|
|
17723
|
+
*
|
|
17724
|
+
* Tags: NotReplicated
|
|
17610
17725
|
*/
|
|
17611
17726
|
Head: number;
|
|
17612
17727
|
/**
|
|
@@ -17619,6 +17734,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17619
17734
|
* * [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
17735
|
* * [Head](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Head), which controls the mesh used for the head
|
|
17621
17736
|
* * [Face](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Face), which applies a texture to the front of the head
|
|
17737
|
+
*
|
|
17738
|
+
* Tags: NotReplicated
|
|
17622
17739
|
*/
|
|
17623
17740
|
HeadColor: Color3;
|
|
17624
17741
|
/**
|
|
@@ -17680,6 +17797,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17680
17797
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17681
17798
|
* * [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
17799
|
* * [LeftArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArmColor), which controls the color of this limb
|
|
17800
|
+
*
|
|
17801
|
+
* Tags: NotReplicated
|
|
17683
17802
|
*/
|
|
17684
17803
|
LeftArm: number;
|
|
17685
17804
|
/**
|
|
@@ -17692,6 +17811,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17692
17811
|
* * [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
17812
|
* * [LeftArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftArm), which controls the mesh used for this limb
|
|
17694
17813
|
* * [Shirt](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Shirt), which can apply a texture to this limb
|
|
17814
|
+
*
|
|
17815
|
+
* Tags: NotReplicated
|
|
17695
17816
|
*/
|
|
17696
17817
|
LeftArmColor: Color3;
|
|
17697
17818
|
/**
|
|
@@ -17703,6 +17824,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17703
17824
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17704
17825
|
* * [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
17826
|
* * [LeftLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLegColor), which controls the color of this limb
|
|
17827
|
+
*
|
|
17828
|
+
* Tags: NotReplicated
|
|
17706
17829
|
*/
|
|
17707
17830
|
LeftLeg: number;
|
|
17708
17831
|
/**
|
|
@@ -17715,6 +17838,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17715
17838
|
* * [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
17839
|
* * [LeftLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/LeftLeg), which controls the mesh used for this limb
|
|
17717
17840
|
* * [Pants](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Pants), which can apply a texture to this limb
|
|
17841
|
+
*
|
|
17842
|
+
* Tags: NotReplicated
|
|
17718
17843
|
*/
|
|
17719
17844
|
LeftLegColor: Color3;
|
|
17720
17845
|
MoodAnimation: number;
|
|
@@ -17728,6 +17853,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17728
17853
|
*
|
|
17729
17854
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17730
17855
|
* * [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
|
|
17856
|
+
*
|
|
17857
|
+
* Tags: NotReplicated
|
|
17731
17858
|
*/
|
|
17732
17859
|
NeckAccessory: string;
|
|
17733
17860
|
/**
|
|
@@ -17800,6 +17927,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17800
17927
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17801
17928
|
* * [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
17929
|
* * [RightArmColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArmColor), which controls the color of this limb
|
|
17930
|
+
*
|
|
17931
|
+
* Tags: NotReplicated
|
|
17803
17932
|
*/
|
|
17804
17933
|
RightArm: number;
|
|
17805
17934
|
/**
|
|
@@ -17812,6 +17941,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17812
17941
|
* * [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
17942
|
* * [RightArm](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightArm), which controls the mesh used for this limb
|
|
17814
17943
|
* * [Shirt](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Shirt), which can apply a texture to this limb
|
|
17944
|
+
*
|
|
17945
|
+
* Tags: NotReplicated
|
|
17815
17946
|
*/
|
|
17816
17947
|
RightArmColor: Color3;
|
|
17817
17948
|
/**
|
|
@@ -17823,6 +17954,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17823
17954
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17824
17955
|
* * [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
17956
|
* * [RightLegColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLegColor), which controls the color of this limb
|
|
17957
|
+
*
|
|
17958
|
+
* Tags: NotReplicated
|
|
17826
17959
|
*/
|
|
17827
17960
|
RightLeg: number;
|
|
17828
17961
|
/**
|
|
@@ -17835,6 +17968,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17835
17968
|
* * [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
17969
|
* * [RightLeg](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/RightLeg), which controls the mesh used for this limb
|
|
17837
17970
|
* * [Pants](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Pants), which can apply a texture to this limb
|
|
17971
|
+
*
|
|
17972
|
+
* Tags: NotReplicated
|
|
17838
17973
|
*/
|
|
17839
17974
|
RightLegColor: Color3;
|
|
17840
17975
|
/**
|
|
@@ -17871,6 +18006,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17871
18006
|
*
|
|
17872
18007
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17873
18008
|
* * [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
|
|
18009
|
+
*
|
|
18010
|
+
* Tags: NotReplicated
|
|
17874
18011
|
*/
|
|
17875
18012
|
ShouldersAccessory: string;
|
|
17876
18013
|
/**
|
|
@@ -17892,6 +18029,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17892
18029
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17893
18030
|
* * [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
18031
|
* * [TorsoColor](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/TorsoColor), which controls the color of this limb
|
|
18032
|
+
*
|
|
18033
|
+
* Tags: NotReplicated
|
|
17895
18034
|
*/
|
|
17896
18035
|
Torso: number;
|
|
17897
18036
|
/**
|
|
@@ -17904,6 +18043,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17904
18043
|
* * [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
18044
|
* * [Torso](https://developer.roblox.com/en-us/api-reference/property/HumanoidDescription/Torso), which controls the mesh used for this body part
|
|
17906
18045
|
* * [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
|
|
18046
|
+
*
|
|
18047
|
+
* Tags: NotReplicated
|
|
17907
18048
|
*/
|
|
17908
18049
|
TorsoColor: Color3;
|
|
17909
18050
|
/**
|
|
@@ -17916,6 +18057,8 @@ interface HumanoidDescription extends Instance {
|
|
|
17916
18057
|
*
|
|
17917
18058
|
* * [HumanoidDescription System](https://developer.roblox.com/en-us/articles/humanoiddescription-system), for more information on HumanoidDescriptions
|
|
17918
18059
|
* * [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
|
|
18060
|
+
*
|
|
18061
|
+
* Tags: NotReplicated
|
|
17919
18062
|
*/
|
|
17920
18063
|
WaistAccessory: string;
|
|
17921
18064
|
/**
|
|
@@ -28092,14 +28235,14 @@ interface PathfindingService extends Instance {
|
|
|
28092
28235
|
* Tags: Yields
|
|
28093
28236
|
* @deprecated Use `FindPathAsync` instead
|
|
28094
28237
|
*/
|
|
28095
|
-
ComputeRawPathAsync(this: PathfindingService, start: Vector3, finish: Vector3, maxDistance: number):
|
|
28238
|
+
ComputeRawPathAsync(this: PathfindingService, start: Vector3, finish: Vector3, maxDistance: number): Path;
|
|
28096
28239
|
/**
|
|
28097
28240
|
* 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
28241
|
*
|
|
28099
28242
|
* Tags: Yields
|
|
28100
28243
|
* @deprecated Use `FindPathAsync` instead
|
|
28101
28244
|
*/
|
|
28102
|
-
ComputeSmoothPathAsync(this: PathfindingService, start: Vector3, finish: Vector3, maxDistance: number):
|
|
28245
|
+
ComputeSmoothPathAsync(this: PathfindingService, start: Vector3, finish: Vector3, maxDistance: number): Path;
|
|
28103
28246
|
/**
|
|
28104
28247
|
* 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
28248
|
*
|
|
@@ -31249,6 +31392,33 @@ interface ControllerPartSensor extends ControllerSensor {
|
|
|
31249
31392
|
SensorMode: Enum.SensorMode;
|
|
31250
31393
|
}
|
|
31251
31394
|
|
|
31395
|
+
interface FluidForceSensor extends SensorBase {
|
|
31396
|
+
/**
|
|
31397
|
+
* **DO NOT USE!**
|
|
31398
|
+
*
|
|
31399
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
31400
|
+
* @hidden
|
|
31401
|
+
* @deprecated
|
|
31402
|
+
*/
|
|
31403
|
+
readonly _nominal_FluidForceSensor: unique symbol;
|
|
31404
|
+
/**
|
|
31405
|
+
* Tags: NotReplicated
|
|
31406
|
+
*/
|
|
31407
|
+
readonly CenterOfPressure: Vector3;
|
|
31408
|
+
/**
|
|
31409
|
+
* Tags: NotReplicated
|
|
31410
|
+
*/
|
|
31411
|
+
readonly Force: Vector3;
|
|
31412
|
+
/**
|
|
31413
|
+
* Tags: NotReplicated
|
|
31414
|
+
*/
|
|
31415
|
+
readonly Torque: Vector3;
|
|
31416
|
+
/**
|
|
31417
|
+
* Tags: Yields
|
|
31418
|
+
*/
|
|
31419
|
+
EvaluateAsync(this: FluidForceSensor, linearVelocity: Vector3, angularVelocity: Vector3, cframe: CFrame): unknown;
|
|
31420
|
+
}
|
|
31421
|
+
|
|
31252
31422
|
/** **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
31423
|
*
|
|
31254
31424
|
* 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.
|
|
@@ -35107,6 +35277,7 @@ interface TextChatMessage extends Instance {
|
|
|
35107
35277
|
*/
|
|
35108
35278
|
readonly _nominal_TextChatMessage: unique symbol;
|
|
35109
35279
|
BubbleChatMessageProperties: BubbleChatMessageProperties | undefined;
|
|
35280
|
+
ChatWindowMessageProperties: ChatWindowMessageProperties | undefined;
|
|
35110
35281
|
MessageId: string;
|
|
35111
35282
|
Metadata: string;
|
|
35112
35283
|
PrefixText: string;
|
|
@@ -35132,6 +35303,23 @@ interface TextChatMessageProperties extends Instance {
|
|
|
35132
35303
|
Translation: string;
|
|
35133
35304
|
}
|
|
35134
35305
|
|
|
35306
|
+
interface ChatWindowMessageProperties extends TextChatMessageProperties {
|
|
35307
|
+
/**
|
|
35308
|
+
* **DO NOT USE!**
|
|
35309
|
+
*
|
|
35310
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
35311
|
+
* @hidden
|
|
35312
|
+
* @deprecated
|
|
35313
|
+
*/
|
|
35314
|
+
readonly _nominal_ChatWindowMessageProperties: unique symbol;
|
|
35315
|
+
FontFace: Font;
|
|
35316
|
+
PrefixTextProperties: ChatWindowMessageProperties | undefined;
|
|
35317
|
+
TextColor3: Color3;
|
|
35318
|
+
TextSize: number;
|
|
35319
|
+
TextStrokeColor3: Color3;
|
|
35320
|
+
TextStrokeTransparency: number;
|
|
35321
|
+
}
|
|
35322
|
+
|
|
35135
35323
|
interface TextChatService extends Instance {
|
|
35136
35324
|
/**
|
|
35137
35325
|
* **DO NOT USE!**
|
|
@@ -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";
|
|
@@ -1079,6 +1108,35 @@ declare namespace Enum {
|
|
|
1079
1108
|
}
|
|
1080
1109
|
export type AnimatorRetargetingMode = AnimatorRetargetingMode.Default | AnimatorRetargetingMode.Disabled | AnimatorRetargetingMode.Enabled;
|
|
1081
1110
|
|
|
1111
|
+
export namespace AnnotationEditingMode {
|
|
1112
|
+
export interface None extends globalThis.EnumItem {
|
|
1113
|
+
Name: "None";
|
|
1114
|
+
Value: 0;
|
|
1115
|
+
EnumType: typeof globalThis.Enum.AnnotationEditingMode;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
export const None: None;
|
|
1119
|
+
|
|
1120
|
+
export interface PlacingNew extends globalThis.EnumItem {
|
|
1121
|
+
Name: "PlacingNew";
|
|
1122
|
+
Value: 1;
|
|
1123
|
+
EnumType: typeof globalThis.Enum.AnnotationEditingMode;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
export const PlacingNew: PlacingNew;
|
|
1127
|
+
|
|
1128
|
+
export interface WritingNew extends globalThis.EnumItem {
|
|
1129
|
+
Name: "WritingNew";
|
|
1130
|
+
Value: 2;
|
|
1131
|
+
EnumType: typeof globalThis.Enum.AnnotationEditingMode;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
export const WritingNew: WritingNew;
|
|
1135
|
+
|
|
1136
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnnotationEditingMode>;
|
|
1137
|
+
}
|
|
1138
|
+
export type AnnotationEditingMode = AnnotationEditingMode.None | AnnotationEditingMode.PlacingNew | AnnotationEditingMode.WritingNew;
|
|
1139
|
+
|
|
1082
1140
|
export namespace AppLifecycleManagerState {
|
|
1083
1141
|
export interface Detached extends globalThis.EnumItem {
|
|
1084
1142
|
Name: "Detached";
|
|
@@ -1311,9 +1369,17 @@ declare namespace Enum {
|
|
|
1311
1369
|
|
|
1312
1370
|
export const Available: Available;
|
|
1313
1371
|
|
|
1372
|
+
export interface AvailableBoundChannel extends globalThis.EnumItem {
|
|
1373
|
+
Name: "AvailableBoundChannel";
|
|
1374
|
+
Value: 5;
|
|
1375
|
+
EnumType: typeof globalThis.Enum.AppUpdateStatus;
|
|
1376
|
+
}
|
|
1377
|
+
|
|
1378
|
+
export const AvailableBoundChannel: AvailableBoundChannel;
|
|
1379
|
+
|
|
1314
1380
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AppUpdateStatus>;
|
|
1315
1381
|
}
|
|
1316
|
-
export type AppUpdateStatus = AppUpdateStatus.Unknown | AppUpdateStatus.NotSupported | AppUpdateStatus.Failed | AppUpdateStatus.NotAvailable | AppUpdateStatus.Available;
|
|
1382
|
+
export type AppUpdateStatus = AppUpdateStatus.Unknown | AppUpdateStatus.NotSupported | AppUpdateStatus.Failed | AppUpdateStatus.NotAvailable | AppUpdateStatus.Available | AppUpdateStatus.AvailableBoundChannel;
|
|
1317
1383
|
|
|
1318
1384
|
export namespace ApplyStrokeMode {
|
|
1319
1385
|
export interface Contextual extends globalThis.EnumItem {
|
|
@@ -4119,6 +4185,35 @@ declare namespace Enum {
|
|
|
4119
4185
|
}
|
|
4120
4186
|
export type ChatPrivacyMode = ChatPrivacyMode.AllUsers | ChatPrivacyMode.NoOne | ChatPrivacyMode.Friends;
|
|
4121
4187
|
|
|
4188
|
+
export namespace ChatRestrictionStatus {
|
|
4189
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
4190
|
+
Name: "Unknown";
|
|
4191
|
+
Value: 0;
|
|
4192
|
+
EnumType: typeof globalThis.Enum.ChatRestrictionStatus;
|
|
4193
|
+
}
|
|
4194
|
+
|
|
4195
|
+
export const Unknown: Unknown;
|
|
4196
|
+
|
|
4197
|
+
export interface NotRestricted extends globalThis.EnumItem {
|
|
4198
|
+
Name: "NotRestricted";
|
|
4199
|
+
Value: 1;
|
|
4200
|
+
EnumType: typeof globalThis.Enum.ChatRestrictionStatus;
|
|
4201
|
+
}
|
|
4202
|
+
|
|
4203
|
+
export const NotRestricted: NotRestricted;
|
|
4204
|
+
|
|
4205
|
+
export interface Restricted extends globalThis.EnumItem {
|
|
4206
|
+
Name: "Restricted";
|
|
4207
|
+
Value: 2;
|
|
4208
|
+
EnumType: typeof globalThis.Enum.ChatRestrictionStatus;
|
|
4209
|
+
}
|
|
4210
|
+
|
|
4211
|
+
export const Restricted: Restricted;
|
|
4212
|
+
|
|
4213
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ChatRestrictionStatus>;
|
|
4214
|
+
}
|
|
4215
|
+
export type ChatRestrictionStatus = ChatRestrictionStatus.Unknown | ChatRestrictionStatus.NotRestricted | ChatRestrictionStatus.Restricted;
|
|
4216
|
+
|
|
4122
4217
|
export namespace ChatStyle {
|
|
4123
4218
|
export interface Classic extends globalThis.EnumItem {
|
|
4124
4219
|
Name: "Classic";
|
|
@@ -5153,6 +5248,14 @@ declare namespace Enum {
|
|
|
5153
5248
|
|
|
5154
5249
|
export const ReplacementReady: ReplacementReady;
|
|
5155
5250
|
|
|
5251
|
+
export interface ServerEmpty extends globalThis.EnumItem {
|
|
5252
|
+
Name: "ServerEmpty";
|
|
5253
|
+
Value: 302;
|
|
5254
|
+
EnumType: typeof globalThis.Enum.ConnectionError;
|
|
5255
|
+
}
|
|
5256
|
+
|
|
5257
|
+
export const ServerEmpty: ServerEmpty;
|
|
5258
|
+
|
|
5156
5259
|
export interface PlacelaunchErrors extends globalThis.EnumItem {
|
|
5157
5260
|
Name: "PlacelaunchErrors";
|
|
5158
5261
|
Value: 512;
|
|
@@ -5355,7 +5458,7 @@ declare namespace Enum {
|
|
|
5355
5458
|
|
|
5356
5459
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.ConnectionError>;
|
|
5357
5460
|
}
|
|
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;
|
|
5461
|
+
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
5462
|
|
|
5360
5463
|
export namespace ConnectionState {
|
|
5361
5464
|
export interface Connected extends globalThis.EnumItem {
|
|
@@ -6917,6 +7020,35 @@ declare namespace Enum {
|
|
|
6917
7020
|
}
|
|
6918
7021
|
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
7022
|
|
|
7023
|
+
export namespace EditableStatus {
|
|
7024
|
+
export interface Unknown extends globalThis.EnumItem {
|
|
7025
|
+
Name: "Unknown";
|
|
7026
|
+
Value: 0;
|
|
7027
|
+
EnumType: typeof globalThis.Enum.EditableStatus;
|
|
7028
|
+
}
|
|
7029
|
+
|
|
7030
|
+
export const Unknown: Unknown;
|
|
7031
|
+
|
|
7032
|
+
export interface Allowed extends globalThis.EnumItem {
|
|
7033
|
+
Name: "Allowed";
|
|
7034
|
+
Value: 1;
|
|
7035
|
+
EnumType: typeof globalThis.Enum.EditableStatus;
|
|
7036
|
+
}
|
|
7037
|
+
|
|
7038
|
+
export const Allowed: Allowed;
|
|
7039
|
+
|
|
7040
|
+
export interface Disallowed extends globalThis.EnumItem {
|
|
7041
|
+
Name: "Disallowed";
|
|
7042
|
+
Value: 2;
|
|
7043
|
+
EnumType: typeof globalThis.Enum.EditableStatus;
|
|
7044
|
+
}
|
|
7045
|
+
|
|
7046
|
+
export const Disallowed: Disallowed;
|
|
7047
|
+
|
|
7048
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.EditableStatus>;
|
|
7049
|
+
}
|
|
7050
|
+
export type EditableStatus = EditableStatus.Unknown | EditableStatus.Allowed | EditableStatus.Disallowed;
|
|
7051
|
+
|
|
6920
7052
|
export namespace ElasticBehavior {
|
|
6921
7053
|
export interface WhenScrollable extends globalThis.EnumItem {
|
|
6922
7054
|
Name: "WhenScrollable";
|
|
@@ -7175,6 +7307,163 @@ declare namespace Enum {
|
|
|
7175
7307
|
}
|
|
7176
7308
|
export type FillDirection = FillDirection.Horizontal | FillDirection.Vertical;
|
|
7177
7309
|
|
|
7310
|
+
export namespace FilterErrorType {
|
|
7311
|
+
export interface BackslashNotEscapingAnything extends globalThis.EnumItem {
|
|
7312
|
+
Name: "BackslashNotEscapingAnything";
|
|
7313
|
+
Value: 0;
|
|
7314
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7315
|
+
}
|
|
7316
|
+
|
|
7317
|
+
export const BackslashNotEscapingAnything: BackslashNotEscapingAnything;
|
|
7318
|
+
|
|
7319
|
+
export interface BadBespokeFilter extends globalThis.EnumItem {
|
|
7320
|
+
Name: "BadBespokeFilter";
|
|
7321
|
+
Value: 1;
|
|
7322
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7323
|
+
}
|
|
7324
|
+
|
|
7325
|
+
export const BadBespokeFilter: BadBespokeFilter;
|
|
7326
|
+
|
|
7327
|
+
export interface BadName extends globalThis.EnumItem {
|
|
7328
|
+
Name: "BadName";
|
|
7329
|
+
Value: 2;
|
|
7330
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7331
|
+
}
|
|
7332
|
+
|
|
7333
|
+
export const BadName: BadName;
|
|
7334
|
+
|
|
7335
|
+
export interface IncompleteOr extends globalThis.EnumItem {
|
|
7336
|
+
Name: "IncompleteOr";
|
|
7337
|
+
Value: 3;
|
|
7338
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7339
|
+
}
|
|
7340
|
+
|
|
7341
|
+
export const IncompleteOr: IncompleteOr;
|
|
7342
|
+
|
|
7343
|
+
export interface IncompleteParenthesis extends globalThis.EnumItem {
|
|
7344
|
+
Name: "IncompleteParenthesis";
|
|
7345
|
+
Value: 4;
|
|
7346
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7347
|
+
}
|
|
7348
|
+
|
|
7349
|
+
export const IncompleteParenthesis: IncompleteParenthesis;
|
|
7350
|
+
|
|
7351
|
+
export interface InvalidDoubleStar extends globalThis.EnumItem {
|
|
7352
|
+
Name: "InvalidDoubleStar";
|
|
7353
|
+
Value: 5;
|
|
7354
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7355
|
+
}
|
|
7356
|
+
|
|
7357
|
+
export const InvalidDoubleStar: InvalidDoubleStar;
|
|
7358
|
+
|
|
7359
|
+
export interface InvalidTilde extends globalThis.EnumItem {
|
|
7360
|
+
Name: "InvalidTilde";
|
|
7361
|
+
Value: 6;
|
|
7362
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7363
|
+
}
|
|
7364
|
+
|
|
7365
|
+
export const InvalidTilde: InvalidTilde;
|
|
7366
|
+
|
|
7367
|
+
export interface PropertyBadOperator extends globalThis.EnumItem {
|
|
7368
|
+
Name: "PropertyBadOperator";
|
|
7369
|
+
Value: 7;
|
|
7370
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7371
|
+
}
|
|
7372
|
+
|
|
7373
|
+
export const PropertyBadOperator: PropertyBadOperator;
|
|
7374
|
+
|
|
7375
|
+
export interface PropertyDoesNotExist extends globalThis.EnumItem {
|
|
7376
|
+
Name: "PropertyDoesNotExist";
|
|
7377
|
+
Value: 8;
|
|
7378
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7379
|
+
}
|
|
7380
|
+
|
|
7381
|
+
export const PropertyDoesNotExist: PropertyDoesNotExist;
|
|
7382
|
+
|
|
7383
|
+
export interface PropertyInvalidField extends globalThis.EnumItem {
|
|
7384
|
+
Name: "PropertyInvalidField";
|
|
7385
|
+
Value: 9;
|
|
7386
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7387
|
+
}
|
|
7388
|
+
|
|
7389
|
+
export const PropertyInvalidField: PropertyInvalidField;
|
|
7390
|
+
|
|
7391
|
+
export interface PropertyInvalidValue extends globalThis.EnumItem {
|
|
7392
|
+
Name: "PropertyInvalidValue";
|
|
7393
|
+
Value: 10;
|
|
7394
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7395
|
+
}
|
|
7396
|
+
|
|
7397
|
+
export const PropertyInvalidValue: PropertyInvalidValue;
|
|
7398
|
+
|
|
7399
|
+
export interface PropertyUnsupportedFields extends globalThis.EnumItem {
|
|
7400
|
+
Name: "PropertyUnsupportedFields";
|
|
7401
|
+
Value: 11;
|
|
7402
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7403
|
+
}
|
|
7404
|
+
|
|
7405
|
+
export const PropertyUnsupportedFields: PropertyUnsupportedFields;
|
|
7406
|
+
|
|
7407
|
+
export interface PropertyUnsupportedProperty extends globalThis.EnumItem {
|
|
7408
|
+
Name: "PropertyUnsupportedProperty";
|
|
7409
|
+
Value: 12;
|
|
7410
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7411
|
+
}
|
|
7412
|
+
|
|
7413
|
+
export const PropertyUnsupportedProperty: PropertyUnsupportedProperty;
|
|
7414
|
+
|
|
7415
|
+
export interface UnexpectedNameIndex extends globalThis.EnumItem {
|
|
7416
|
+
Name: "UnexpectedNameIndex";
|
|
7417
|
+
Value: 13;
|
|
7418
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7419
|
+
}
|
|
7420
|
+
|
|
7421
|
+
export const UnexpectedNameIndex: UnexpectedNameIndex;
|
|
7422
|
+
|
|
7423
|
+
export interface UnexpectedToken extends globalThis.EnumItem {
|
|
7424
|
+
Name: "UnexpectedToken";
|
|
7425
|
+
Value: 14;
|
|
7426
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7427
|
+
}
|
|
7428
|
+
|
|
7429
|
+
export const UnexpectedToken: UnexpectedToken;
|
|
7430
|
+
|
|
7431
|
+
export interface UnfinishedBinaryOperator extends globalThis.EnumItem {
|
|
7432
|
+
Name: "UnfinishedBinaryOperator";
|
|
7433
|
+
Value: 15;
|
|
7434
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7435
|
+
}
|
|
7436
|
+
|
|
7437
|
+
export const UnfinishedBinaryOperator: UnfinishedBinaryOperator;
|
|
7438
|
+
|
|
7439
|
+
export interface UnfinishedQuote extends globalThis.EnumItem {
|
|
7440
|
+
Name: "UnfinishedQuote";
|
|
7441
|
+
Value: 16;
|
|
7442
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7443
|
+
}
|
|
7444
|
+
|
|
7445
|
+
export const UnfinishedQuote: UnfinishedQuote;
|
|
7446
|
+
|
|
7447
|
+
export interface UnknownBespokeFilter extends globalThis.EnumItem {
|
|
7448
|
+
Name: "UnknownBespokeFilter";
|
|
7449
|
+
Value: 17;
|
|
7450
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7451
|
+
}
|
|
7452
|
+
|
|
7453
|
+
export const UnknownBespokeFilter: UnknownBespokeFilter;
|
|
7454
|
+
|
|
7455
|
+
export interface WildcardInProperty extends globalThis.EnumItem {
|
|
7456
|
+
Name: "WildcardInProperty";
|
|
7457
|
+
Value: 18;
|
|
7458
|
+
EnumType: typeof globalThis.Enum.FilterErrorType;
|
|
7459
|
+
}
|
|
7460
|
+
|
|
7461
|
+
export const WildcardInProperty: WildcardInProperty;
|
|
7462
|
+
|
|
7463
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.FilterErrorType>;
|
|
7464
|
+
}
|
|
7465
|
+
export type FilterErrorType = FilterErrorType.BackslashNotEscapingAnything | FilterErrorType.BadBespokeFilter | FilterErrorType.BadName | FilterErrorType.IncompleteOr | FilterErrorType.IncompleteParenthesis | FilterErrorType.InvalidDoubleStar | FilterErrorType.InvalidTilde | FilterErrorType.PropertyBadOperator | FilterErrorType.PropertyDoesNotExist | FilterErrorType.PropertyInvalidField | FilterErrorType.PropertyInvalidValue | FilterErrorType.PropertyUnsupportedFields | FilterErrorType.PropertyUnsupportedProperty | FilterErrorType.UnexpectedNameIndex | FilterErrorType.UnexpectedToken | FilterErrorType.UnfinishedBinaryOperator | FilterErrorType.UnfinishedQuote | FilterErrorType.UnknownBespokeFilter | FilterErrorType.WildcardInProperty;
|
|
7466
|
+
|
|
7178
7467
|
export namespace FilterResult {
|
|
7179
7468
|
export interface Accepted extends globalThis.EnumItem {
|
|
7180
7469
|
Name: "Accepted";
|
|
@@ -12085,6 +12374,163 @@ declare namespace Enum {
|
|
|
12085
12374
|
}
|
|
12086
12375
|
export type LeftRight = LeftRight.Left | LeftRight.Center | LeftRight.Right;
|
|
12087
12376
|
|
|
12377
|
+
export namespace LexemeType {
|
|
12378
|
+
export interface Eof extends globalThis.EnumItem {
|
|
12379
|
+
Name: "Eof";
|
|
12380
|
+
Value: 0;
|
|
12381
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12382
|
+
}
|
|
12383
|
+
|
|
12384
|
+
export const Eof: Eof;
|
|
12385
|
+
|
|
12386
|
+
export interface Name extends globalThis.EnumItem {
|
|
12387
|
+
Name: "Name";
|
|
12388
|
+
Value: 1;
|
|
12389
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12390
|
+
}
|
|
12391
|
+
|
|
12392
|
+
export const Name: Name;
|
|
12393
|
+
|
|
12394
|
+
export interface QuotedString extends globalThis.EnumItem {
|
|
12395
|
+
Name: "QuotedString";
|
|
12396
|
+
Value: 2;
|
|
12397
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12398
|
+
}
|
|
12399
|
+
|
|
12400
|
+
export const QuotedString: QuotedString;
|
|
12401
|
+
|
|
12402
|
+
export interface Number extends globalThis.EnumItem {
|
|
12403
|
+
Name: "Number";
|
|
12404
|
+
Value: 3;
|
|
12405
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12406
|
+
}
|
|
12407
|
+
|
|
12408
|
+
export const Number: Number;
|
|
12409
|
+
|
|
12410
|
+
export interface And extends globalThis.EnumItem {
|
|
12411
|
+
Name: "And";
|
|
12412
|
+
Value: 4;
|
|
12413
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12414
|
+
}
|
|
12415
|
+
|
|
12416
|
+
export const And: And;
|
|
12417
|
+
|
|
12418
|
+
export interface Or extends globalThis.EnumItem {
|
|
12419
|
+
Name: "Or";
|
|
12420
|
+
Value: 5;
|
|
12421
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12422
|
+
}
|
|
12423
|
+
|
|
12424
|
+
export const Or: Or;
|
|
12425
|
+
|
|
12426
|
+
export interface Equal extends globalThis.EnumItem {
|
|
12427
|
+
Name: "Equal";
|
|
12428
|
+
Value: 6;
|
|
12429
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12430
|
+
}
|
|
12431
|
+
|
|
12432
|
+
export const Equal: Equal;
|
|
12433
|
+
|
|
12434
|
+
export interface TildeEqual extends globalThis.EnumItem {
|
|
12435
|
+
Name: "TildeEqual";
|
|
12436
|
+
Value: 7;
|
|
12437
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12438
|
+
}
|
|
12439
|
+
|
|
12440
|
+
export const TildeEqual: TildeEqual;
|
|
12441
|
+
|
|
12442
|
+
export interface GreaterThan extends globalThis.EnumItem {
|
|
12443
|
+
Name: "GreaterThan";
|
|
12444
|
+
Value: 8;
|
|
12445
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12446
|
+
}
|
|
12447
|
+
|
|
12448
|
+
export const GreaterThan: GreaterThan;
|
|
12449
|
+
|
|
12450
|
+
export interface GreaterThanEqual extends globalThis.EnumItem {
|
|
12451
|
+
Name: "GreaterThanEqual";
|
|
12452
|
+
Value: 9;
|
|
12453
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12454
|
+
}
|
|
12455
|
+
|
|
12456
|
+
export const GreaterThanEqual: GreaterThanEqual;
|
|
12457
|
+
|
|
12458
|
+
export interface LessThan extends globalThis.EnumItem {
|
|
12459
|
+
Name: "LessThan";
|
|
12460
|
+
Value: 10;
|
|
12461
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12462
|
+
}
|
|
12463
|
+
|
|
12464
|
+
export const LessThan: LessThan;
|
|
12465
|
+
|
|
12466
|
+
export interface LessThanEqual extends globalThis.EnumItem {
|
|
12467
|
+
Name: "LessThanEqual";
|
|
12468
|
+
Value: 11;
|
|
12469
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12470
|
+
}
|
|
12471
|
+
|
|
12472
|
+
export const LessThanEqual: LessThanEqual;
|
|
12473
|
+
|
|
12474
|
+
export interface Colon extends globalThis.EnumItem {
|
|
12475
|
+
Name: "Colon";
|
|
12476
|
+
Value: 12;
|
|
12477
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12478
|
+
}
|
|
12479
|
+
|
|
12480
|
+
export const Colon: Colon;
|
|
12481
|
+
|
|
12482
|
+
export interface Dot extends globalThis.EnumItem {
|
|
12483
|
+
Name: "Dot";
|
|
12484
|
+
Value: 13;
|
|
12485
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12486
|
+
}
|
|
12487
|
+
|
|
12488
|
+
export const Dot: Dot;
|
|
12489
|
+
|
|
12490
|
+
export interface LeftParenthesis extends globalThis.EnumItem {
|
|
12491
|
+
Name: "LeftParenthesis";
|
|
12492
|
+
Value: 14;
|
|
12493
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12494
|
+
}
|
|
12495
|
+
|
|
12496
|
+
export const LeftParenthesis: LeftParenthesis;
|
|
12497
|
+
|
|
12498
|
+
export interface RightParenthesis extends globalThis.EnumItem {
|
|
12499
|
+
Name: "RightParenthesis";
|
|
12500
|
+
Value: 15;
|
|
12501
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12502
|
+
}
|
|
12503
|
+
|
|
12504
|
+
export const RightParenthesis: RightParenthesis;
|
|
12505
|
+
|
|
12506
|
+
export interface Star extends globalThis.EnumItem {
|
|
12507
|
+
Name: "Star";
|
|
12508
|
+
Value: 16;
|
|
12509
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12510
|
+
}
|
|
12511
|
+
|
|
12512
|
+
export const Star: Star;
|
|
12513
|
+
|
|
12514
|
+
export interface DoubleStar extends globalThis.EnumItem {
|
|
12515
|
+
Name: "DoubleStar";
|
|
12516
|
+
Value: 17;
|
|
12517
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12518
|
+
}
|
|
12519
|
+
|
|
12520
|
+
export const DoubleStar: DoubleStar;
|
|
12521
|
+
|
|
12522
|
+
export interface ReservedSpecial extends globalThis.EnumItem {
|
|
12523
|
+
Name: "ReservedSpecial";
|
|
12524
|
+
Value: 18;
|
|
12525
|
+
EnumType: typeof globalThis.Enum.LexemeType;
|
|
12526
|
+
}
|
|
12527
|
+
|
|
12528
|
+
export const ReservedSpecial: ReservedSpecial;
|
|
12529
|
+
|
|
12530
|
+
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.LexemeType>;
|
|
12531
|
+
}
|
|
12532
|
+
export type LexemeType = LexemeType.Eof | LexemeType.Name | LexemeType.QuotedString | LexemeType.Number | LexemeType.And | LexemeType.Or | LexemeType.Equal | LexemeType.TildeEqual | LexemeType.GreaterThan | LexemeType.GreaterThanEqual | LexemeType.LessThan | LexemeType.LessThanEqual | LexemeType.Colon | LexemeType.Dot | LexemeType.LeftParenthesis | LexemeType.RightParenthesis | LexemeType.Star | LexemeType.DoubleStar | LexemeType.ReservedSpecial;
|
|
12533
|
+
|
|
12088
12534
|
export namespace Limb {
|
|
12089
12535
|
export interface Head extends globalThis.EnumItem {
|
|
12090
12536
|
Name: "Head";
|
|
@@ -17182,9 +17628,33 @@ declare namespace Enum {
|
|
|
17182
17628
|
|
|
17183
17629
|
export const Avatar: Avatar;
|
|
17184
17630
|
|
|
17631
|
+
export interface Input extends globalThis.EnumItem {
|
|
17632
|
+
Name: "Input";
|
|
17633
|
+
Value: 17;
|
|
17634
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
17635
|
+
}
|
|
17636
|
+
|
|
17637
|
+
export const Input: Input;
|
|
17638
|
+
|
|
17639
|
+
export interface Environment extends globalThis.EnumItem {
|
|
17640
|
+
Name: "Environment";
|
|
17641
|
+
Value: 18;
|
|
17642
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
17643
|
+
}
|
|
17644
|
+
|
|
17645
|
+
export const Environment: Environment;
|
|
17646
|
+
|
|
17647
|
+
export interface RemoteEvent extends globalThis.EnumItem {
|
|
17648
|
+
Name: "RemoteEvent";
|
|
17649
|
+
Value: 19;
|
|
17650
|
+
EnumType: typeof globalThis.Enum.SecurityCapability;
|
|
17651
|
+
}
|
|
17652
|
+
|
|
17653
|
+
export const RemoteEvent: RemoteEvent;
|
|
17654
|
+
|
|
17185
17655
|
export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
|
|
17186
17656
|
}
|
|
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;
|
|
17657
|
+
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
17658
|
|
|
17189
17659
|
export namespace SelectionBehavior {
|
|
17190
17660
|
export interface Escape extends globalThis.EnumItem {
|
package/include/roblox.d.ts
CHANGED
|
@@ -1392,6 +1392,8 @@ interface CFrameConstructor {
|
|
|
1392
1392
|
Angles: (rX: number, rY: number, rZ: number) => CFrame;
|
|
1393
1393
|
/** Creates a rotated CFrame from a Unit Vector3 and a rotation in radians */
|
|
1394
1394
|
fromAxisAngle: (unit: Vector3, rotation: number) => CFrame;
|
|
1395
|
+
/** Creates a rotated CFrame using angles (rx, ry, rz) in radians. Rotations are applied in the optional Enum.RotationOrder with a default of `XYZ`. */
|
|
1396
|
+
fromEulerAngles: (rX: number, rY: number, rZ: number, order?: Enum.RotationOrder) => CFrame;
|
|
1395
1397
|
/** Creates a rotated CFrame using angles (rx, ry, rz) in radians. Rotations are applied in Z, Y, X order. */
|
|
1396
1398
|
fromEulerAnglesXYZ: (rX: number, rY: number, rZ: number) => CFrame;
|
|
1397
1399
|
/** Creates a rotated CFrame using angles (rx, ry, rz) in radians. Rotations are applied in Z, X, Y order. */
|