@rbxts/types 1.0.836 → 1.0.838
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.
- package/include/generated/None.d.ts +1518 -46
- package/include/generated/PluginSecurity.d.ts +350 -1
- package/include/generated/enums.d.ts +246 -9
- package/package.json +1 -1
|
@@ -19,6 +19,7 @@ interface Services {
|
|
|
19
19
|
AssetManagerService: AssetManagerService;
|
|
20
20
|
AssetService: AssetService;
|
|
21
21
|
AudioFocusService: AudioFocusService;
|
|
22
|
+
AuroraScriptService: AuroraScriptService;
|
|
22
23
|
AuroraService: AuroraService;
|
|
23
24
|
AvatarChatService: AvatarChatService;
|
|
24
25
|
AvatarCreationService: AvatarCreationService;
|
|
@@ -69,11 +70,13 @@ interface Services {
|
|
|
69
70
|
FeatureRestrictionManager: FeatureRestrictionManager;
|
|
70
71
|
GamepadService: GamepadService;
|
|
71
72
|
GamePassService: GamePassService;
|
|
73
|
+
GenerationService: GenerationService;
|
|
72
74
|
GenericChallengeService: GenericChallengeService;
|
|
73
75
|
GeometryService: GeometryService;
|
|
74
76
|
GroupService: GroupService;
|
|
75
77
|
GuiService: GuiService;
|
|
76
78
|
HapticService: HapticService;
|
|
79
|
+
HeapProfilerService: HeapProfilerService;
|
|
77
80
|
HeatmapService: HeatmapService;
|
|
78
81
|
HeightmapImporterService: HeightmapImporterService;
|
|
79
82
|
HttpService: HttpService;
|
|
@@ -115,6 +118,7 @@ interface Services {
|
|
|
115
118
|
PlaceStatsService: PlaceStatsService;
|
|
116
119
|
PlatformCloudStorageService: PlatformCloudStorageService;
|
|
117
120
|
PlatformFriendsService: PlatformFriendsService;
|
|
121
|
+
PlayerDataService: PlayerDataService;
|
|
118
122
|
PlayerHydrationService: PlayerHydrationService;
|
|
119
123
|
Players: Players;
|
|
120
124
|
PlayerViewService: PlayerViewService;
|
|
@@ -245,6 +249,8 @@ interface CreatableInstances {
|
|
|
245
249
|
AudioPlayer: AudioPlayer;
|
|
246
250
|
AudioReverb: AudioReverb;
|
|
247
251
|
AudioSearchParams: AudioSearchParams;
|
|
252
|
+
AudioTextToSpeech: AudioTextToSpeech;
|
|
253
|
+
AuroraScript: AuroraScript;
|
|
248
254
|
Backpack: Backpack;
|
|
249
255
|
BallSocketConstraint: BallSocketConstraint;
|
|
250
256
|
Beam: Beam;
|
|
@@ -287,6 +293,7 @@ interface CreatableInstances {
|
|
|
287
293
|
ControllerPartSensor: ControllerPartSensor;
|
|
288
294
|
CornerWedgePart: CornerWedgePart;
|
|
289
295
|
CurveAnimation: CurveAnimation;
|
|
296
|
+
CustomLog: CustomLog;
|
|
290
297
|
CylinderHandleAdornment: CylinderHandleAdornment;
|
|
291
298
|
CylinderMesh: CylinderMesh;
|
|
292
299
|
CylindricalConstraint: CylindricalConstraint;
|
|
@@ -331,10 +338,14 @@ interface CreatableInstances {
|
|
|
331
338
|
Humanoid: Humanoid;
|
|
332
339
|
HumanoidController: HumanoidController;
|
|
333
340
|
HumanoidDescription: HumanoidDescription;
|
|
341
|
+
HumanoidRigDescription: HumanoidRigDescription;
|
|
334
342
|
IKControl: IKControl;
|
|
335
343
|
ImageButton: ImageButton;
|
|
336
344
|
ImageHandleAdornment: ImageHandleAdornment;
|
|
337
345
|
ImageLabel: ImageLabel;
|
|
346
|
+
InputAction: InputAction;
|
|
347
|
+
InputBinding: InputBinding;
|
|
348
|
+
InputContext: InputContext;
|
|
338
349
|
IntConstrainedValue: IntConstrainedValue;
|
|
339
350
|
InternalSyncItem: InternalSyncItem;
|
|
340
351
|
IntersectOperation: IntersectOperation;
|
|
@@ -472,6 +483,7 @@ interface CreatableInstances {
|
|
|
472
483
|
VehicleSeat: VehicleSeat;
|
|
473
484
|
VelocityMotor: VelocityMotor;
|
|
474
485
|
VideoDeviceInput: VideoDeviceInput;
|
|
486
|
+
VideoDisplay: VideoDisplay;
|
|
475
487
|
VideoFrame: VideoFrame;
|
|
476
488
|
VideoPlayer: VideoPlayer;
|
|
477
489
|
ViewportFrame: ViewportFrame;
|
|
@@ -597,6 +609,9 @@ interface Instances extends Services, CreatableInstances {
|
|
|
597
609
|
PausedStateException: PausedStateException;
|
|
598
610
|
Platform: Platform;
|
|
599
611
|
Player: Player;
|
|
612
|
+
PlayerData: PlayerData;
|
|
613
|
+
PlayerDataRecord: PlayerDataRecord;
|
|
614
|
+
PlayerDataRecordConfig: PlayerDataRecordConfig;
|
|
600
615
|
PlayerGui: PlayerGui;
|
|
601
616
|
PlayerMouse: PlayerMouse;
|
|
602
617
|
PlayerScripts: PlayerScripts;
|
|
@@ -651,9 +666,11 @@ interface Instances extends Services, CreatableInstances {
|
|
|
651
666
|
WorldRoot: WorldRoot;
|
|
652
667
|
}
|
|
653
668
|
interface Objects extends Instances {
|
|
669
|
+
Capture: Capture;
|
|
654
670
|
EditableImage: EditableImage;
|
|
655
671
|
EditableMesh: EditableMesh;
|
|
656
672
|
Object: RBXObject;
|
|
673
|
+
ScreenshotCapture: ScreenshotCapture;
|
|
657
674
|
}
|
|
658
675
|
// GENERATED ROBLOX INSTANCE CLASSES
|
|
659
676
|
/**
|
|
@@ -713,6 +730,36 @@ interface RBXObject {
|
|
|
713
730
|
*/
|
|
714
731
|
readonly Changed: unknown;
|
|
715
732
|
}
|
|
733
|
+
/**
|
|
734
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
735
|
+
*
|
|
736
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Capture)
|
|
737
|
+
*/
|
|
738
|
+
interface Capture extends RBXObject {
|
|
739
|
+
/**
|
|
740
|
+
* **DO NOT USE!**
|
|
741
|
+
*
|
|
742
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
743
|
+
* @hidden
|
|
744
|
+
* @deprecated
|
|
745
|
+
*/
|
|
746
|
+
readonly _nominal_Capture: unique symbol;
|
|
747
|
+
}
|
|
748
|
+
/**
|
|
749
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
750
|
+
*
|
|
751
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScreenshotCapture)
|
|
752
|
+
*/
|
|
753
|
+
interface ScreenshotCapture extends Capture {
|
|
754
|
+
/**
|
|
755
|
+
* **DO NOT USE!**
|
|
756
|
+
*
|
|
757
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
758
|
+
* @hidden
|
|
759
|
+
* @deprecated
|
|
760
|
+
*/
|
|
761
|
+
readonly _nominal_ScreenshotCapture: unique symbol;
|
|
762
|
+
}
|
|
716
763
|
/**
|
|
717
764
|
* Instance which allows for the runtime creation and manipulation of images.
|
|
718
765
|
*
|
|
@@ -2656,7 +2703,7 @@ interface AnimationStreamTrack extends Instance {
|
|
|
2656
2703
|
readonly WeightTarget: number;
|
|
2657
2704
|
}
|
|
2658
2705
|
/**
|
|
2659
|
-
* Controls the playback of an animation on an `
|
|
2706
|
+
* Controls the playback of an animation on an `Animator`.
|
|
2660
2707
|
*
|
|
2661
2708
|
* - **Tags**: NotCreatable
|
|
2662
2709
|
*
|
|
@@ -2757,7 +2804,7 @@ interface AnimationTrack extends Instance {
|
|
|
2757
2804
|
* - **Tags**: CustomLuaState
|
|
2758
2805
|
*
|
|
2759
2806
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#AdjustSpeed)
|
|
2760
|
-
* @param this Controls the playback of an animation on an `
|
|
2807
|
+
* @param this Controls the playback of an animation on an `Animator`.
|
|
2761
2808
|
* @param speed The playback speed the animation is to be changed to.
|
|
2762
2809
|
*/
|
|
2763
2810
|
AdjustSpeed(this: AnimationTrack, speed?: number): void;
|
|
@@ -2768,7 +2815,7 @@ interface AnimationTrack extends Instance {
|
|
|
2768
2815
|
* - **Tags**: CustomLuaState
|
|
2769
2816
|
*
|
|
2770
2817
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#AdjustWeight)
|
|
2771
|
-
* @param this Controls the playback of an animation on an `
|
|
2818
|
+
* @param this Controls the playback of an animation on an `Animator`.
|
|
2772
2819
|
* @param weight The weight the animation is to be changed to.
|
|
2773
2820
|
* @param fadeTime The duration of time that the animation will fade between the old weight and the new weight for.
|
|
2774
2821
|
*/
|
|
@@ -2779,7 +2826,7 @@ interface AnimationTrack extends Instance {
|
|
|
2779
2826
|
* - **ThreadSafety**: Unsafe
|
|
2780
2827
|
*
|
|
2781
2828
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetMarkerReachedSignal)
|
|
2782
|
-
* @param this Controls the playback of an animation on an `
|
|
2829
|
+
* @param this Controls the playback of an animation on an `Animator`.
|
|
2783
2830
|
* @param name The name of the `KeyFrameMarker` the signal is being created for.
|
|
2784
2831
|
* @returns The signal created and fired when the animation reaches the created `KeyFrameMarker`.
|
|
2785
2832
|
*/
|
|
@@ -2790,7 +2837,7 @@ interface AnimationTrack extends Instance {
|
|
|
2790
2837
|
* - **ThreadSafety**: Unsafe
|
|
2791
2838
|
*
|
|
2792
2839
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetTimeOfKeyframe)
|
|
2793
|
-
* @param this Controls the playback of an animation on an `
|
|
2840
|
+
* @param this Controls the playback of an animation on an `Animator`.
|
|
2794
2841
|
* @param keyframeName The name associated with the `Keyframe` to be found.
|
|
2795
2842
|
* @returns The time, in seconds, the `Keyframe` occurs at normal playback speed.
|
|
2796
2843
|
*/
|
|
@@ -2802,7 +2849,7 @@ interface AnimationTrack extends Instance {
|
|
|
2802
2849
|
* - **Tags**: CustomLuaState
|
|
2803
2850
|
*
|
|
2804
2851
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#Play)
|
|
2805
|
-
* @param this Controls the playback of an animation on an `
|
|
2852
|
+
* @param this Controls the playback of an animation on an `Animator`.
|
|
2806
2853
|
* @param fadeTime The duration of time that the animation's weight should be faded in for.
|
|
2807
2854
|
* @param weight The weight the animation is to be played at.
|
|
2808
2855
|
* @param speed The playback speed of the animation.
|
|
@@ -2815,7 +2862,7 @@ interface AnimationTrack extends Instance {
|
|
|
2815
2862
|
* - **Tags**: CustomLuaState
|
|
2816
2863
|
*
|
|
2817
2864
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#Stop)
|
|
2818
|
-
* @param this Controls the playback of an animation on an `
|
|
2865
|
+
* @param this Controls the playback of an animation on an `Animator`.
|
|
2819
2866
|
* @param fadeTime The time, in seconds, for which animation weight is to be faded out over.
|
|
2820
2867
|
*/
|
|
2821
2868
|
Stop(this: AnimationTrack, fadeTime?: number): void;
|
|
@@ -2979,6 +3026,12 @@ interface AnnotationsService extends Instance {
|
|
|
2979
3026
|
* @deprecated
|
|
2980
3027
|
*/
|
|
2981
3028
|
readonly _nominal_AnnotationsService: unique symbol;
|
|
3029
|
+
/**
|
|
3030
|
+
* - **ThreadSafety**: Unsafe
|
|
3031
|
+
*
|
|
3032
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnnotationsService#DEPRECATED_EditAnnotation)
|
|
3033
|
+
*/
|
|
3034
|
+
DEPRECATED_EditAnnotation(this: AnnotationsService, uniqueId: string, contents: string): void;
|
|
2982
3035
|
}
|
|
2983
3036
|
/**
|
|
2984
3037
|
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
@@ -3243,7 +3296,7 @@ interface AssetService extends Instance {
|
|
|
3243
3296
|
*
|
|
3244
3297
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateEditableImageAsync)
|
|
3245
3298
|
* @param this A non-replicated service that handles asset-related queries to the Roblox web API.
|
|
3246
|
-
* @param content
|
|
3299
|
+
* @param content Reference to asset content stored externally or as an object within the place, wrapping a single value of one of the supported `ContentSourceType` values.
|
|
3247
3300
|
* @param editableImageOptions Table containing options for the created `EditableImage`. Currently no options are available since resizing via `Size` is not supported.
|
|
3248
3301
|
* @returns A new `EditableImage` containing the provided image.
|
|
3249
3302
|
*/
|
|
@@ -3256,7 +3309,7 @@ interface AssetService extends Instance {
|
|
|
3256
3309
|
*
|
|
3257
3310
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateEditableMeshAsync)
|
|
3258
3311
|
* @param this A non-replicated service that handles asset-related queries to the Roblox web API.
|
|
3259
|
-
* @param content
|
|
3312
|
+
* @param content Reference to asset content stored externally or as an object within the place, wrapping a single value of one of the supported `ContentSourceType` values.
|
|
3260
3313
|
* @param editableMeshOptions Options table containing controls for the method: - `FixedSize` – A `bool`. Default value is `true`, and the returned `EditableMesh` will not allow you to add or remove vertices, only modify their values. Set to `false` if the ability to change the mesh topology is required, at the expense of using more memory.
|
|
3261
3314
|
*
|
|
3262
3315
|
*
|
|
@@ -3271,7 +3324,7 @@ interface AssetService extends Instance {
|
|
|
3271
3324
|
*
|
|
3272
3325
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateMeshPartAsync)
|
|
3273
3326
|
* @param this A non-replicated service that handles asset-related queries to the Roblox web API.
|
|
3274
|
-
* @param meshContent
|
|
3327
|
+
* @param meshContent Reference to asset content stored externally or as an object within the place, wrapping a single value of one of the supported `ContentSourceType` values.
|
|
3275
3328
|
* @param options Options table containing one or more controls for the method: - `CollisionFidelity` – The value of `CollisionFidelity` in the resulting part. Defaults to `CollisionFidelity.Default` if the option is absent or the `options` table is `nil`.
|
|
3276
3329
|
* - `RenderFidelity` – The value of `RenderFidelity` in the resulting part. Defaults to `RenderFidelity.Automatic` if the option is absent or the `options` table is `nil`.
|
|
3277
3330
|
* - `FluidFidelity` – The value of `FluidFidelity` in the resulting part. Defaults to `FluidFidelity.Automatic` if the option is absent or the `options` table is `nil`.
|
|
@@ -3798,12 +3851,14 @@ interface AudioAnalyzer extends Instance {
|
|
|
3798
3851
|
* - **ThreadSafety**: Unsafe
|
|
3799
3852
|
*
|
|
3800
3853
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioAnalyzer#GetInputPins)
|
|
3854
|
+
* @param this Takes measurements from audio streams that are connected to it via one or more `Wires`.
|
|
3801
3855
|
*/
|
|
3802
3856
|
GetInputPins(this: AudioAnalyzer): Array<unknown>;
|
|
3803
3857
|
/**
|
|
3804
3858
|
* - **ThreadSafety**: Unsafe
|
|
3805
3859
|
*
|
|
3806
3860
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioAnalyzer#GetOutputPins)
|
|
3861
|
+
* @param this Takes measurements from audio streams that are connected to it via one or more `Wires`.
|
|
3807
3862
|
*/
|
|
3808
3863
|
GetOutputPins(this: AudioAnalyzer): Array<unknown>;
|
|
3809
3864
|
/**
|
|
@@ -3849,8 +3904,22 @@ interface AudioChannelMixer extends Instance {
|
|
|
3849
3904
|
* - **ThreadSafety**: Unsafe
|
|
3850
3905
|
*
|
|
3851
3906
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelMixer#GetConnectedWires)
|
|
3907
|
+
* @param this
|
|
3908
|
+
* @param pin
|
|
3852
3909
|
*/
|
|
3853
3910
|
GetConnectedWires(this: AudioChannelMixer, pin: string): Array<Instance>;
|
|
3911
|
+
/**
|
|
3912
|
+
* - **ThreadSafety**: Unsafe
|
|
3913
|
+
*
|
|
3914
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelMixer#GetInputPins)
|
|
3915
|
+
*/
|
|
3916
|
+
GetInputPins(this: AudioChannelMixer): Array<unknown>;
|
|
3917
|
+
/**
|
|
3918
|
+
* - **ThreadSafety**: Unsafe
|
|
3919
|
+
*
|
|
3920
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelMixer#GetOutputPins)
|
|
3921
|
+
*/
|
|
3922
|
+
GetOutputPins(this: AudioChannelMixer): Array<unknown>;
|
|
3854
3923
|
/**
|
|
3855
3924
|
* - **ThreadSafety**: Unsafe
|
|
3856
3925
|
*
|
|
@@ -3882,8 +3951,22 @@ interface AudioChannelSplitter extends Instance {
|
|
|
3882
3951
|
* - **ThreadSafety**: Unsafe
|
|
3883
3952
|
*
|
|
3884
3953
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelSplitter#GetConnectedWires)
|
|
3954
|
+
* @param this
|
|
3955
|
+
* @param pin
|
|
3885
3956
|
*/
|
|
3886
3957
|
GetConnectedWires(this: AudioChannelSplitter, pin: string): Array<Instance>;
|
|
3958
|
+
/**
|
|
3959
|
+
* - **ThreadSafety**: Unsafe
|
|
3960
|
+
*
|
|
3961
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelSplitter#GetInputPins)
|
|
3962
|
+
*/
|
|
3963
|
+
GetInputPins(this: AudioChannelSplitter): Array<unknown>;
|
|
3964
|
+
/**
|
|
3965
|
+
* - **ThreadSafety**: Unsafe
|
|
3966
|
+
*
|
|
3967
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelSplitter#GetOutputPins)
|
|
3968
|
+
*/
|
|
3969
|
+
GetOutputPins(this: AudioChannelSplitter): Array<unknown>;
|
|
3887
3970
|
/**
|
|
3888
3971
|
* - **ThreadSafety**: Unsafe
|
|
3889
3972
|
*
|
|
@@ -3951,12 +4034,14 @@ interface AudioChorus extends Instance {
|
|
|
3951
4034
|
* - **ThreadSafety**: Unsafe
|
|
3952
4035
|
*
|
|
3953
4036
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChorus#GetInputPins)
|
|
4037
|
+
* @param this Makes an audio stream sound more voluminous. If applied to a single voice, it may sound like multiple voices.
|
|
3954
4038
|
*/
|
|
3955
4039
|
GetInputPins(this: AudioChorus): Array<unknown>;
|
|
3956
4040
|
/**
|
|
3957
4041
|
* - **ThreadSafety**: Unsafe
|
|
3958
4042
|
*
|
|
3959
4043
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChorus#GetOutputPins)
|
|
4044
|
+
* @param this Makes an audio stream sound more voluminous. If applied to a single voice, it may sound like multiple voices.
|
|
3960
4045
|
*/
|
|
3961
4046
|
GetOutputPins(this: AudioChorus): Array<unknown>;
|
|
3962
4047
|
/**
|
|
@@ -4044,12 +4129,14 @@ interface AudioCompressor extends Instance {
|
|
|
4044
4129
|
* - **ThreadSafety**: Unsafe
|
|
4045
4130
|
*
|
|
4046
4131
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioCompressor#GetInputPins)
|
|
4132
|
+
* @param this Adjusts the dynamic range of input streams.
|
|
4047
4133
|
*/
|
|
4048
4134
|
GetInputPins(this: AudioCompressor): Array<unknown>;
|
|
4049
4135
|
/**
|
|
4050
4136
|
* - **ThreadSafety**: Unsafe
|
|
4051
4137
|
*
|
|
4052
4138
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioCompressor#GetOutputPins)
|
|
4139
|
+
* @param this Adjusts the dynamic range of input streams.
|
|
4053
4140
|
*/
|
|
4054
4141
|
GetOutputPins(this: AudioCompressor): Array<unknown>;
|
|
4055
4142
|
/**
|
|
@@ -4129,12 +4216,14 @@ interface AudioDeviceInput extends Instance {
|
|
|
4129
4216
|
* - **ThreadSafety**: Unsafe
|
|
4130
4217
|
*
|
|
4131
4218
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDeviceInput#GetInputPins)
|
|
4219
|
+
* @param this Produces audio streams from physical devices, such as microphones.
|
|
4132
4220
|
*/
|
|
4133
4221
|
GetInputPins(this: AudioDeviceInput): Array<unknown>;
|
|
4134
4222
|
/**
|
|
4135
4223
|
* - **ThreadSafety**: Unsafe
|
|
4136
4224
|
*
|
|
4137
4225
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDeviceInput#GetOutputPins)
|
|
4226
|
+
* @param this Produces audio streams from physical devices, such as microphones.
|
|
4138
4227
|
*/
|
|
4139
4228
|
GetOutputPins(this: AudioDeviceInput): Array<unknown>;
|
|
4140
4229
|
/**
|
|
@@ -4201,12 +4290,14 @@ interface AudioDeviceOutput extends Instance {
|
|
|
4201
4290
|
* - **ThreadSafety**: Unsafe
|
|
4202
4291
|
*
|
|
4203
4292
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDeviceOutput#GetInputPins)
|
|
4293
|
+
* @param this Accepts audio streams to be rendered out to physical hardware devices such as speakers or headphones.
|
|
4204
4294
|
*/
|
|
4205
4295
|
GetInputPins(this: AudioDeviceOutput): Array<unknown>;
|
|
4206
4296
|
/**
|
|
4207
4297
|
* - **ThreadSafety**: Unsafe
|
|
4208
4298
|
*
|
|
4209
4299
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDeviceOutput#GetOutputPins)
|
|
4300
|
+
* @param this Accepts audio streams to be rendered out to physical hardware devices such as speakers or headphones.
|
|
4210
4301
|
*/
|
|
4211
4302
|
GetOutputPins(this: AudioDeviceOutput): Array<unknown>;
|
|
4212
4303
|
/**
|
|
@@ -4262,12 +4353,14 @@ interface AudioDistortion extends Instance {
|
|
|
4262
4353
|
* - **ThreadSafety**: Unsafe
|
|
4263
4354
|
*
|
|
4264
4355
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDistortion#GetInputPins)
|
|
4356
|
+
* @param this Distorts audio streams, making them sound fuzzier, grittier, and louder.
|
|
4265
4357
|
*/
|
|
4266
4358
|
GetInputPins(this: AudioDistortion): Array<unknown>;
|
|
4267
4359
|
/**
|
|
4268
4360
|
* - **ThreadSafety**: Unsafe
|
|
4269
4361
|
*
|
|
4270
4362
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioDistortion#GetOutputPins)
|
|
4363
|
+
* @param this Distorts audio streams, making them sound fuzzier, grittier, and louder.
|
|
4271
4364
|
*/
|
|
4272
4365
|
GetOutputPins(this: AudioDistortion): Array<unknown>;
|
|
4273
4366
|
/**
|
|
@@ -4353,12 +4446,14 @@ interface AudioEcho extends Instance {
|
|
|
4353
4446
|
* - **ThreadSafety**: Unsafe
|
|
4354
4447
|
*
|
|
4355
4448
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEcho#GetInputPins)
|
|
4449
|
+
* @param this Overlays delayed copies of audio streams.
|
|
4356
4450
|
*/
|
|
4357
4451
|
GetInputPins(this: AudioEcho): Array<unknown>;
|
|
4358
4452
|
/**
|
|
4359
4453
|
* - **ThreadSafety**: Unsafe
|
|
4360
4454
|
*
|
|
4361
4455
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEcho#GetOutputPins)
|
|
4456
|
+
* @param this Overlays delayed copies of audio streams.
|
|
4362
4457
|
*/
|
|
4363
4458
|
GetOutputPins(this: AudioEcho): Array<unknown>;
|
|
4364
4459
|
/**
|
|
@@ -4413,6 +4508,8 @@ interface AudioEmitter extends Instance {
|
|
|
4413
4508
|
* - **ThreadSafety**: Unsafe
|
|
4414
4509
|
*
|
|
4415
4510
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetAudibilityFor)
|
|
4511
|
+
* @param this Emits audio streams into the world.
|
|
4512
|
+
* @param listener
|
|
4416
4513
|
*/
|
|
4417
4514
|
GetAudibilityFor(this: AudioEmitter, listener: AudioListener): number;
|
|
4418
4515
|
/**
|
|
@@ -4439,6 +4536,7 @@ interface AudioEmitter extends Instance {
|
|
|
4439
4536
|
* - **ThreadSafety**: Unsafe
|
|
4440
4537
|
*
|
|
4441
4538
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetInputPins)
|
|
4539
|
+
* @param this Emits audio streams into the world.
|
|
4442
4540
|
*/
|
|
4443
4541
|
GetInputPins(this: AudioEmitter): Array<unknown>;
|
|
4444
4542
|
/**
|
|
@@ -4452,6 +4550,7 @@ interface AudioEmitter extends Instance {
|
|
|
4452
4550
|
* - **ThreadSafety**: Unsafe
|
|
4453
4551
|
*
|
|
4454
4552
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetOutputPins)
|
|
4553
|
+
* @param this Emits audio streams into the world.
|
|
4455
4554
|
*/
|
|
4456
4555
|
GetOutputPins(this: AudioEmitter): Array<unknown>;
|
|
4457
4556
|
/**
|
|
@@ -4553,12 +4652,14 @@ interface AudioEqualizer extends Instance {
|
|
|
4553
4652
|
* - **ThreadSafety**: Unsafe
|
|
4554
4653
|
*
|
|
4555
4654
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEqualizer#GetInputPins)
|
|
4655
|
+
* @param this Adjusts the frequency content of audio streams.
|
|
4556
4656
|
*/
|
|
4557
4657
|
GetInputPins(this: AudioEqualizer): Array<unknown>;
|
|
4558
4658
|
/**
|
|
4559
4659
|
* - **ThreadSafety**: Unsafe
|
|
4560
4660
|
*
|
|
4561
4661
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEqualizer#GetOutputPins)
|
|
4662
|
+
* @param this Adjusts the frequency content of audio streams.
|
|
4562
4663
|
*/
|
|
4563
4664
|
GetOutputPins(this: AudioEqualizer): Array<unknown>;
|
|
4564
4665
|
/**
|
|
@@ -4614,12 +4715,14 @@ interface AudioFader extends Instance {
|
|
|
4614
4715
|
* - **ThreadSafety**: Unsafe
|
|
4615
4716
|
*
|
|
4616
4717
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFader#GetInputPins)
|
|
4718
|
+
* @param this Adjusts the volume of audio streams.
|
|
4617
4719
|
*/
|
|
4618
4720
|
GetInputPins(this: AudioFader): Array<unknown>;
|
|
4619
4721
|
/**
|
|
4620
4722
|
* - **ThreadSafety**: Unsafe
|
|
4621
4723
|
*
|
|
4622
4724
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFader#GetOutputPins)
|
|
4725
|
+
* @param this Adjusts the volume of audio streams.
|
|
4623
4726
|
*/
|
|
4624
4727
|
GetOutputPins(this: AudioFader): Array<unknown>;
|
|
4625
4728
|
/**
|
|
@@ -4710,12 +4813,14 @@ interface AudioFilter extends Instance {
|
|
|
4710
4813
|
* - **ThreadSafety**: Unsafe
|
|
4711
4814
|
*
|
|
4712
4815
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFilter#GetInputPins)
|
|
4816
|
+
* @param this Adjusts the frequency content of audio streams.
|
|
4713
4817
|
*/
|
|
4714
4818
|
GetInputPins(this: AudioFilter): Array<unknown>;
|
|
4715
4819
|
/**
|
|
4716
4820
|
* - **ThreadSafety**: Unsafe
|
|
4717
4821
|
*
|
|
4718
4822
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFilter#GetOutputPins)
|
|
4823
|
+
* @param this Adjusts the frequency content of audio streams.
|
|
4719
4824
|
*/
|
|
4720
4825
|
GetOutputPins(this: AudioFilter): Array<unknown>;
|
|
4721
4826
|
/**
|
|
@@ -4787,12 +4892,14 @@ interface AudioFlanger extends Instance {
|
|
|
4787
4892
|
* - **ThreadSafety**: Unsafe
|
|
4788
4893
|
*
|
|
4789
4894
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFlanger#GetInputPins)
|
|
4895
|
+
* @param this Imparts a whooshing or sweeping sound on audio streams.
|
|
4790
4896
|
*/
|
|
4791
4897
|
GetInputPins(this: AudioFlanger): Array<unknown>;
|
|
4792
4898
|
/**
|
|
4793
4899
|
* - **ThreadSafety**: Unsafe
|
|
4794
4900
|
*
|
|
4795
4901
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFlanger#GetOutputPins)
|
|
4902
|
+
* @param this Imparts a whooshing or sweeping sound on audio streams.
|
|
4796
4903
|
*/
|
|
4797
4904
|
GetOutputPins(this: AudioFlanger): Array<unknown>;
|
|
4798
4905
|
/**
|
|
@@ -4871,12 +4978,14 @@ interface AudioLimiter extends Instance {
|
|
|
4871
4978
|
* - **ThreadSafety**: Unsafe
|
|
4872
4979
|
*
|
|
4873
4980
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioLimiter#GetInputPins)
|
|
4981
|
+
* @param this Limits how loud audio streams are allowed to be.
|
|
4874
4982
|
*/
|
|
4875
4983
|
GetInputPins(this: AudioLimiter): Array<unknown>;
|
|
4876
4984
|
/**
|
|
4877
4985
|
* - **ThreadSafety**: Unsafe
|
|
4878
4986
|
*
|
|
4879
4987
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioLimiter#GetOutputPins)
|
|
4988
|
+
* @param this Limits how loud audio streams are allowed to be.
|
|
4880
4989
|
*/
|
|
4881
4990
|
GetOutputPins(this: AudioLimiter): Array<unknown>;
|
|
4882
4991
|
/**
|
|
@@ -4931,6 +5040,8 @@ interface AudioListener extends Instance {
|
|
|
4931
5040
|
* - **ThreadSafety**: Unsafe
|
|
4932
5041
|
*
|
|
4933
5042
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#GetAudibilityFor)
|
|
5043
|
+
* @param this Records an audio stream from its surrounding `AudioEmitters` in the 3D world.
|
|
5044
|
+
* @param emitter
|
|
4934
5045
|
*/
|
|
4935
5046
|
GetAudibilityFor(this: AudioListener, emitter: AudioEmitter): number;
|
|
4936
5047
|
/**
|
|
@@ -4957,6 +5068,7 @@ interface AudioListener extends Instance {
|
|
|
4957
5068
|
* - **ThreadSafety**: Unsafe
|
|
4958
5069
|
*
|
|
4959
5070
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#GetInputPins)
|
|
5071
|
+
* @param this Records an audio stream from its surrounding `AudioEmitters` in the 3D world.
|
|
4960
5072
|
*/
|
|
4961
5073
|
GetInputPins(this: AudioListener): Array<unknown>;
|
|
4962
5074
|
/**
|
|
@@ -4970,6 +5082,7 @@ interface AudioListener extends Instance {
|
|
|
4970
5082
|
* - **ThreadSafety**: Unsafe
|
|
4971
5083
|
*
|
|
4972
5084
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#GetOutputPins)
|
|
5085
|
+
* @param this Records an audio stream from its surrounding `AudioEmitters` in the 3D world.
|
|
4973
5086
|
*/
|
|
4974
5087
|
GetOutputPins(this: AudioListener): Array<unknown>;
|
|
4975
5088
|
/**
|
|
@@ -5053,12 +5166,14 @@ interface AudioPitchShifter extends Instance {
|
|
|
5053
5166
|
* - **ThreadSafety**: Unsafe
|
|
5054
5167
|
*
|
|
5055
5168
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPitchShifter#GetInputPins)
|
|
5169
|
+
* @param this Adjusts the perceived pitch of audio streams.
|
|
5056
5170
|
*/
|
|
5057
5171
|
GetInputPins(this: AudioPitchShifter): Array<unknown>;
|
|
5058
5172
|
/**
|
|
5059
5173
|
* - **ThreadSafety**: Unsafe
|
|
5060
5174
|
*
|
|
5061
5175
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPitchShifter#GetOutputPins)
|
|
5176
|
+
* @param this Adjusts the perceived pitch of audio streams.
|
|
5062
5177
|
*/
|
|
5063
5178
|
GetOutputPins(this: AudioPitchShifter): Array<unknown>;
|
|
5064
5179
|
/**
|
|
@@ -5085,13 +5200,15 @@ interface AudioPlayer extends Instance {
|
|
|
5085
5200
|
*/
|
|
5086
5201
|
readonly _nominal_AudioPlayer: unique symbol;
|
|
5087
5202
|
/**
|
|
5203
|
+
* The asset to be loaded into the `AudioPlayer`.
|
|
5204
|
+
*
|
|
5088
5205
|
* - **ThreadSafety**: ReadSafe
|
|
5089
5206
|
*
|
|
5090
5207
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Asset)
|
|
5091
5208
|
*/
|
|
5092
5209
|
Asset: ContentId;
|
|
5093
5210
|
/**
|
|
5094
|
-
* **Deprecated:**
|
|
5211
|
+
* **Deprecated:** This property is deprecated; use `Asset` instead.
|
|
5095
5212
|
*
|
|
5096
5213
|
* The asset to be loaded into the `AudioPlayer`.
|
|
5097
5214
|
*
|
|
@@ -5104,7 +5221,7 @@ interface AudioPlayer extends Instance {
|
|
|
5104
5221
|
*/
|
|
5105
5222
|
AssetId: string;
|
|
5106
5223
|
/**
|
|
5107
|
-
* Controls whether `
|
|
5224
|
+
* Controls whether `Asset` loads automatically once assigned.
|
|
5108
5225
|
*
|
|
5109
5226
|
* - **ThreadSafety**: ReadSafe
|
|
5110
5227
|
*
|
|
@@ -5199,12 +5316,14 @@ interface AudioPlayer extends Instance {
|
|
|
5199
5316
|
* - **ThreadSafety**: Unsafe
|
|
5200
5317
|
*
|
|
5201
5318
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#GetInputPins)
|
|
5319
|
+
* @param this Used to play audio assets.
|
|
5202
5320
|
*/
|
|
5203
5321
|
GetInputPins(this: AudioPlayer): Array<unknown>;
|
|
5204
5322
|
/**
|
|
5205
5323
|
* - **ThreadSafety**: Unsafe
|
|
5206
5324
|
*
|
|
5207
5325
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#GetOutputPins)
|
|
5326
|
+
* @param this Used to play audio assets.
|
|
5208
5327
|
*/
|
|
5209
5328
|
GetOutputPins(this: AudioPlayer): Array<unknown>;
|
|
5210
5329
|
/**
|
|
@@ -5392,12 +5511,14 @@ interface AudioReverb extends Instance {
|
|
|
5392
5511
|
* - **ThreadSafety**: Unsafe
|
|
5393
5512
|
*
|
|
5394
5513
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioReverb#GetInputPins)
|
|
5514
|
+
* @param this Reverberates audio streams.
|
|
5395
5515
|
*/
|
|
5396
5516
|
GetInputPins(this: AudioReverb): Array<unknown>;
|
|
5397
5517
|
/**
|
|
5398
5518
|
* - **ThreadSafety**: Unsafe
|
|
5399
5519
|
*
|
|
5400
5520
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioReverb#GetOutputPins)
|
|
5521
|
+
* @param this Reverberates audio streams.
|
|
5401
5522
|
*/
|
|
5402
5523
|
GetOutputPins(this: AudioReverb): Array<unknown>;
|
|
5403
5524
|
/**
|
|
@@ -5501,6 +5622,79 @@ interface AudioSearchParams extends Instance {
|
|
|
5501
5622
|
*/
|
|
5502
5623
|
Title: string;
|
|
5503
5624
|
}
|
|
5625
|
+
/**
|
|
5626
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech)
|
|
5627
|
+
*/
|
|
5628
|
+
interface AudioTextToSpeech extends Instance {
|
|
5629
|
+
/**
|
|
5630
|
+
* **DO NOT USE!**
|
|
5631
|
+
*
|
|
5632
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
5633
|
+
* @hidden
|
|
5634
|
+
* @deprecated
|
|
5635
|
+
*/
|
|
5636
|
+
readonly _nominal_AudioTextToSpeech: unique symbol;
|
|
5637
|
+
}
|
|
5638
|
+
/**
|
|
5639
|
+
* - **Tags**: NotCreatable, Service
|
|
5640
|
+
*
|
|
5641
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService)
|
|
5642
|
+
*
|
|
5643
|
+
* @deprecated
|
|
5644
|
+
*/
|
|
5645
|
+
interface AuroraScriptService extends Instance {
|
|
5646
|
+
/**
|
|
5647
|
+
* **DO NOT USE!**
|
|
5648
|
+
*
|
|
5649
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
5650
|
+
* @hidden
|
|
5651
|
+
* @deprecated
|
|
5652
|
+
*/
|
|
5653
|
+
readonly _nominal_AuroraScriptService: unique symbol;
|
|
5654
|
+
/**
|
|
5655
|
+
* - **ThreadSafety**: ReadSafe
|
|
5656
|
+
*
|
|
5657
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#BufferSize)
|
|
5658
|
+
*/
|
|
5659
|
+
get BufferSize(): number;
|
|
5660
|
+
/**
|
|
5661
|
+
* - **ThreadSafety**: ReadSafe
|
|
5662
|
+
* - **Tags**: NotReplicated
|
|
5663
|
+
*
|
|
5664
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#LocalFrameId)
|
|
5665
|
+
*/
|
|
5666
|
+
get LocalFrameId(): number;
|
|
5667
|
+
/**
|
|
5668
|
+
* - **ThreadSafety**: ReadSafe
|
|
5669
|
+
*
|
|
5670
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#RemoteFrameId)
|
|
5671
|
+
*/
|
|
5672
|
+
get RemoteFrameId(): number;
|
|
5673
|
+
/**
|
|
5674
|
+
* - **ThreadSafety**: Safe
|
|
5675
|
+
*
|
|
5676
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetProperty)
|
|
5677
|
+
*/
|
|
5678
|
+
GetProperty(this: AuroraScriptService, instance: Instance, name: string): unknown;
|
|
5679
|
+
/**
|
|
5680
|
+
* - **ThreadSafety**: Safe
|
|
5681
|
+
*
|
|
5682
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetTime)
|
|
5683
|
+
*/
|
|
5684
|
+
GetTime(this: AuroraScriptService): number;
|
|
5685
|
+
/**
|
|
5686
|
+
* - **ThreadSafety**: Safe
|
|
5687
|
+
*
|
|
5688
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#SendMessage)
|
|
5689
|
+
*/
|
|
5690
|
+
SendMessage(this: AuroraScriptService, instance: Instance, behaviorName: string, functionName: string, args: unknown): void;
|
|
5691
|
+
/**
|
|
5692
|
+
* - **ThreadSafety**: Safe
|
|
5693
|
+
*
|
|
5694
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#SetProperty)
|
|
5695
|
+
*/
|
|
5696
|
+
SetProperty(this: AuroraScriptService, instance: Instance, name: string, value: unknown): void;
|
|
5697
|
+
}
|
|
5504
5698
|
/**
|
|
5505
5699
|
* - **Tags**: NotCreatable, Service
|
|
5506
5700
|
*
|
|
@@ -5612,7 +5806,7 @@ interface AuroraService extends Instance {
|
|
|
5612
5806
|
*
|
|
5613
5807
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Rollback)
|
|
5614
5808
|
*/
|
|
5615
|
-
readonly Rollback: RBXScriptSignal<() => void>;
|
|
5809
|
+
readonly Rollback: RBXScriptSignal<(worldStepId: number) => void>;
|
|
5616
5810
|
/**
|
|
5617
5811
|
* - **ThreadSafety**: Unsafe
|
|
5618
5812
|
*
|
|
@@ -5678,30 +5872,18 @@ interface AvatarCreationService extends Instance {
|
|
|
5678
5872
|
* - **ThreadSafety**: Unsafe
|
|
5679
5873
|
* - **Tags**: Yields
|
|
5680
5874
|
*
|
|
5681
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#
|
|
5682
|
-
|
|
5683
|
-
|
|
5684
|
-
/**
|
|
5685
|
-
* - **ThreadSafety**: Unsafe
|
|
5686
|
-
* - **Tags**: Yields
|
|
5687
|
-
*
|
|
5688
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GenerateAvatarModelAsync)
|
|
5689
|
-
*/
|
|
5690
|
-
GenerateAvatarModelAsync(this: AvatarCreationService, player: Player, previewJobId: string, options: object, progressCallback: Callback): string;
|
|
5691
|
-
/**
|
|
5692
|
-
* - **ThreadSafety**: Unsafe
|
|
5693
|
-
* - **Tags**: Yields
|
|
5694
|
-
*
|
|
5695
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GenerateAvatarPreviewAsync)
|
|
5875
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GenerateAvatar2DPreviewAsync)
|
|
5876
|
+
* @param this A service to support developer avatar creators.
|
|
5877
|
+
* @param avatarGeneration2dPreviewParams
|
|
5696
5878
|
*/
|
|
5697
|
-
|
|
5879
|
+
GenerateAvatar2DPreviewAsync(this: AvatarCreationService, avatarGeneration2dPreviewParams: object): string;
|
|
5698
5880
|
/**
|
|
5699
5881
|
* - **ThreadSafety**: Unsafe
|
|
5700
5882
|
* - **Tags**: Yields
|
|
5701
5883
|
*
|
|
5702
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#
|
|
5884
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GenerateAvatarAsync)
|
|
5703
5885
|
*/
|
|
5704
|
-
|
|
5886
|
+
GenerateAvatarAsync(this: AvatarCreationService, avatarGenerationParams: object): string;
|
|
5705
5887
|
/**
|
|
5706
5888
|
* - **ThreadSafety**: Unsafe
|
|
5707
5889
|
* - **Tags**: Yields
|
|
@@ -5725,23 +5907,20 @@ interface AvatarCreationService extends Instance {
|
|
|
5725
5907
|
* - **ThreadSafety**: Unsafe
|
|
5726
5908
|
* - **Tags**: Yields
|
|
5727
5909
|
*
|
|
5728
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#
|
|
5729
|
-
|
|
5730
|
-
|
|
5731
|
-
/**
|
|
5732
|
-
* - **ThreadSafety**: Unsafe
|
|
5733
|
-
* - **Tags**: Yields
|
|
5734
|
-
*
|
|
5735
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#LoadAvatarModelAsync)
|
|
5910
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#LoadAvatar2DPreviewAsync)
|
|
5911
|
+
* @param this A service to support developer avatar creators.
|
|
5912
|
+
* @param previewId
|
|
5736
5913
|
*/
|
|
5737
|
-
|
|
5914
|
+
LoadAvatar2DPreviewAsync(this: AvatarCreationService, previewId: string): EditableImage;
|
|
5738
5915
|
/**
|
|
5739
5916
|
* - **ThreadSafety**: Unsafe
|
|
5740
5917
|
* - **Tags**: Yields
|
|
5741
5918
|
*
|
|
5742
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#
|
|
5919
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#LoadGeneratedAvatarAsync)
|
|
5920
|
+
* @param this A service to support developer avatar creators.
|
|
5921
|
+
* @param generationId
|
|
5743
5922
|
*/
|
|
5744
|
-
|
|
5923
|
+
LoadGeneratedAvatarAsync(this: AvatarCreationService, generationId: string): HumanoidDescription;
|
|
5745
5924
|
/**
|
|
5746
5925
|
* Prompts a `Player` to purchase and create an avatar from a `HumanoidDescription`.
|
|
5747
5926
|
*
|
|
@@ -7198,6 +7377,7 @@ interface WrapDeformer extends BaseWrap {
|
|
|
7198
7377
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapDeformer#SetCageMeshContent)
|
|
7199
7378
|
* @param this Allows for the real-time deformation of a `MeshPart`.
|
|
7200
7379
|
* @param content
|
|
7380
|
+
* @param cageOrigin
|
|
7201
7381
|
*/
|
|
7202
7382
|
SetCageMeshContent(this: WrapDeformer, content: Content, cageOrigin?: CFrame): void;
|
|
7203
7383
|
/**
|
|
@@ -8572,6 +8752,12 @@ interface CaptureService extends Instance {
|
|
|
8572
8752
|
* @param onDeniedCallback An optional callback function invoked if the user denies sharing.
|
|
8573
8753
|
*/
|
|
8574
8754
|
PromptShareCapture(this: CaptureService, contentId: string, launchData: string, onAcceptedCallback: () => void, onDeniedCallback: () => void): void;
|
|
8755
|
+
/**
|
|
8756
|
+
* - **ThreadSafety**: Unsafe
|
|
8757
|
+
*
|
|
8758
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#TakeCapture)
|
|
8759
|
+
*/
|
|
8760
|
+
TakeCapture(this: CaptureService, onCaptureReady: Callback, captureParams?: object): void;
|
|
8575
8761
|
/**
|
|
8576
8762
|
* Fires immediately before a capture begins.
|
|
8577
8763
|
*
|
|
@@ -12523,6 +12709,45 @@ interface CrossDMScriptChangeListener extends Instance {
|
|
|
12523
12709
|
*/
|
|
12524
12710
|
readonly _nominal_CrossDMScriptChangeListener: unique symbol;
|
|
12525
12711
|
}
|
|
12712
|
+
/**
|
|
12713
|
+
* - **Tags**: NotReplicated
|
|
12714
|
+
*
|
|
12715
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog)
|
|
12716
|
+
*/
|
|
12717
|
+
interface CustomLog extends Instance {
|
|
12718
|
+
/**
|
|
12719
|
+
* **DO NOT USE!**
|
|
12720
|
+
*
|
|
12721
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
12722
|
+
* @hidden
|
|
12723
|
+
* @deprecated
|
|
12724
|
+
*/
|
|
12725
|
+
readonly _nominal_CustomLog: unique symbol;
|
|
12726
|
+
/**
|
|
12727
|
+
* - **ThreadSafety**: Unsafe
|
|
12728
|
+
*
|
|
12729
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog#Close)
|
|
12730
|
+
*/
|
|
12731
|
+
Close(this: CustomLog): void;
|
|
12732
|
+
/**
|
|
12733
|
+
* - **ThreadSafety**: Unsafe
|
|
12734
|
+
*
|
|
12735
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog#GetLogPath)
|
|
12736
|
+
*/
|
|
12737
|
+
GetLogPath(this: CustomLog): string;
|
|
12738
|
+
/**
|
|
12739
|
+
* - **ThreadSafety**: Unsafe
|
|
12740
|
+
*
|
|
12741
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog#Open)
|
|
12742
|
+
*/
|
|
12743
|
+
Open(this: CustomLog): void;
|
|
12744
|
+
/**
|
|
12745
|
+
* - **ThreadSafety**: Unsafe
|
|
12746
|
+
*
|
|
12747
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog#WriteAppend)
|
|
12748
|
+
*/
|
|
12749
|
+
WriteAppend(this: CustomLog, append: string): void;
|
|
12750
|
+
}
|
|
12526
12751
|
/**
|
|
12527
12752
|
* The DataModelMesh is an abstract class from which mesh classes descend.
|
|
12528
12753
|
*
|
|
@@ -14590,6 +14815,42 @@ interface GamepadService extends Instance {
|
|
|
14590
14815
|
*/
|
|
14591
14816
|
EnableGamepadCursor(this: GamepadService, guiObject: GuiObject | undefined): void;
|
|
14592
14817
|
}
|
|
14818
|
+
/**
|
|
14819
|
+
* - **Tags**: NotCreatable, Service
|
|
14820
|
+
*
|
|
14821
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GenerationService)
|
|
14822
|
+
*/
|
|
14823
|
+
interface GenerationService extends Instance {
|
|
14824
|
+
/**
|
|
14825
|
+
* **DO NOT USE!**
|
|
14826
|
+
*
|
|
14827
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
14828
|
+
* @hidden
|
|
14829
|
+
* @deprecated
|
|
14830
|
+
*/
|
|
14831
|
+
readonly _nominal_GenerationService: unique symbol;
|
|
14832
|
+
/**
|
|
14833
|
+
* - **ThreadSafety**: Unsafe
|
|
14834
|
+
* - **Tags**: Yields
|
|
14835
|
+
*
|
|
14836
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GenerationService#GenerateMeshAsync)
|
|
14837
|
+
* @param this
|
|
14838
|
+
* @param inputs
|
|
14839
|
+
* @param player
|
|
14840
|
+
* @param options
|
|
14841
|
+
* @param intermediateResultCallback
|
|
14842
|
+
*/
|
|
14843
|
+
GenerateMeshAsync(this: GenerationService, inputs: object, player: Player, options: object, intermediateResultCallback?: Callback): unknown;
|
|
14844
|
+
/**
|
|
14845
|
+
* - **ThreadSafety**: Unsafe
|
|
14846
|
+
* - **Tags**: Yields
|
|
14847
|
+
*
|
|
14848
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GenerationService#LoadGeneratedMeshAsync)
|
|
14849
|
+
* @param this
|
|
14850
|
+
* @param generationId
|
|
14851
|
+
*/
|
|
14852
|
+
LoadGeneratedMeshAsync(this: GenerationService, generationId: string): MeshPart;
|
|
14853
|
+
}
|
|
14593
14854
|
/**
|
|
14594
14855
|
* - **Tags**: NotCreatable, Service
|
|
14595
14856
|
*
|
|
@@ -17088,6 +17349,77 @@ interface TextBox extends GuiObject {
|
|
|
17088
17349
|
*/
|
|
17089
17350
|
readonly ReturnPressedFromOnScreenKeyboard: RBXScriptSignal<() => void>;
|
|
17090
17351
|
}
|
|
17352
|
+
/**
|
|
17353
|
+
* - **Tags**: NotBrowsable
|
|
17354
|
+
*
|
|
17355
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay)
|
|
17356
|
+
*/
|
|
17357
|
+
interface VideoDisplay extends GuiObject {
|
|
17358
|
+
/**
|
|
17359
|
+
* **DO NOT USE!**
|
|
17360
|
+
*
|
|
17361
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
17362
|
+
* @hidden
|
|
17363
|
+
* @deprecated
|
|
17364
|
+
*/
|
|
17365
|
+
readonly _nominal_VideoDisplay: unique symbol;
|
|
17366
|
+
/**
|
|
17367
|
+
* - **ThreadSafety**: ReadSafe
|
|
17368
|
+
*
|
|
17369
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#ResampleMode)
|
|
17370
|
+
*/
|
|
17371
|
+
ResampleMode: Enum.ResamplerMode;
|
|
17372
|
+
/**
|
|
17373
|
+
* - **ThreadSafety**: ReadSafe
|
|
17374
|
+
*
|
|
17375
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#ScaleType)
|
|
17376
|
+
*/
|
|
17377
|
+
ScaleType: Enum.ScaleType;
|
|
17378
|
+
/**
|
|
17379
|
+
* - **ThreadSafety**: ReadSafe
|
|
17380
|
+
*
|
|
17381
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#TileSize)
|
|
17382
|
+
*/
|
|
17383
|
+
TileSize: UDim2;
|
|
17384
|
+
/**
|
|
17385
|
+
* - **ThreadSafety**: ReadSafe
|
|
17386
|
+
*
|
|
17387
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#VideoColor3)
|
|
17388
|
+
*/
|
|
17389
|
+
VideoColor3: Color3;
|
|
17390
|
+
/**
|
|
17391
|
+
* - **ThreadSafety**: ReadSafe
|
|
17392
|
+
*
|
|
17393
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#VideoRectOffset)
|
|
17394
|
+
*/
|
|
17395
|
+
VideoRectOffset: Vector2;
|
|
17396
|
+
/**
|
|
17397
|
+
* - **ThreadSafety**: ReadSafe
|
|
17398
|
+
*
|
|
17399
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#VideoRectSize)
|
|
17400
|
+
*/
|
|
17401
|
+
VideoRectSize: Vector2;
|
|
17402
|
+
/**
|
|
17403
|
+
* - **ThreadSafety**: ReadSafe
|
|
17404
|
+
*
|
|
17405
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#VideoTransparency)
|
|
17406
|
+
*/
|
|
17407
|
+
VideoTransparency: number;
|
|
17408
|
+
/**
|
|
17409
|
+
* - **ThreadSafety**: Unsafe
|
|
17410
|
+
*
|
|
17411
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetConnectedWires)
|
|
17412
|
+
* @param this
|
|
17413
|
+
* @param pin
|
|
17414
|
+
*/
|
|
17415
|
+
GetConnectedWires(this: VideoDisplay, pin: string): Array<Instance>;
|
|
17416
|
+
/**
|
|
17417
|
+
* - **ThreadSafety**: Unsafe
|
|
17418
|
+
*
|
|
17419
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#WiringChanged)
|
|
17420
|
+
*/
|
|
17421
|
+
readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
|
|
17422
|
+
}
|
|
17091
17423
|
/**
|
|
17092
17424
|
* A GUI object that renders a rectangle, like a `Frame` does, with a moving video image.
|
|
17093
17425
|
*
|
|
@@ -19282,6 +19614,21 @@ interface HapticService extends Instance {
|
|
|
19282
19614
|
*/
|
|
19283
19615
|
SetMotor(this: HapticService, inputType: CastsToEnum<Enum.UserInputType>, motor: CastsToEnum<Enum.VibrationMotor>, vibration: number): void;
|
|
19284
19616
|
}
|
|
19617
|
+
/**
|
|
19618
|
+
* - **Tags**: NotCreatable, Service
|
|
19619
|
+
*
|
|
19620
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HeapProfilerService)
|
|
19621
|
+
*/
|
|
19622
|
+
interface HeapProfilerService extends Instance {
|
|
19623
|
+
/**
|
|
19624
|
+
* **DO NOT USE!**
|
|
19625
|
+
*
|
|
19626
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
19627
|
+
* @hidden
|
|
19628
|
+
* @deprecated
|
|
19629
|
+
*/
|
|
19630
|
+
readonly _nominal_HeapProfilerService: unique symbol;
|
|
19631
|
+
}
|
|
19285
19632
|
/**
|
|
19286
19633
|
* - **Tags**: NotCreatable, Service
|
|
19287
19634
|
*
|
|
@@ -20855,6 +21202,703 @@ interface HumanoidDescription extends Instance {
|
|
|
20855
21202
|
*/
|
|
20856
21203
|
readonly EquippedEmotesChanged: RBXScriptSignal<(newEquippedEmotes: EquippedEmotes) => void>;
|
|
20857
21204
|
}
|
|
21205
|
+
/**
|
|
21206
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription)
|
|
21207
|
+
*/
|
|
21208
|
+
interface HumanoidRigDescription extends Instance {
|
|
21209
|
+
/**
|
|
21210
|
+
* **DO NOT USE!**
|
|
21211
|
+
*
|
|
21212
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
21213
|
+
* @hidden
|
|
21214
|
+
* @deprecated
|
|
21215
|
+
*/
|
|
21216
|
+
readonly _nominal_HumanoidRigDescription: unique symbol;
|
|
21217
|
+
/**
|
|
21218
|
+
* - **ThreadSafety**: ReadSafe
|
|
21219
|
+
*
|
|
21220
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Chest)
|
|
21221
|
+
*/
|
|
21222
|
+
Chest: Instance | undefined;
|
|
21223
|
+
/**
|
|
21224
|
+
* - **ThreadSafety**: ReadSafe
|
|
21225
|
+
*
|
|
21226
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#ChestRangeMax)
|
|
21227
|
+
*/
|
|
21228
|
+
ChestRangeMax: Vector3;
|
|
21229
|
+
/**
|
|
21230
|
+
* - **ThreadSafety**: ReadSafe
|
|
21231
|
+
*
|
|
21232
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#ChestRangeMin)
|
|
21233
|
+
*/
|
|
21234
|
+
ChestRangeMin: Vector3;
|
|
21235
|
+
/**
|
|
21236
|
+
* - **ThreadSafety**: ReadSafe
|
|
21237
|
+
*
|
|
21238
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#ChestSize)
|
|
21239
|
+
*/
|
|
21240
|
+
ChestSize: number;
|
|
21241
|
+
/**
|
|
21242
|
+
* - **ThreadSafety**: ReadSafe
|
|
21243
|
+
*
|
|
21244
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#ChestTposeAdjustment)
|
|
21245
|
+
*/
|
|
21246
|
+
ChestTposeAdjustment: CFrame;
|
|
21247
|
+
/**
|
|
21248
|
+
* - **ThreadSafety**: ReadSafe
|
|
21249
|
+
*
|
|
21250
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Head)
|
|
21251
|
+
*/
|
|
21252
|
+
Head: Instance | undefined;
|
|
21253
|
+
/**
|
|
21254
|
+
* - **ThreadSafety**: ReadSafe
|
|
21255
|
+
*
|
|
21256
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadRangeMax)
|
|
21257
|
+
*/
|
|
21258
|
+
HeadRangeMax: Vector3;
|
|
21259
|
+
/**
|
|
21260
|
+
* - **ThreadSafety**: ReadSafe
|
|
21261
|
+
*
|
|
21262
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadRangeMin)
|
|
21263
|
+
*/
|
|
21264
|
+
HeadRangeMin: Vector3;
|
|
21265
|
+
/**
|
|
21266
|
+
* - **ThreadSafety**: ReadSafe
|
|
21267
|
+
*
|
|
21268
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadSize)
|
|
21269
|
+
*/
|
|
21270
|
+
HeadSize: number;
|
|
21271
|
+
/**
|
|
21272
|
+
* - **ThreadSafety**: ReadSafe
|
|
21273
|
+
*
|
|
21274
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#HeadTposeAdjustment)
|
|
21275
|
+
*/
|
|
21276
|
+
HeadTposeAdjustment: CFrame;
|
|
21277
|
+
/**
|
|
21278
|
+
* - **ThreadSafety**: ReadSafe
|
|
21279
|
+
*
|
|
21280
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftAnkle)
|
|
21281
|
+
*/
|
|
21282
|
+
LeftAnkle: Instance | undefined;
|
|
21283
|
+
/**
|
|
21284
|
+
* - **ThreadSafety**: ReadSafe
|
|
21285
|
+
*
|
|
21286
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftAnkleRangeMax)
|
|
21287
|
+
*/
|
|
21288
|
+
LeftAnkleRangeMax: Vector3;
|
|
21289
|
+
/**
|
|
21290
|
+
* - **ThreadSafety**: ReadSafe
|
|
21291
|
+
*
|
|
21292
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftAnkleRangeMin)
|
|
21293
|
+
*/
|
|
21294
|
+
LeftAnkleRangeMin: Vector3;
|
|
21295
|
+
/**
|
|
21296
|
+
* - **ThreadSafety**: ReadSafe
|
|
21297
|
+
*
|
|
21298
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftAnkleSize)
|
|
21299
|
+
*/
|
|
21300
|
+
LeftAnkleSize: number;
|
|
21301
|
+
/**
|
|
21302
|
+
* - **ThreadSafety**: ReadSafe
|
|
21303
|
+
*
|
|
21304
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftAnkleTposeAdjustment)
|
|
21305
|
+
*/
|
|
21306
|
+
LeftAnkleTposeAdjustment: CFrame;
|
|
21307
|
+
/**
|
|
21308
|
+
* - **ThreadSafety**: ReadSafe
|
|
21309
|
+
*
|
|
21310
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftClavicle)
|
|
21311
|
+
*/
|
|
21312
|
+
LeftClavicle: Instance | undefined;
|
|
21313
|
+
/**
|
|
21314
|
+
* - **ThreadSafety**: ReadSafe
|
|
21315
|
+
*
|
|
21316
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftClavicleRangeMax)
|
|
21317
|
+
*/
|
|
21318
|
+
LeftClavicleRangeMax: Vector3;
|
|
21319
|
+
/**
|
|
21320
|
+
* - **ThreadSafety**: ReadSafe
|
|
21321
|
+
*
|
|
21322
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftClavicleRangeMin)
|
|
21323
|
+
*/
|
|
21324
|
+
LeftClavicleRangeMin: Vector3;
|
|
21325
|
+
/**
|
|
21326
|
+
* - **ThreadSafety**: ReadSafe
|
|
21327
|
+
*
|
|
21328
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftClavicleSize)
|
|
21329
|
+
*/
|
|
21330
|
+
LeftClavicleSize: number;
|
|
21331
|
+
/**
|
|
21332
|
+
* - **ThreadSafety**: ReadSafe
|
|
21333
|
+
*
|
|
21334
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftClavicleTposeAdjustment)
|
|
21335
|
+
*/
|
|
21336
|
+
LeftClavicleTposeAdjustment: CFrame;
|
|
21337
|
+
/**
|
|
21338
|
+
* - **ThreadSafety**: ReadSafe
|
|
21339
|
+
*
|
|
21340
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftElbow)
|
|
21341
|
+
*/
|
|
21342
|
+
LeftElbow: Instance | undefined;
|
|
21343
|
+
/**
|
|
21344
|
+
* - **ThreadSafety**: ReadSafe
|
|
21345
|
+
*
|
|
21346
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftElbowRangeMax)
|
|
21347
|
+
*/
|
|
21348
|
+
LeftElbowRangeMax: Vector3;
|
|
21349
|
+
/**
|
|
21350
|
+
* - **ThreadSafety**: ReadSafe
|
|
21351
|
+
*
|
|
21352
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftElbowRangeMin)
|
|
21353
|
+
*/
|
|
21354
|
+
LeftElbowRangeMin: Vector3;
|
|
21355
|
+
/**
|
|
21356
|
+
* - **ThreadSafety**: ReadSafe
|
|
21357
|
+
*
|
|
21358
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftElbowSize)
|
|
21359
|
+
*/
|
|
21360
|
+
LeftElbowSize: number;
|
|
21361
|
+
/**
|
|
21362
|
+
* - **ThreadSafety**: ReadSafe
|
|
21363
|
+
*
|
|
21364
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftElbowTposeAdjustment)
|
|
21365
|
+
*/
|
|
21366
|
+
LeftElbowTposeAdjustment: CFrame;
|
|
21367
|
+
/**
|
|
21368
|
+
* - **ThreadSafety**: ReadSafe
|
|
21369
|
+
*
|
|
21370
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftHip)
|
|
21371
|
+
*/
|
|
21372
|
+
LeftHip: Instance | undefined;
|
|
21373
|
+
/**
|
|
21374
|
+
* - **ThreadSafety**: ReadSafe
|
|
21375
|
+
*
|
|
21376
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftHipRangeMax)
|
|
21377
|
+
*/
|
|
21378
|
+
LeftHipRangeMax: Vector3;
|
|
21379
|
+
/**
|
|
21380
|
+
* - **ThreadSafety**: ReadSafe
|
|
21381
|
+
*
|
|
21382
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftHipRangeMin)
|
|
21383
|
+
*/
|
|
21384
|
+
LeftHipRangeMin: Vector3;
|
|
21385
|
+
/**
|
|
21386
|
+
* - **ThreadSafety**: ReadSafe
|
|
21387
|
+
*
|
|
21388
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftHipSize)
|
|
21389
|
+
*/
|
|
21390
|
+
LeftHipSize: number;
|
|
21391
|
+
/**
|
|
21392
|
+
* - **ThreadSafety**: ReadSafe
|
|
21393
|
+
*
|
|
21394
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftHipTposeAdjustment)
|
|
21395
|
+
*/
|
|
21396
|
+
LeftHipTposeAdjustment: CFrame;
|
|
21397
|
+
/**
|
|
21398
|
+
* - **ThreadSafety**: ReadSafe
|
|
21399
|
+
*
|
|
21400
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftKnee)
|
|
21401
|
+
*/
|
|
21402
|
+
LeftKnee: Instance | undefined;
|
|
21403
|
+
/**
|
|
21404
|
+
* - **ThreadSafety**: ReadSafe
|
|
21405
|
+
*
|
|
21406
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftKneeRangeMax)
|
|
21407
|
+
*/
|
|
21408
|
+
LeftKneeRangeMax: Vector3;
|
|
21409
|
+
/**
|
|
21410
|
+
* - **ThreadSafety**: ReadSafe
|
|
21411
|
+
*
|
|
21412
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftKneeRangeMin)
|
|
21413
|
+
*/
|
|
21414
|
+
LeftKneeRangeMin: Vector3;
|
|
21415
|
+
/**
|
|
21416
|
+
* - **ThreadSafety**: ReadSafe
|
|
21417
|
+
*
|
|
21418
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftKneeSize)
|
|
21419
|
+
*/
|
|
21420
|
+
LeftKneeSize: number;
|
|
21421
|
+
/**
|
|
21422
|
+
* - **ThreadSafety**: ReadSafe
|
|
21423
|
+
*
|
|
21424
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftKneeTposeAdjustment)
|
|
21425
|
+
*/
|
|
21426
|
+
LeftKneeTposeAdjustment: CFrame;
|
|
21427
|
+
/**
|
|
21428
|
+
* - **ThreadSafety**: ReadSafe
|
|
21429
|
+
*
|
|
21430
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftShoulder)
|
|
21431
|
+
*/
|
|
21432
|
+
LeftShoulder: Instance | undefined;
|
|
21433
|
+
/**
|
|
21434
|
+
* - **ThreadSafety**: ReadSafe
|
|
21435
|
+
*
|
|
21436
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftShoulderRangeMax)
|
|
21437
|
+
*/
|
|
21438
|
+
LeftShoulderRangeMax: Vector3;
|
|
21439
|
+
/**
|
|
21440
|
+
* - **ThreadSafety**: ReadSafe
|
|
21441
|
+
*
|
|
21442
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftShoulderRangeMin)
|
|
21443
|
+
*/
|
|
21444
|
+
LeftShoulderRangeMin: Vector3;
|
|
21445
|
+
/**
|
|
21446
|
+
* - **ThreadSafety**: ReadSafe
|
|
21447
|
+
*
|
|
21448
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftShoulderSize)
|
|
21449
|
+
*/
|
|
21450
|
+
LeftShoulderSize: number;
|
|
21451
|
+
/**
|
|
21452
|
+
* - **ThreadSafety**: ReadSafe
|
|
21453
|
+
*
|
|
21454
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftShoulderTposeAdjustment)
|
|
21455
|
+
*/
|
|
21456
|
+
LeftShoulderTposeAdjustment: CFrame;
|
|
21457
|
+
/**
|
|
21458
|
+
* - **ThreadSafety**: ReadSafe
|
|
21459
|
+
*
|
|
21460
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToes)
|
|
21461
|
+
*/
|
|
21462
|
+
LeftToes: Instance | undefined;
|
|
21463
|
+
/**
|
|
21464
|
+
* - **ThreadSafety**: ReadSafe
|
|
21465
|
+
*
|
|
21466
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToesRangeMax)
|
|
21467
|
+
*/
|
|
21468
|
+
LeftToesRangeMax: Vector3;
|
|
21469
|
+
/**
|
|
21470
|
+
* - **ThreadSafety**: ReadSafe
|
|
21471
|
+
*
|
|
21472
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToesRangeMin)
|
|
21473
|
+
*/
|
|
21474
|
+
LeftToesRangeMin: Vector3;
|
|
21475
|
+
/**
|
|
21476
|
+
* - **ThreadSafety**: ReadSafe
|
|
21477
|
+
*
|
|
21478
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToesSize)
|
|
21479
|
+
*/
|
|
21480
|
+
LeftToesSize: number;
|
|
21481
|
+
/**
|
|
21482
|
+
* - **ThreadSafety**: ReadSafe
|
|
21483
|
+
*
|
|
21484
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToesTposeAdjustment)
|
|
21485
|
+
*/
|
|
21486
|
+
LeftToesTposeAdjustment: CFrame;
|
|
21487
|
+
/**
|
|
21488
|
+
* - **ThreadSafety**: ReadSafe
|
|
21489
|
+
*
|
|
21490
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftWrist)
|
|
21491
|
+
*/
|
|
21492
|
+
LeftWrist: Instance | undefined;
|
|
21493
|
+
/**
|
|
21494
|
+
* - **ThreadSafety**: ReadSafe
|
|
21495
|
+
*
|
|
21496
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftWristRangeMax)
|
|
21497
|
+
*/
|
|
21498
|
+
LeftWristRangeMax: Vector3;
|
|
21499
|
+
/**
|
|
21500
|
+
* - **ThreadSafety**: ReadSafe
|
|
21501
|
+
*
|
|
21502
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftWristRangeMin)
|
|
21503
|
+
*/
|
|
21504
|
+
LeftWristRangeMin: Vector3;
|
|
21505
|
+
/**
|
|
21506
|
+
* - **ThreadSafety**: ReadSafe
|
|
21507
|
+
*
|
|
21508
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftWristSize)
|
|
21509
|
+
*/
|
|
21510
|
+
LeftWristSize: number;
|
|
21511
|
+
/**
|
|
21512
|
+
* - **ThreadSafety**: ReadSafe
|
|
21513
|
+
*
|
|
21514
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftWristTposeAdjustment)
|
|
21515
|
+
*/
|
|
21516
|
+
LeftWristTposeAdjustment: CFrame;
|
|
21517
|
+
/**
|
|
21518
|
+
* - **ThreadSafety**: ReadSafe
|
|
21519
|
+
*
|
|
21520
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Neck)
|
|
21521
|
+
*/
|
|
21522
|
+
Neck: Instance | undefined;
|
|
21523
|
+
/**
|
|
21524
|
+
* - **ThreadSafety**: ReadSafe
|
|
21525
|
+
*
|
|
21526
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#NeckRangeMax)
|
|
21527
|
+
*/
|
|
21528
|
+
NeckRangeMax: Vector3;
|
|
21529
|
+
/**
|
|
21530
|
+
* - **ThreadSafety**: ReadSafe
|
|
21531
|
+
*
|
|
21532
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#NeckRangeMin)
|
|
21533
|
+
*/
|
|
21534
|
+
NeckRangeMin: Vector3;
|
|
21535
|
+
/**
|
|
21536
|
+
* - **ThreadSafety**: ReadSafe
|
|
21537
|
+
*
|
|
21538
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#NeckSize)
|
|
21539
|
+
*/
|
|
21540
|
+
NeckSize: number;
|
|
21541
|
+
/**
|
|
21542
|
+
* - **ThreadSafety**: ReadSafe
|
|
21543
|
+
*
|
|
21544
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#NeckTposeAdjustment)
|
|
21545
|
+
*/
|
|
21546
|
+
NeckTposeAdjustment: CFrame;
|
|
21547
|
+
/**
|
|
21548
|
+
* - **ThreadSafety**: ReadSafe
|
|
21549
|
+
*
|
|
21550
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Pelvis)
|
|
21551
|
+
*/
|
|
21552
|
+
Pelvis: Instance | undefined;
|
|
21553
|
+
/**
|
|
21554
|
+
* - **ThreadSafety**: ReadSafe
|
|
21555
|
+
*
|
|
21556
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#PelvisRangeMax)
|
|
21557
|
+
*/
|
|
21558
|
+
PelvisRangeMax: Vector3;
|
|
21559
|
+
/**
|
|
21560
|
+
* - **ThreadSafety**: ReadSafe
|
|
21561
|
+
*
|
|
21562
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#PelvisRangeMin)
|
|
21563
|
+
*/
|
|
21564
|
+
PelvisRangeMin: Vector3;
|
|
21565
|
+
/**
|
|
21566
|
+
* - **ThreadSafety**: ReadSafe
|
|
21567
|
+
*
|
|
21568
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#PelvisSize)
|
|
21569
|
+
*/
|
|
21570
|
+
PelvisSize: number;
|
|
21571
|
+
/**
|
|
21572
|
+
* - **ThreadSafety**: ReadSafe
|
|
21573
|
+
*
|
|
21574
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#PelvisTposeAdjustment)
|
|
21575
|
+
*/
|
|
21576
|
+
PelvisTposeAdjustment: CFrame;
|
|
21577
|
+
/**
|
|
21578
|
+
* - **ThreadSafety**: ReadSafe
|
|
21579
|
+
*
|
|
21580
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightAnkle)
|
|
21581
|
+
*/
|
|
21582
|
+
RightAnkle: Instance | undefined;
|
|
21583
|
+
/**
|
|
21584
|
+
* - **ThreadSafety**: ReadSafe
|
|
21585
|
+
*
|
|
21586
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightAnkleRangeMax)
|
|
21587
|
+
*/
|
|
21588
|
+
RightAnkleRangeMax: Vector3;
|
|
21589
|
+
/**
|
|
21590
|
+
* - **ThreadSafety**: ReadSafe
|
|
21591
|
+
*
|
|
21592
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightAnkleRangeMin)
|
|
21593
|
+
*/
|
|
21594
|
+
RightAnkleRangeMin: Vector3;
|
|
21595
|
+
/**
|
|
21596
|
+
* - **ThreadSafety**: ReadSafe
|
|
21597
|
+
*
|
|
21598
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightAnkleSize)
|
|
21599
|
+
*/
|
|
21600
|
+
RightAnkleSize: number;
|
|
21601
|
+
/**
|
|
21602
|
+
* - **ThreadSafety**: ReadSafe
|
|
21603
|
+
*
|
|
21604
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightAnkleTposeAdjustment)
|
|
21605
|
+
*/
|
|
21606
|
+
RightAnkleTposeAdjustment: CFrame;
|
|
21607
|
+
/**
|
|
21608
|
+
* - **ThreadSafety**: ReadSafe
|
|
21609
|
+
*
|
|
21610
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightClavicle)
|
|
21611
|
+
*/
|
|
21612
|
+
RightClavicle: Instance | undefined;
|
|
21613
|
+
/**
|
|
21614
|
+
* - **ThreadSafety**: ReadSafe
|
|
21615
|
+
*
|
|
21616
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightClavicleRangeMax)
|
|
21617
|
+
*/
|
|
21618
|
+
RightClavicleRangeMax: Vector3;
|
|
21619
|
+
/**
|
|
21620
|
+
* - **ThreadSafety**: ReadSafe
|
|
21621
|
+
*
|
|
21622
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightClavicleRangeMin)
|
|
21623
|
+
*/
|
|
21624
|
+
RightClavicleRangeMin: Vector3;
|
|
21625
|
+
/**
|
|
21626
|
+
* - **ThreadSafety**: ReadSafe
|
|
21627
|
+
*
|
|
21628
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightClavicleSize)
|
|
21629
|
+
*/
|
|
21630
|
+
RightClavicleSize: number;
|
|
21631
|
+
/**
|
|
21632
|
+
* - **ThreadSafety**: ReadSafe
|
|
21633
|
+
*
|
|
21634
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightClavicleTposeAdjustment)
|
|
21635
|
+
*/
|
|
21636
|
+
RightClavicleTposeAdjustment: CFrame;
|
|
21637
|
+
/**
|
|
21638
|
+
* - **ThreadSafety**: ReadSafe
|
|
21639
|
+
*
|
|
21640
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightElbow)
|
|
21641
|
+
*/
|
|
21642
|
+
RightElbow: Instance | undefined;
|
|
21643
|
+
/**
|
|
21644
|
+
* - **ThreadSafety**: ReadSafe
|
|
21645
|
+
*
|
|
21646
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightElbowRangeMax)
|
|
21647
|
+
*/
|
|
21648
|
+
RightElbowRangeMax: Vector3;
|
|
21649
|
+
/**
|
|
21650
|
+
* - **ThreadSafety**: ReadSafe
|
|
21651
|
+
*
|
|
21652
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightElbowRangeMin)
|
|
21653
|
+
*/
|
|
21654
|
+
RightElbowRangeMin: Vector3;
|
|
21655
|
+
/**
|
|
21656
|
+
* - **ThreadSafety**: ReadSafe
|
|
21657
|
+
*
|
|
21658
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightElbowSize)
|
|
21659
|
+
*/
|
|
21660
|
+
RightElbowSize: number;
|
|
21661
|
+
/**
|
|
21662
|
+
* - **ThreadSafety**: ReadSafe
|
|
21663
|
+
*
|
|
21664
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightElbowTposeAdjustment)
|
|
21665
|
+
*/
|
|
21666
|
+
RightElbowTposeAdjustment: CFrame;
|
|
21667
|
+
/**
|
|
21668
|
+
* - **ThreadSafety**: ReadSafe
|
|
21669
|
+
*
|
|
21670
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightHip)
|
|
21671
|
+
*/
|
|
21672
|
+
RightHip: Instance | undefined;
|
|
21673
|
+
/**
|
|
21674
|
+
* - **ThreadSafety**: ReadSafe
|
|
21675
|
+
*
|
|
21676
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightHipRangeMax)
|
|
21677
|
+
*/
|
|
21678
|
+
RightHipRangeMax: Vector3;
|
|
21679
|
+
/**
|
|
21680
|
+
* - **ThreadSafety**: ReadSafe
|
|
21681
|
+
*
|
|
21682
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightHipRangeMin)
|
|
21683
|
+
*/
|
|
21684
|
+
RightHipRangeMin: Vector3;
|
|
21685
|
+
/**
|
|
21686
|
+
* - **ThreadSafety**: ReadSafe
|
|
21687
|
+
*
|
|
21688
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightHipSize)
|
|
21689
|
+
*/
|
|
21690
|
+
RightHipSize: number;
|
|
21691
|
+
/**
|
|
21692
|
+
* - **ThreadSafety**: ReadSafe
|
|
21693
|
+
*
|
|
21694
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightHipTposeAdjustment)
|
|
21695
|
+
*/
|
|
21696
|
+
RightHipTposeAdjustment: CFrame;
|
|
21697
|
+
/**
|
|
21698
|
+
* - **ThreadSafety**: ReadSafe
|
|
21699
|
+
*
|
|
21700
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightKnee)
|
|
21701
|
+
*/
|
|
21702
|
+
RightKnee: Instance | undefined;
|
|
21703
|
+
/**
|
|
21704
|
+
* - **ThreadSafety**: ReadSafe
|
|
21705
|
+
*
|
|
21706
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightKneeRangeMax)
|
|
21707
|
+
*/
|
|
21708
|
+
RightKneeRangeMax: Vector3;
|
|
21709
|
+
/**
|
|
21710
|
+
* - **ThreadSafety**: ReadSafe
|
|
21711
|
+
*
|
|
21712
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightKneeRangeMin)
|
|
21713
|
+
*/
|
|
21714
|
+
RightKneeRangeMin: Vector3;
|
|
21715
|
+
/**
|
|
21716
|
+
* - **ThreadSafety**: ReadSafe
|
|
21717
|
+
*
|
|
21718
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightKneeSize)
|
|
21719
|
+
*/
|
|
21720
|
+
RightKneeSize: number;
|
|
21721
|
+
/**
|
|
21722
|
+
* - **ThreadSafety**: ReadSafe
|
|
21723
|
+
*
|
|
21724
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightKneeTposeAdjustment)
|
|
21725
|
+
*/
|
|
21726
|
+
RightKneeTposeAdjustment: CFrame;
|
|
21727
|
+
/**
|
|
21728
|
+
* - **ThreadSafety**: ReadSafe
|
|
21729
|
+
*
|
|
21730
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightShoulder)
|
|
21731
|
+
*/
|
|
21732
|
+
RightShoulder: Instance | undefined;
|
|
21733
|
+
/**
|
|
21734
|
+
* - **ThreadSafety**: ReadSafe
|
|
21735
|
+
*
|
|
21736
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightShoulderRangeMax)
|
|
21737
|
+
*/
|
|
21738
|
+
RightShoulderRangeMax: Vector3;
|
|
21739
|
+
/**
|
|
21740
|
+
* - **ThreadSafety**: ReadSafe
|
|
21741
|
+
*
|
|
21742
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightShoulderRangeMin)
|
|
21743
|
+
*/
|
|
21744
|
+
RightShoulderRangeMin: Vector3;
|
|
21745
|
+
/**
|
|
21746
|
+
* - **ThreadSafety**: ReadSafe
|
|
21747
|
+
*
|
|
21748
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightShoulderSize)
|
|
21749
|
+
*/
|
|
21750
|
+
RightShoulderSize: number;
|
|
21751
|
+
/**
|
|
21752
|
+
* - **ThreadSafety**: ReadSafe
|
|
21753
|
+
*
|
|
21754
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightShoulderTposeAdjustment)
|
|
21755
|
+
*/
|
|
21756
|
+
RightShoulderTposeAdjustment: CFrame;
|
|
21757
|
+
/**
|
|
21758
|
+
* - **ThreadSafety**: ReadSafe
|
|
21759
|
+
*
|
|
21760
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToes)
|
|
21761
|
+
*/
|
|
21762
|
+
RightToes: Instance | undefined;
|
|
21763
|
+
/**
|
|
21764
|
+
* - **ThreadSafety**: ReadSafe
|
|
21765
|
+
*
|
|
21766
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToesRangeMax)
|
|
21767
|
+
*/
|
|
21768
|
+
RightToesRangeMax: Vector3;
|
|
21769
|
+
/**
|
|
21770
|
+
* - **ThreadSafety**: ReadSafe
|
|
21771
|
+
*
|
|
21772
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToesRangeMin)
|
|
21773
|
+
*/
|
|
21774
|
+
RightToesRangeMin: Vector3;
|
|
21775
|
+
/**
|
|
21776
|
+
* - **ThreadSafety**: ReadSafe
|
|
21777
|
+
*
|
|
21778
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToesSize)
|
|
21779
|
+
*/
|
|
21780
|
+
RightToesSize: number;
|
|
21781
|
+
/**
|
|
21782
|
+
* - **ThreadSafety**: ReadSafe
|
|
21783
|
+
*
|
|
21784
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToesTposeAdjustment)
|
|
21785
|
+
*/
|
|
21786
|
+
RightToesTposeAdjustment: CFrame;
|
|
21787
|
+
/**
|
|
21788
|
+
* - **ThreadSafety**: ReadSafe
|
|
21789
|
+
*
|
|
21790
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightWrist)
|
|
21791
|
+
*/
|
|
21792
|
+
RightWrist: Instance | undefined;
|
|
21793
|
+
/**
|
|
21794
|
+
* - **ThreadSafety**: ReadSafe
|
|
21795
|
+
*
|
|
21796
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightWristRangeMax)
|
|
21797
|
+
*/
|
|
21798
|
+
RightWristRangeMax: Vector3;
|
|
21799
|
+
/**
|
|
21800
|
+
* - **ThreadSafety**: ReadSafe
|
|
21801
|
+
*
|
|
21802
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightWristRangeMin)
|
|
21803
|
+
*/
|
|
21804
|
+
RightWristRangeMin: Vector3;
|
|
21805
|
+
/**
|
|
21806
|
+
* - **ThreadSafety**: ReadSafe
|
|
21807
|
+
*
|
|
21808
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightWristSize)
|
|
21809
|
+
*/
|
|
21810
|
+
RightWristSize: number;
|
|
21811
|
+
/**
|
|
21812
|
+
* - **ThreadSafety**: ReadSafe
|
|
21813
|
+
*
|
|
21814
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightWristTposeAdjustment)
|
|
21815
|
+
*/
|
|
21816
|
+
RightWristTposeAdjustment: CFrame;
|
|
21817
|
+
/**
|
|
21818
|
+
* - **ThreadSafety**: ReadSafe
|
|
21819
|
+
*
|
|
21820
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Root)
|
|
21821
|
+
*/
|
|
21822
|
+
Root: Instance | undefined;
|
|
21823
|
+
/**
|
|
21824
|
+
* - **ThreadSafety**: ReadSafe
|
|
21825
|
+
*
|
|
21826
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RootRangeMax)
|
|
21827
|
+
*/
|
|
21828
|
+
RootRangeMax: Vector3;
|
|
21829
|
+
/**
|
|
21830
|
+
* - **ThreadSafety**: ReadSafe
|
|
21831
|
+
*
|
|
21832
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RootRangeMin)
|
|
21833
|
+
*/
|
|
21834
|
+
RootRangeMin: Vector3;
|
|
21835
|
+
/**
|
|
21836
|
+
* - **ThreadSafety**: ReadSafe
|
|
21837
|
+
*
|
|
21838
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RootSize)
|
|
21839
|
+
*/
|
|
21840
|
+
RootSize: number;
|
|
21841
|
+
/**
|
|
21842
|
+
* - **ThreadSafety**: ReadSafe
|
|
21843
|
+
*
|
|
21844
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RootTposeAdjustment)
|
|
21845
|
+
*/
|
|
21846
|
+
RootTposeAdjustment: CFrame;
|
|
21847
|
+
/**
|
|
21848
|
+
* - **ThreadSafety**: ReadSafe
|
|
21849
|
+
*
|
|
21850
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Waist)
|
|
21851
|
+
*/
|
|
21852
|
+
Waist: Instance | undefined;
|
|
21853
|
+
/**
|
|
21854
|
+
* - **ThreadSafety**: ReadSafe
|
|
21855
|
+
*
|
|
21856
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#WaistRangeMax)
|
|
21857
|
+
*/
|
|
21858
|
+
WaistRangeMax: Vector3;
|
|
21859
|
+
/**
|
|
21860
|
+
* - **ThreadSafety**: ReadSafe
|
|
21861
|
+
*
|
|
21862
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#WaistRangeMin)
|
|
21863
|
+
*/
|
|
21864
|
+
WaistRangeMin: Vector3;
|
|
21865
|
+
/**
|
|
21866
|
+
* - **ThreadSafety**: ReadSafe
|
|
21867
|
+
*
|
|
21868
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#WaistSize)
|
|
21869
|
+
*/
|
|
21870
|
+
WaistSize: number;
|
|
21871
|
+
/**
|
|
21872
|
+
* - **ThreadSafety**: ReadSafe
|
|
21873
|
+
*
|
|
21874
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#WaistTposeAdjustment)
|
|
21875
|
+
*/
|
|
21876
|
+
WaistTposeAdjustment: CFrame;
|
|
21877
|
+
/**
|
|
21878
|
+
* - **ThreadSafety**: Safe
|
|
21879
|
+
*
|
|
21880
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Automap)
|
|
21881
|
+
*/
|
|
21882
|
+
Automap(this: HumanoidRigDescription, character: Instance): void;
|
|
21883
|
+
/**
|
|
21884
|
+
* - **ThreadSafety**: Safe
|
|
21885
|
+
*
|
|
21886
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#GetJointNames)
|
|
21887
|
+
*/
|
|
21888
|
+
GetJointNames(this: HumanoidRigDescription): Array<unknown>;
|
|
21889
|
+
/**
|
|
21890
|
+
* - **ThreadSafety**: Safe
|
|
21891
|
+
*
|
|
21892
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#GetR15JointNames)
|
|
21893
|
+
*/
|
|
21894
|
+
GetR15JointNames(this: HumanoidRigDescription): Array<unknown>;
|
|
21895
|
+
/**
|
|
21896
|
+
* - **ThreadSafety**: Safe
|
|
21897
|
+
*
|
|
21898
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#GetR6JointNames)
|
|
21899
|
+
*/
|
|
21900
|
+
GetR6JointNames(this: HumanoidRigDescription): Array<unknown>;
|
|
21901
|
+
}
|
|
20858
21902
|
/**
|
|
20859
21903
|
* Specifies a control to generate a procedural animation pose using Inverse Kinematics.
|
|
20860
21904
|
*
|
|
@@ -21092,6 +22136,126 @@ interface IncrementalPatchBuilder extends Instance {
|
|
|
21092
22136
|
*/
|
|
21093
22137
|
ZstdCompression: boolean;
|
|
21094
22138
|
}
|
|
22139
|
+
/**
|
|
22140
|
+
* - **Tags**: NotBrowsable
|
|
22141
|
+
*
|
|
22142
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction)
|
|
22143
|
+
*/
|
|
22144
|
+
interface InputAction extends Instance {
|
|
22145
|
+
/**
|
|
22146
|
+
* **DO NOT USE!**
|
|
22147
|
+
*
|
|
22148
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
22149
|
+
* @hidden
|
|
22150
|
+
* @deprecated
|
|
22151
|
+
*/
|
|
22152
|
+
readonly _nominal_InputAction: unique symbol;
|
|
22153
|
+
/**
|
|
22154
|
+
* - **ThreadSafety**: ReadSafe
|
|
22155
|
+
*
|
|
22156
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#Enabled)
|
|
22157
|
+
*/
|
|
22158
|
+
Enabled: boolean;
|
|
22159
|
+
/**
|
|
22160
|
+
* - **ThreadSafety**: ReadSafe
|
|
22161
|
+
*
|
|
22162
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#Type)
|
|
22163
|
+
*/
|
|
22164
|
+
Type: Enum.InputActionType;
|
|
22165
|
+
/**
|
|
22166
|
+
* - **ThreadSafety**: Unsafe
|
|
22167
|
+
*
|
|
22168
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#Fire)
|
|
22169
|
+
* @param this
|
|
22170
|
+
* @param value
|
|
22171
|
+
*/
|
|
22172
|
+
Fire(this: InputAction, value: unknown): void;
|
|
22173
|
+
/**
|
|
22174
|
+
* - **ThreadSafety**: Unsafe
|
|
22175
|
+
*
|
|
22176
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#GetState)
|
|
22177
|
+
* @param this
|
|
22178
|
+
*/
|
|
22179
|
+
GetState(this: InputAction): unknown;
|
|
22180
|
+
/**
|
|
22181
|
+
* - **ThreadSafety**: Unsafe
|
|
22182
|
+
*
|
|
22183
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#Pressed)
|
|
22184
|
+
*/
|
|
22185
|
+
readonly Pressed: RBXScriptSignal<() => void>;
|
|
22186
|
+
/**
|
|
22187
|
+
* - **ThreadSafety**: Unsafe
|
|
22188
|
+
*
|
|
22189
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#Released)
|
|
22190
|
+
*/
|
|
22191
|
+
readonly Released: RBXScriptSignal<() => void>;
|
|
22192
|
+
/**
|
|
22193
|
+
* - **ThreadSafety**: Unsafe
|
|
22194
|
+
*
|
|
22195
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#StateChanged)
|
|
22196
|
+
*/
|
|
22197
|
+
readonly StateChanged: RBXScriptSignal<(value: unknown) => void>;
|
|
22198
|
+
}
|
|
22199
|
+
/**
|
|
22200
|
+
* - **Tags**: NotBrowsable
|
|
22201
|
+
*
|
|
22202
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding)
|
|
22203
|
+
*/
|
|
22204
|
+
interface InputBinding extends Instance {
|
|
22205
|
+
/**
|
|
22206
|
+
* **DO NOT USE!**
|
|
22207
|
+
*
|
|
22208
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
22209
|
+
* @hidden
|
|
22210
|
+
* @deprecated
|
|
22211
|
+
*/
|
|
22212
|
+
readonly _nominal_InputBinding: unique symbol;
|
|
22213
|
+
/**
|
|
22214
|
+
* - **ThreadSafety**: ReadSafe
|
|
22215
|
+
*
|
|
22216
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#KeyCode)
|
|
22217
|
+
*/
|
|
22218
|
+
KeyCode: Enum.KeyCode;
|
|
22219
|
+
/**
|
|
22220
|
+
* - **ThreadSafety**: ReadSafe
|
|
22221
|
+
*
|
|
22222
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputBinding#UIButton)
|
|
22223
|
+
*/
|
|
22224
|
+
UIButton: GuiButton | undefined;
|
|
22225
|
+
}
|
|
22226
|
+
/**
|
|
22227
|
+
* - **Tags**: NotBrowsable
|
|
22228
|
+
*
|
|
22229
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputContext)
|
|
22230
|
+
*/
|
|
22231
|
+
interface InputContext extends Instance {
|
|
22232
|
+
/**
|
|
22233
|
+
* **DO NOT USE!**
|
|
22234
|
+
*
|
|
22235
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
22236
|
+
* @hidden
|
|
22237
|
+
* @deprecated
|
|
22238
|
+
*/
|
|
22239
|
+
readonly _nominal_InputContext: unique symbol;
|
|
22240
|
+
/**
|
|
22241
|
+
* - **ThreadSafety**: ReadSafe
|
|
22242
|
+
*
|
|
22243
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputContext#Enabled)
|
|
22244
|
+
*/
|
|
22245
|
+
Enabled: boolean;
|
|
22246
|
+
/**
|
|
22247
|
+
* - **ThreadSafety**: ReadSafe
|
|
22248
|
+
*
|
|
22249
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputContext#Priority)
|
|
22250
|
+
*/
|
|
22251
|
+
Priority: number;
|
|
22252
|
+
/**
|
|
22253
|
+
* - **ThreadSafety**: ReadSafe
|
|
22254
|
+
*
|
|
22255
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputContext#Sink)
|
|
22256
|
+
*/
|
|
22257
|
+
Sink: boolean;
|
|
22258
|
+
}
|
|
21095
22259
|
/**
|
|
21096
22260
|
* An object created when an input begins that describes a particular user input.
|
|
21097
22261
|
*
|
|
@@ -23032,6 +24196,29 @@ interface LuaSourceContainer extends Instance {
|
|
|
23032
24196
|
*/
|
|
23033
24197
|
readonly _nominal_LuaSourceContainer: unique symbol;
|
|
23034
24198
|
}
|
|
24199
|
+
/**
|
|
24200
|
+
* - **Tags**:
|
|
24201
|
+
*
|
|
24202
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript)
|
|
24203
|
+
*
|
|
24204
|
+
* @deprecated
|
|
24205
|
+
*/
|
|
24206
|
+
interface AuroraScript extends LuaSourceContainer {
|
|
24207
|
+
/**
|
|
24208
|
+
* **DO NOT USE!**
|
|
24209
|
+
*
|
|
24210
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
24211
|
+
* @hidden
|
|
24212
|
+
* @deprecated
|
|
24213
|
+
*/
|
|
24214
|
+
readonly _nominal_AuroraScript: unique symbol;
|
|
24215
|
+
/**
|
|
24216
|
+
* - **ThreadSafety**: ReadSafe
|
|
24217
|
+
*
|
|
24218
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Tag)
|
|
24219
|
+
*/
|
|
24220
|
+
get Tag(): string;
|
|
24221
|
+
}
|
|
23035
24222
|
/**
|
|
23036
24223
|
* The base class for all script objects which run automatically.
|
|
23037
24224
|
*
|
|
@@ -23560,6 +24747,7 @@ interface MarketplaceService extends Instance {
|
|
|
23560
24747
|
* - `PlaceIdWherePurchased` — The place ID in which the purchase was made. Depending on where the user is during gameplay, the purchase place's ID can be the same as or different from the current place's ID.
|
|
23561
24748
|
* - `CurrencySpent` — The amount of currency spent in the transaction.
|
|
23562
24749
|
* - `CurrencyType` — The type of currency spent in the purchase; always `CurrencyType.Robux`.
|
|
24750
|
+
* - `ProductPurchaseChannel` — An enum that represents how the user acquired the developer product.
|
|
23563
24751
|
*
|
|
23564
24752
|
*
|
|
23565
24753
|
* @returns An enum that represents how the developer product receipt was processed. - `PurchaseGranted`:
|
|
@@ -29334,6 +30522,8 @@ interface Player extends Instance {
|
|
|
29334
30522
|
* - **ThreadSafety**: Unsafe
|
|
29335
30523
|
*
|
|
29336
30524
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#AddReplicationFocus)
|
|
30525
|
+
* @param this An object that represents a presently connected client to the game.
|
|
30526
|
+
* @param part
|
|
29337
30527
|
*/
|
|
29338
30528
|
AddReplicationFocus(this: Player, part: BasePart): void;
|
|
29339
30529
|
/**
|
|
@@ -29505,6 +30695,8 @@ interface Player extends Instance {
|
|
|
29505
30695
|
* - **ThreadSafety**: Unsafe
|
|
29506
30696
|
*
|
|
29507
30697
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#RemoveReplicationFocus)
|
|
30698
|
+
* @param this An object that represents a presently connected client to the game.
|
|
30699
|
+
* @param part
|
|
29508
30700
|
*/
|
|
29509
30701
|
RemoveReplicationFocus(this: Player, part: BasePart): void;
|
|
29510
30702
|
/**
|
|
@@ -29743,6 +30935,277 @@ interface Player extends Instance {
|
|
|
29743
30935
|
readonly OnTeleport: RBXScriptSignal<(teleportState: Enum.TeleportState, placeId: number, spawnName: string) => void>;
|
|
29744
30936
|
readonly Name: string;
|
|
29745
30937
|
}
|
|
30938
|
+
/**
|
|
30939
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
30940
|
+
*
|
|
30941
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerData)
|
|
30942
|
+
*/
|
|
30943
|
+
interface PlayerData extends Instance {
|
|
30944
|
+
/**
|
|
30945
|
+
* **DO NOT USE!**
|
|
30946
|
+
*
|
|
30947
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
30948
|
+
* @hidden
|
|
30949
|
+
* @deprecated
|
|
30950
|
+
*/
|
|
30951
|
+
readonly _nominal_PlayerData: unique symbol;
|
|
30952
|
+
/**
|
|
30953
|
+
* - **ThreadSafety**: Unsafe
|
|
30954
|
+
*
|
|
30955
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerData#GetPlayer)
|
|
30956
|
+
* @param this
|
|
30957
|
+
*/
|
|
30958
|
+
GetPlayer(this: PlayerData): Player;
|
|
30959
|
+
/**
|
|
30960
|
+
* - **ThreadSafety**: Unsafe
|
|
30961
|
+
*
|
|
30962
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerData#GetRecord)
|
|
30963
|
+
* @param this
|
|
30964
|
+
* @param recordName
|
|
30965
|
+
*/
|
|
30966
|
+
GetRecord(this: PlayerData, recordName?: string): PlayerDataRecord;
|
|
30967
|
+
}
|
|
30968
|
+
/**
|
|
30969
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
30970
|
+
*
|
|
30971
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord)
|
|
30972
|
+
*/
|
|
30973
|
+
interface PlayerDataRecord extends Instance {
|
|
30974
|
+
/**
|
|
30975
|
+
* **DO NOT USE!**
|
|
30976
|
+
*
|
|
30977
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
30978
|
+
* @hidden
|
|
30979
|
+
* @deprecated
|
|
30980
|
+
*/
|
|
30981
|
+
readonly _nominal_PlayerDataRecord: unique symbol;
|
|
30982
|
+
/**
|
|
30983
|
+
* - **ThreadSafety**: ReadSafe
|
|
30984
|
+
* - **Tags**: NotReplicated
|
|
30985
|
+
*
|
|
30986
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#CreatedTime)
|
|
30987
|
+
*/
|
|
30988
|
+
readonly CreatedTime: number;
|
|
30989
|
+
/**
|
|
30990
|
+
* - **ThreadSafety**: ReadSafe
|
|
30991
|
+
* - **Tags**: NotReplicated
|
|
30992
|
+
*
|
|
30993
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#DefaultRecordName)
|
|
30994
|
+
*/
|
|
30995
|
+
readonly DefaultRecordName: boolean;
|
|
30996
|
+
/**
|
|
30997
|
+
* - **ThreadSafety**: ReadSafe
|
|
30998
|
+
* - **Tags**: NotReplicated
|
|
30999
|
+
*
|
|
31000
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#Dirty)
|
|
31001
|
+
*/
|
|
31002
|
+
readonly Dirty: boolean;
|
|
31003
|
+
/**
|
|
31004
|
+
* - **ThreadSafety**: ReadSafe
|
|
31005
|
+
* - **Tags**: NotReplicated
|
|
31006
|
+
*
|
|
31007
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#Error)
|
|
31008
|
+
*/
|
|
31009
|
+
readonly Error: Enum.PlayerDataErrorState;
|
|
31010
|
+
/**
|
|
31011
|
+
* - **ThreadSafety**: ReadSafe
|
|
31012
|
+
* - **Tags**: NotReplicated
|
|
31013
|
+
*
|
|
31014
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#FlushedTime)
|
|
31015
|
+
*/
|
|
31016
|
+
readonly FlushedTime: number;
|
|
31017
|
+
/**
|
|
31018
|
+
* - **ThreadSafety**: ReadSafe
|
|
31019
|
+
* - **Tags**: NotReplicated
|
|
31020
|
+
*
|
|
31021
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#LoadedTime)
|
|
31022
|
+
*/
|
|
31023
|
+
readonly LoadedTime: number;
|
|
31024
|
+
/**
|
|
31025
|
+
* - **ThreadSafety**: ReadSafe
|
|
31026
|
+
* - **Tags**: NotReplicated
|
|
31027
|
+
*
|
|
31028
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#ModifiedTime)
|
|
31029
|
+
*/
|
|
31030
|
+
readonly ModifiedTime: number;
|
|
31031
|
+
/**
|
|
31032
|
+
* - **ThreadSafety**: ReadSafe
|
|
31033
|
+
* - **Tags**: NotReplicated
|
|
31034
|
+
*
|
|
31035
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#NewRecord)
|
|
31036
|
+
*/
|
|
31037
|
+
readonly NewRecord: boolean;
|
|
31038
|
+
/**
|
|
31039
|
+
* - **ThreadSafety**: ReadSafe
|
|
31040
|
+
* - **Tags**: NotReplicated
|
|
31041
|
+
*
|
|
31042
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#Readable)
|
|
31043
|
+
*/
|
|
31044
|
+
readonly Readable: boolean;
|
|
31045
|
+
/**
|
|
31046
|
+
* - **ThreadSafety**: ReadSafe
|
|
31047
|
+
* - **Tags**: NotReplicated
|
|
31048
|
+
*
|
|
31049
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#RecordName)
|
|
31050
|
+
*/
|
|
31051
|
+
readonly RecordName: string;
|
|
31052
|
+
/**
|
|
31053
|
+
* - **ThreadSafety**: ReadSafe
|
|
31054
|
+
* - **Tags**: NotReplicated
|
|
31055
|
+
*
|
|
31056
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#Writable)
|
|
31057
|
+
*/
|
|
31058
|
+
readonly Writable: boolean;
|
|
31059
|
+
/**
|
|
31060
|
+
* - **ThreadSafety**: Unsafe
|
|
31061
|
+
*
|
|
31062
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#GetPlayer)
|
|
31063
|
+
* @param this
|
|
31064
|
+
*/
|
|
31065
|
+
GetPlayer(this: PlayerDataRecord): Player;
|
|
31066
|
+
/**
|
|
31067
|
+
* - **ThreadSafety**: Unsafe
|
|
31068
|
+
*
|
|
31069
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#GetValue)
|
|
31070
|
+
* @param this
|
|
31071
|
+
* @param key
|
|
31072
|
+
*/
|
|
31073
|
+
GetValue(this: PlayerDataRecord, key: string): unknown;
|
|
31074
|
+
/**
|
|
31075
|
+
* - **ThreadSafety**: Unsafe
|
|
31076
|
+
*
|
|
31077
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#GetValueChangedSignal)
|
|
31078
|
+
* @param this
|
|
31079
|
+
* @param key
|
|
31080
|
+
*/
|
|
31081
|
+
GetValueChangedSignal(this: PlayerDataRecord, key: string): RBXScriptSignal;
|
|
31082
|
+
/**
|
|
31083
|
+
* - **ThreadSafety**: Unsafe
|
|
31084
|
+
*
|
|
31085
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#Release)
|
|
31086
|
+
* @param this
|
|
31087
|
+
*/
|
|
31088
|
+
Release(this: PlayerDataRecord): void;
|
|
31089
|
+
/**
|
|
31090
|
+
* - **ThreadSafety**: Unsafe
|
|
31091
|
+
*
|
|
31092
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#RemoveValue)
|
|
31093
|
+
* @param this
|
|
31094
|
+
* @param key
|
|
31095
|
+
*/
|
|
31096
|
+
RemoveValue(this: PlayerDataRecord, key: string): void;
|
|
31097
|
+
/**
|
|
31098
|
+
* - **ThreadSafety**: Unsafe
|
|
31099
|
+
*
|
|
31100
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#SetValue)
|
|
31101
|
+
* @param this
|
|
31102
|
+
* @param key
|
|
31103
|
+
* @param value
|
|
31104
|
+
*/
|
|
31105
|
+
SetValue(this: PlayerDataRecord, key: string, value: unknown): void;
|
|
31106
|
+
/**
|
|
31107
|
+
* - **ThreadSafety**: Unsafe
|
|
31108
|
+
* - **Tags**: Yields
|
|
31109
|
+
*
|
|
31110
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#RequestFlushAsync)
|
|
31111
|
+
* @param this
|
|
31112
|
+
*/
|
|
31113
|
+
RequestFlushAsync(this: PlayerDataRecord): void;
|
|
31114
|
+
/**
|
|
31115
|
+
* - **ThreadSafety**: Unsafe
|
|
31116
|
+
* - **Tags**: Yields
|
|
31117
|
+
*
|
|
31118
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#WaitForLoadAsync)
|
|
31119
|
+
* @param this
|
|
31120
|
+
*/
|
|
31121
|
+
WaitForLoadAsync(this: PlayerDataRecord): void;
|
|
31122
|
+
/**
|
|
31123
|
+
* - **ThreadSafety**: Unsafe
|
|
31124
|
+
*
|
|
31125
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#Changed)
|
|
31126
|
+
*/
|
|
31127
|
+
readonly Changed: RBXScriptSignal<(key: string, value: unknown) => void>;
|
|
31128
|
+
/**
|
|
31129
|
+
* - **ThreadSafety**: Unsafe
|
|
31130
|
+
*
|
|
31131
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#Flushed)
|
|
31132
|
+
*/
|
|
31133
|
+
readonly Flushed: RBXScriptSignal<(flushState: boolean, error?: string) => void>;
|
|
31134
|
+
/**
|
|
31135
|
+
* - **ThreadSafety**: Unsafe
|
|
31136
|
+
*
|
|
31137
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#Loaded)
|
|
31138
|
+
*/
|
|
31139
|
+
readonly Loaded: RBXScriptSignal<(success: boolean, error?: string) => void>;
|
|
31140
|
+
}
|
|
31141
|
+
/**
|
|
31142
|
+
* - **Tags**: NotCreatable, NotReplicated
|
|
31143
|
+
*
|
|
31144
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecordConfig)
|
|
31145
|
+
*/
|
|
31146
|
+
interface PlayerDataRecordConfig extends Instance {
|
|
31147
|
+
/**
|
|
31148
|
+
* **DO NOT USE!**
|
|
31149
|
+
*
|
|
31150
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
31151
|
+
* @hidden
|
|
31152
|
+
* @deprecated
|
|
31153
|
+
*/
|
|
31154
|
+
readonly _nominal_PlayerDataRecordConfig: unique symbol;
|
|
31155
|
+
/**
|
|
31156
|
+
* - **ThreadSafety**: ReadSafe
|
|
31157
|
+
* - **Tags**: NotReplicated
|
|
31158
|
+
*
|
|
31159
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecordConfig#RecordName)
|
|
31160
|
+
*/
|
|
31161
|
+
readonly RecordName: string;
|
|
31162
|
+
/**
|
|
31163
|
+
* - **ThreadSafety**: Unsafe
|
|
31164
|
+
*
|
|
31165
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecordConfig#GetDefaultValue)
|
|
31166
|
+
* @param this
|
|
31167
|
+
* @param key
|
|
31168
|
+
*/
|
|
31169
|
+
GetDefaultValue(this: PlayerDataRecordConfig, key: string): unknown;
|
|
31170
|
+
/**
|
|
31171
|
+
* - **ThreadSafety**: Unsafe
|
|
31172
|
+
*
|
|
31173
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecordConfig#SetDefaultValue)
|
|
31174
|
+
* @param this
|
|
31175
|
+
* @param key
|
|
31176
|
+
* @param value
|
|
31177
|
+
*/
|
|
31178
|
+
SetDefaultValue(this: PlayerDataRecordConfig, key: string, value: unknown): void;
|
|
31179
|
+
}
|
|
31180
|
+
/**
|
|
31181
|
+
* - **Tags**: NotCreatable, Service, NotReplicated
|
|
31182
|
+
*
|
|
31183
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataService)
|
|
31184
|
+
*/
|
|
31185
|
+
interface PlayerDataService extends Instance {
|
|
31186
|
+
/**
|
|
31187
|
+
* **DO NOT USE!**
|
|
31188
|
+
*
|
|
31189
|
+
* This field exists to force TypeScript to recognize this as a nominal type
|
|
31190
|
+
* @hidden
|
|
31191
|
+
* @deprecated
|
|
31192
|
+
*/
|
|
31193
|
+
readonly _nominal_PlayerDataService: unique symbol;
|
|
31194
|
+
/**
|
|
31195
|
+
* - **ThreadSafety**: ReadSafe
|
|
31196
|
+
*
|
|
31197
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataService#LoadFailureBehavior)
|
|
31198
|
+
*/
|
|
31199
|
+
LoadFailureBehavior: Enum.PlayerDataLoadFailureBehavior;
|
|
31200
|
+
/**
|
|
31201
|
+
* - **ThreadSafety**: Unsafe
|
|
31202
|
+
*
|
|
31203
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataService#GetRecordConfig)
|
|
31204
|
+
* @param this
|
|
31205
|
+
* @param recordName
|
|
31206
|
+
*/
|
|
31207
|
+
GetRecordConfig(this: PlayerDataService, recordName?: string): PlayerDataRecordConfig;
|
|
31208
|
+
}
|
|
29746
31209
|
/**
|
|
29747
31210
|
* - **Tags**: NotCreatable, Service
|
|
29748
31211
|
*
|
|
@@ -32287,6 +33750,13 @@ interface DataModel extends ServiceProvider<Services> {
|
|
|
32287
33750
|
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#JobId)
|
|
32288
33751
|
*/
|
|
32289
33752
|
readonly JobId: string;
|
|
33753
|
+
/**
|
|
33754
|
+
* - **ThreadSafety**: ReadSafe
|
|
33755
|
+
* - **Tags**: NotReplicated
|
|
33756
|
+
*
|
|
33757
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#MatchmakingType)
|
|
33758
|
+
*/
|
|
33759
|
+
readonly MatchmakingType: Enum.MatchmakingType;
|
|
32290
33760
|
/**
|
|
32291
33761
|
* Describes the ID of the place running on the server.
|
|
32292
33762
|
*
|
|
@@ -35557,6 +37027,8 @@ interface TestService extends Instance {
|
|
|
35557
37027
|
*/
|
|
35558
37028
|
ExecuteWithStudioRun: boolean;
|
|
35559
37029
|
/**
|
|
37030
|
+
* **Deprecated:**
|
|
37031
|
+
*
|
|
35560
37032
|
* Sets whether or not the physics engine should be throttled to 30 FPS while the test is being ran.
|
|
35561
37033
|
*
|
|
35562
37034
|
* - **ThreadSafety**: ReadSafe
|
|
@@ -40552,15 +42024,15 @@ interface VideoPlayer extends Instance {
|
|
|
40552
42024
|
/**
|
|
40553
42025
|
* - **ThreadSafety**: Unsafe
|
|
40554
42026
|
*
|
|
40555
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#
|
|
42027
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#DidEnd)
|
|
40556
42028
|
*/
|
|
40557
|
-
readonly
|
|
42029
|
+
readonly DidEnd: RBXScriptSignal<() => void>;
|
|
40558
42030
|
/**
|
|
40559
42031
|
* - **ThreadSafety**: Unsafe
|
|
40560
42032
|
*
|
|
40561
|
-
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#
|
|
42033
|
+
* [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#DidLoop)
|
|
40562
42034
|
*/
|
|
40563
|
-
readonly
|
|
42035
|
+
readonly DidLoop: RBXScriptSignal<() => void>;
|
|
40564
42036
|
}
|
|
40565
42037
|
/**
|
|
40566
42038
|
* - **Tags**: NotCreatable, Service
|