@rbxts/types 1.0.837 → 1.0.839

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.
@@ -249,6 +249,7 @@ interface CreatableInstances {
249
249
  AudioPlayer: AudioPlayer;
250
250
  AudioReverb: AudioReverb;
251
251
  AudioSearchParams: AudioSearchParams;
252
+ AudioTextToSpeech: AudioTextToSpeech;
252
253
  AuroraScript: AuroraScript;
253
254
  Backpack: Backpack;
254
255
  BallSocketConstraint: BallSocketConstraint;
@@ -337,6 +338,7 @@ interface CreatableInstances {
337
338
  Humanoid: Humanoid;
338
339
  HumanoidController: HumanoidController;
339
340
  HumanoidDescription: HumanoidDescription;
341
+ HumanoidRigDescription: HumanoidRigDescription;
340
342
  IKControl: IKControl;
341
343
  ImageButton: ImageButton;
342
344
  ImageHandleAdornment: ImageHandleAdornment;
@@ -664,9 +666,11 @@ interface Instances extends Services, CreatableInstances {
664
666
  WorldRoot: WorldRoot;
665
667
  }
666
668
  interface Objects extends Instances {
669
+ Capture: Capture;
667
670
  EditableImage: EditableImage;
668
671
  EditableMesh: EditableMesh;
669
672
  Object: RBXObject;
673
+ ScreenshotCapture: ScreenshotCapture;
670
674
  }
671
675
  // GENERATED ROBLOX INSTANCE CLASSES
672
676
  /**
@@ -726,6 +730,36 @@ interface RBXObject {
726
730
  */
727
731
  readonly Changed: unknown;
728
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
+ }
729
763
  /**
730
764
  * Instance which allows for the runtime creation and manipulation of images.
731
765
  *
@@ -2669,7 +2703,7 @@ interface AnimationStreamTrack extends Instance {
2669
2703
  readonly WeightTarget: number;
2670
2704
  }
2671
2705
  /**
2672
- * Controls the playback of an animation on an `AnimationController`.
2706
+ * Controls the playback of an animation on an `Animator`.
2673
2707
  *
2674
2708
  * - **Tags**: NotCreatable
2675
2709
  *
@@ -2770,7 +2804,7 @@ interface AnimationTrack extends Instance {
2770
2804
  * - **Tags**: CustomLuaState
2771
2805
  *
2772
2806
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#AdjustSpeed)
2773
- * @param this Controls the playback of an animation on an `AnimationController`.
2807
+ * @param this Controls the playback of an animation on an `Animator`.
2774
2808
  * @param speed The playback speed the animation is to be changed to.
2775
2809
  */
2776
2810
  AdjustSpeed(this: AnimationTrack, speed?: number): void;
@@ -2781,7 +2815,7 @@ interface AnimationTrack extends Instance {
2781
2815
  * - **Tags**: CustomLuaState
2782
2816
  *
2783
2817
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#AdjustWeight)
2784
- * @param this Controls the playback of an animation on an `AnimationController`.
2818
+ * @param this Controls the playback of an animation on an `Animator`.
2785
2819
  * @param weight The weight the animation is to be changed to.
2786
2820
  * @param fadeTime The duration of time that the animation will fade between the old weight and the new weight for.
2787
2821
  */
@@ -2792,7 +2826,7 @@ interface AnimationTrack extends Instance {
2792
2826
  * - **ThreadSafety**: Unsafe
2793
2827
  *
2794
2828
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetMarkerReachedSignal)
2795
- * @param this Controls the playback of an animation on an `AnimationController`.
2829
+ * @param this Controls the playback of an animation on an `Animator`.
2796
2830
  * @param name The name of the `KeyFrameMarker` the signal is being created for.
2797
2831
  * @returns The signal created and fired when the animation reaches the created `KeyFrameMarker`.
2798
2832
  */
@@ -2803,7 +2837,7 @@ interface AnimationTrack extends Instance {
2803
2837
  * - **ThreadSafety**: Unsafe
2804
2838
  *
2805
2839
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetTimeOfKeyframe)
2806
- * @param this Controls the playback of an animation on an `AnimationController`.
2840
+ * @param this Controls the playback of an animation on an `Animator`.
2807
2841
  * @param keyframeName The name associated with the `Keyframe` to be found.
2808
2842
  * @returns The time, in seconds, the `Keyframe` occurs at normal playback speed.
2809
2843
  */
@@ -2815,7 +2849,7 @@ interface AnimationTrack extends Instance {
2815
2849
  * - **Tags**: CustomLuaState
2816
2850
  *
2817
2851
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#Play)
2818
- * @param this Controls the playback of an animation on an `AnimationController`.
2852
+ * @param this Controls the playback of an animation on an `Animator`.
2819
2853
  * @param fadeTime The duration of time that the animation's weight should be faded in for.
2820
2854
  * @param weight The weight the animation is to be played at.
2821
2855
  * @param speed The playback speed of the animation.
@@ -2828,7 +2862,7 @@ interface AnimationTrack extends Instance {
2828
2862
  * - **Tags**: CustomLuaState
2829
2863
  *
2830
2864
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#Stop)
2831
- * @param this Controls the playback of an animation on an `AnimationController`.
2865
+ * @param this Controls the playback of an animation on an `Animator`.
2832
2866
  * @param fadeTime The time, in seconds, for which animation weight is to be faded out over.
2833
2867
  */
2834
2868
  Stop(this: AnimationTrack, fadeTime?: number): void;
@@ -3817,12 +3851,14 @@ interface AudioAnalyzer extends Instance {
3817
3851
  * - **ThreadSafety**: Unsafe
3818
3852
  *
3819
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`.
3820
3855
  */
3821
3856
  GetInputPins(this: AudioAnalyzer): Array<unknown>;
3822
3857
  /**
3823
3858
  * - **ThreadSafety**: Unsafe
3824
3859
  *
3825
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`.
3826
3862
  */
3827
3863
  GetOutputPins(this: AudioAnalyzer): Array<unknown>;
3828
3864
  /**
@@ -3868,8 +3904,22 @@ interface AudioChannelMixer extends Instance {
3868
3904
  * - **ThreadSafety**: Unsafe
3869
3905
  *
3870
3906
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelMixer#GetConnectedWires)
3907
+ * @param this
3908
+ * @param pin
3871
3909
  */
3872
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>;
3873
3923
  /**
3874
3924
  * - **ThreadSafety**: Unsafe
3875
3925
  *
@@ -3901,8 +3951,22 @@ interface AudioChannelSplitter extends Instance {
3901
3951
  * - **ThreadSafety**: Unsafe
3902
3952
  *
3903
3953
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelSplitter#GetConnectedWires)
3954
+ * @param this
3955
+ * @param pin
3904
3956
  */
3905
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>;
3906
3970
  /**
3907
3971
  * - **ThreadSafety**: Unsafe
3908
3972
  *
@@ -3970,12 +4034,14 @@ interface AudioChorus extends Instance {
3970
4034
  * - **ThreadSafety**: Unsafe
3971
4035
  *
3972
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.
3973
4038
  */
3974
4039
  GetInputPins(this: AudioChorus): Array<unknown>;
3975
4040
  /**
3976
4041
  * - **ThreadSafety**: Unsafe
3977
4042
  *
3978
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.
3979
4045
  */
3980
4046
  GetOutputPins(this: AudioChorus): Array<unknown>;
3981
4047
  /**
@@ -4063,12 +4129,14 @@ interface AudioCompressor extends Instance {
4063
4129
  * - **ThreadSafety**: Unsafe
4064
4130
  *
4065
4131
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioCompressor#GetInputPins)
4132
+ * @param this Adjusts the dynamic range of input streams.
4066
4133
  */
4067
4134
  GetInputPins(this: AudioCompressor): Array<unknown>;
4068
4135
  /**
4069
4136
  * - **ThreadSafety**: Unsafe
4070
4137
  *
4071
4138
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioCompressor#GetOutputPins)
4139
+ * @param this Adjusts the dynamic range of input streams.
4072
4140
  */
4073
4141
  GetOutputPins(this: AudioCompressor): Array<unknown>;
4074
4142
  /**
@@ -4148,12 +4216,14 @@ interface AudioDeviceInput extends Instance {
4148
4216
  * - **ThreadSafety**: Unsafe
4149
4217
  *
4150
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.
4151
4220
  */
4152
4221
  GetInputPins(this: AudioDeviceInput): Array<unknown>;
4153
4222
  /**
4154
4223
  * - **ThreadSafety**: Unsafe
4155
4224
  *
4156
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.
4157
4227
  */
4158
4228
  GetOutputPins(this: AudioDeviceInput): Array<unknown>;
4159
4229
  /**
@@ -4220,12 +4290,14 @@ interface AudioDeviceOutput extends Instance {
4220
4290
  * - **ThreadSafety**: Unsafe
4221
4291
  *
4222
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.
4223
4294
  */
4224
4295
  GetInputPins(this: AudioDeviceOutput): Array<unknown>;
4225
4296
  /**
4226
4297
  * - **ThreadSafety**: Unsafe
4227
4298
  *
4228
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.
4229
4301
  */
4230
4302
  GetOutputPins(this: AudioDeviceOutput): Array<unknown>;
4231
4303
  /**
@@ -4281,12 +4353,14 @@ interface AudioDistortion extends Instance {
4281
4353
  * - **ThreadSafety**: Unsafe
4282
4354
  *
4283
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.
4284
4357
  */
4285
4358
  GetInputPins(this: AudioDistortion): Array<unknown>;
4286
4359
  /**
4287
4360
  * - **ThreadSafety**: Unsafe
4288
4361
  *
4289
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.
4290
4364
  */
4291
4365
  GetOutputPins(this: AudioDistortion): Array<unknown>;
4292
4366
  /**
@@ -4372,12 +4446,14 @@ interface AudioEcho extends Instance {
4372
4446
  * - **ThreadSafety**: Unsafe
4373
4447
  *
4374
4448
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEcho#GetInputPins)
4449
+ * @param this Overlays delayed copies of audio streams.
4375
4450
  */
4376
4451
  GetInputPins(this: AudioEcho): Array<unknown>;
4377
4452
  /**
4378
4453
  * - **ThreadSafety**: Unsafe
4379
4454
  *
4380
4455
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEcho#GetOutputPins)
4456
+ * @param this Overlays delayed copies of audio streams.
4381
4457
  */
4382
4458
  GetOutputPins(this: AudioEcho): Array<unknown>;
4383
4459
  /**
@@ -4432,6 +4508,8 @@ interface AudioEmitter extends Instance {
4432
4508
  * - **ThreadSafety**: Unsafe
4433
4509
  *
4434
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
4435
4513
  */
4436
4514
  GetAudibilityFor(this: AudioEmitter, listener: AudioListener): number;
4437
4515
  /**
@@ -4458,6 +4536,7 @@ interface AudioEmitter extends Instance {
4458
4536
  * - **ThreadSafety**: Unsafe
4459
4537
  *
4460
4538
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetInputPins)
4539
+ * @param this Emits audio streams into the world.
4461
4540
  */
4462
4541
  GetInputPins(this: AudioEmitter): Array<unknown>;
4463
4542
  /**
@@ -4471,6 +4550,7 @@ interface AudioEmitter extends Instance {
4471
4550
  * - **ThreadSafety**: Unsafe
4472
4551
  *
4473
4552
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#GetOutputPins)
4553
+ * @param this Emits audio streams into the world.
4474
4554
  */
4475
4555
  GetOutputPins(this: AudioEmitter): Array<unknown>;
4476
4556
  /**
@@ -4572,12 +4652,14 @@ interface AudioEqualizer extends Instance {
4572
4652
  * - **ThreadSafety**: Unsafe
4573
4653
  *
4574
4654
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEqualizer#GetInputPins)
4655
+ * @param this Adjusts the frequency content of audio streams.
4575
4656
  */
4576
4657
  GetInputPins(this: AudioEqualizer): Array<unknown>;
4577
4658
  /**
4578
4659
  * - **ThreadSafety**: Unsafe
4579
4660
  *
4580
4661
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEqualizer#GetOutputPins)
4662
+ * @param this Adjusts the frequency content of audio streams.
4581
4663
  */
4582
4664
  GetOutputPins(this: AudioEqualizer): Array<unknown>;
4583
4665
  /**
@@ -4633,12 +4715,14 @@ interface AudioFader extends Instance {
4633
4715
  * - **ThreadSafety**: Unsafe
4634
4716
  *
4635
4717
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFader#GetInputPins)
4718
+ * @param this Adjusts the volume of audio streams.
4636
4719
  */
4637
4720
  GetInputPins(this: AudioFader): Array<unknown>;
4638
4721
  /**
4639
4722
  * - **ThreadSafety**: Unsafe
4640
4723
  *
4641
4724
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFader#GetOutputPins)
4725
+ * @param this Adjusts the volume of audio streams.
4642
4726
  */
4643
4727
  GetOutputPins(this: AudioFader): Array<unknown>;
4644
4728
  /**
@@ -4729,12 +4813,14 @@ interface AudioFilter extends Instance {
4729
4813
  * - **ThreadSafety**: Unsafe
4730
4814
  *
4731
4815
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFilter#GetInputPins)
4816
+ * @param this Adjusts the frequency content of audio streams.
4732
4817
  */
4733
4818
  GetInputPins(this: AudioFilter): Array<unknown>;
4734
4819
  /**
4735
4820
  * - **ThreadSafety**: Unsafe
4736
4821
  *
4737
4822
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioFilter#GetOutputPins)
4823
+ * @param this Adjusts the frequency content of audio streams.
4738
4824
  */
4739
4825
  GetOutputPins(this: AudioFilter): Array<unknown>;
4740
4826
  /**
@@ -4806,12 +4892,14 @@ interface AudioFlanger extends Instance {
4806
4892
  * - **ThreadSafety**: Unsafe
4807
4893
  *
4808
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.
4809
4896
  */
4810
4897
  GetInputPins(this: AudioFlanger): Array<unknown>;
4811
4898
  /**
4812
4899
  * - **ThreadSafety**: Unsafe
4813
4900
  *
4814
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.
4815
4903
  */
4816
4904
  GetOutputPins(this: AudioFlanger): Array<unknown>;
4817
4905
  /**
@@ -4890,12 +4978,14 @@ interface AudioLimiter extends Instance {
4890
4978
  * - **ThreadSafety**: Unsafe
4891
4979
  *
4892
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.
4893
4982
  */
4894
4983
  GetInputPins(this: AudioLimiter): Array<unknown>;
4895
4984
  /**
4896
4985
  * - **ThreadSafety**: Unsafe
4897
4986
  *
4898
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.
4899
4989
  */
4900
4990
  GetOutputPins(this: AudioLimiter): Array<unknown>;
4901
4991
  /**
@@ -4950,6 +5040,8 @@ interface AudioListener extends Instance {
4950
5040
  * - **ThreadSafety**: Unsafe
4951
5041
  *
4952
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
4953
5045
  */
4954
5046
  GetAudibilityFor(this: AudioListener, emitter: AudioEmitter): number;
4955
5047
  /**
@@ -4976,6 +5068,7 @@ interface AudioListener extends Instance {
4976
5068
  * - **ThreadSafety**: Unsafe
4977
5069
  *
4978
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.
4979
5072
  */
4980
5073
  GetInputPins(this: AudioListener): Array<unknown>;
4981
5074
  /**
@@ -4989,6 +5082,7 @@ interface AudioListener extends Instance {
4989
5082
  * - **ThreadSafety**: Unsafe
4990
5083
  *
4991
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.
4992
5086
  */
4993
5087
  GetOutputPins(this: AudioListener): Array<unknown>;
4994
5088
  /**
@@ -5072,12 +5166,14 @@ interface AudioPitchShifter extends Instance {
5072
5166
  * - **ThreadSafety**: Unsafe
5073
5167
  *
5074
5168
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPitchShifter#GetInputPins)
5169
+ * @param this Adjusts the perceived pitch of audio streams.
5075
5170
  */
5076
5171
  GetInputPins(this: AudioPitchShifter): Array<unknown>;
5077
5172
  /**
5078
5173
  * - **ThreadSafety**: Unsafe
5079
5174
  *
5080
5175
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPitchShifter#GetOutputPins)
5176
+ * @param this Adjusts the perceived pitch of audio streams.
5081
5177
  */
5082
5178
  GetOutputPins(this: AudioPitchShifter): Array<unknown>;
5083
5179
  /**
@@ -5220,12 +5316,14 @@ interface AudioPlayer extends Instance {
5220
5316
  * - **ThreadSafety**: Unsafe
5221
5317
  *
5222
5318
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#GetInputPins)
5319
+ * @param this Used to play audio assets.
5223
5320
  */
5224
5321
  GetInputPins(this: AudioPlayer): Array<unknown>;
5225
5322
  /**
5226
5323
  * - **ThreadSafety**: Unsafe
5227
5324
  *
5228
5325
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#GetOutputPins)
5326
+ * @param this Used to play audio assets.
5229
5327
  */
5230
5328
  GetOutputPins(this: AudioPlayer): Array<unknown>;
5231
5329
  /**
@@ -5413,12 +5511,14 @@ interface AudioReverb extends Instance {
5413
5511
  * - **ThreadSafety**: Unsafe
5414
5512
  *
5415
5513
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioReverb#GetInputPins)
5514
+ * @param this Reverberates audio streams.
5416
5515
  */
5417
5516
  GetInputPins(this: AudioReverb): Array<unknown>;
5418
5517
  /**
5419
5518
  * - **ThreadSafety**: Unsafe
5420
5519
  *
5421
5520
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioReverb#GetOutputPins)
5521
+ * @param this Reverberates audio streams.
5422
5522
  */
5423
5523
  GetOutputPins(this: AudioReverb): Array<unknown>;
5424
5524
  /**
@@ -5522,6 +5622,19 @@ interface AudioSearchParams extends Instance {
5522
5622
  */
5523
5623
  Title: string;
5524
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
+ }
5525
5638
  /**
5526
5639
  * - **Tags**: NotCreatable, Service
5527
5640
  *
@@ -5693,7 +5806,7 @@ interface AuroraService extends Instance {
5693
5806
  *
5694
5807
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Rollback)
5695
5808
  */
5696
- readonly Rollback: RBXScriptSignal<() => void>;
5809
+ readonly Rollback: RBXScriptSignal<(worldStepId: number) => void>;
5697
5810
  /**
5698
5811
  * - **ThreadSafety**: Unsafe
5699
5812
  *
@@ -5760,6 +5873,8 @@ interface AvatarCreationService extends Instance {
5760
5873
  * - **Tags**: Yields
5761
5874
  *
5762
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
5763
5878
  */
5764
5879
  GenerateAvatar2DPreviewAsync(this: AvatarCreationService, avatarGeneration2dPreviewParams: object): string;
5765
5880
  /**
@@ -5793,6 +5908,8 @@ interface AvatarCreationService extends Instance {
5793
5908
  * - **Tags**: Yields
5794
5909
  *
5795
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
5796
5913
  */
5797
5914
  LoadAvatar2DPreviewAsync(this: AvatarCreationService, previewId: string): EditableImage;
5798
5915
  /**
@@ -5800,6 +5917,8 @@ interface AvatarCreationService extends Instance {
5800
5917
  * - **Tags**: Yields
5801
5918
  *
5802
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
5803
5922
  */
5804
5923
  LoadGeneratedAvatarAsync(this: AvatarCreationService, generationId: string): HumanoidDescription;
5805
5924
  /**
@@ -7258,6 +7377,7 @@ interface WrapDeformer extends BaseWrap {
7258
7377
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapDeformer#SetCageMeshContent)
7259
7378
  * @param this Allows for the real-time deformation of a `MeshPart`.
7260
7379
  * @param content
7380
+ * @param cageOrigin
7261
7381
  */
7262
7382
  SetCageMeshContent(this: WrapDeformer, content: Content, cageOrigin?: CFrame): void;
7263
7383
  /**
@@ -8632,6 +8752,12 @@ interface CaptureService extends Instance {
8632
8752
  * @param onDeniedCallback An optional callback function invoked if the user denies sharing.
8633
8753
  */
8634
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;
8635
8761
  /**
8636
8762
  * Fires immediately before a capture begins.
8637
8763
  *
@@ -14708,6 +14834,11 @@ interface GenerationService extends Instance {
14708
14834
  * - **Tags**: Yields
14709
14835
  *
14710
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
14711
14842
  */
14712
14843
  GenerateMeshAsync(this: GenerationService, inputs: object, player: Player, options: object, intermediateResultCallback?: Callback): unknown;
14713
14844
  /**
@@ -14715,6 +14846,8 @@ interface GenerationService extends Instance {
14715
14846
  * - **Tags**: Yields
14716
14847
  *
14717
14848
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GenerationService#LoadGeneratedMeshAsync)
14849
+ * @param this
14850
+ * @param generationId
14718
14851
  */
14719
14852
  LoadGeneratedMeshAsync(this: GenerationService, generationId: string): MeshPart;
14720
14853
  }
@@ -17276,6 +17409,8 @@ interface VideoDisplay extends GuiObject {
17276
17409
  * - **ThreadSafety**: Unsafe
17277
17410
  *
17278
17411
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetConnectedWires)
17412
+ * @param this
17413
+ * @param pin
17279
17414
  */
17280
17415
  GetConnectedWires(this: VideoDisplay, pin: string): Array<Instance>;
17281
17416
  /**
@@ -21067,6 +21202,703 @@ interface HumanoidDescription extends Instance {
21067
21202
  */
21068
21203
  readonly EquippedEmotesChanged: RBXScriptSignal<(newEquippedEmotes: EquippedEmotes) => void>;
21069
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
+ }
21070
21902
  /**
21071
21903
  * Specifies a control to generate a procedural animation pose using Inverse Kinematics.
21072
21904
  *
@@ -21334,12 +22166,15 @@ interface InputAction extends Instance {
21334
22166
  * - **ThreadSafety**: Unsafe
21335
22167
  *
21336
22168
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#Fire)
22169
+ * @param this
22170
+ * @param value
21337
22171
  */
21338
22172
  Fire(this: InputAction, value: unknown): void;
21339
22173
  /**
21340
22174
  * - **ThreadSafety**: Unsafe
21341
22175
  *
21342
22176
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputAction#GetState)
22177
+ * @param this
21343
22178
  */
21344
22179
  GetState(this: InputAction): unknown;
21345
22180
  /**
@@ -23912,6 +24747,7 @@ interface MarketplaceService extends Instance {
23912
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.
23913
24748
  * - `CurrencySpent` — The amount of currency spent in the transaction.
23914
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.
23915
24751
  *
23916
24752
  *
23917
24753
  * @returns An enum that represents how the developer product receipt was processed. - `PurchaseGranted`:
@@ -26015,7 +26851,7 @@ interface Platform extends Part {
26015
26851
  *
26016
26852
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Platform#RemoteCreateMotor6D)
26017
26853
  */
26018
- readonly RemoteCreateMotor6D: RBXScriptSignal<(humanoid: Instance) => void>;
26854
+ readonly RemoteCreateMotor6D: RBXScriptSignal<(humanoid: Humanoid) => void>;
26019
26855
  /**
26020
26856
  * - **ThreadSafety**: Unsafe
26021
26857
  * - **Tags**: Hidden
@@ -26064,14 +26900,14 @@ interface Seat extends Part {
26064
26900
  * @param this A type of `BasePart` that characters can 'sit' in. When a character touches an enabled Seat object, it will be attached to the part by a `Weld` and the default character scripts will play a sitting animation.
26065
26901
  * @param humanoid
26066
26902
  */
26067
- Sit(this: Seat, humanoid: Instance): void;
26903
+ Sit(this: Seat, humanoid: Humanoid | undefined): void;
26068
26904
  /**
26069
26905
  * - **ThreadSafety**: Unsafe
26070
26906
  * - **Tags**: Hidden
26071
26907
  *
26072
26908
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Seat#RemoteCreateSeatWeld)
26073
26909
  */
26074
- readonly RemoteCreateSeatWeld: RBXScriptSignal<(humanoid: Instance) => void>;
26910
+ readonly RemoteCreateSeatWeld: RBXScriptSignal<(humanoid: Humanoid) => void>;
26075
26911
  /**
26076
26912
  * - **ThreadSafety**: Unsafe
26077
26913
  * - **Tags**: Hidden
@@ -26161,7 +26997,7 @@ interface SkateboardPlatform extends Part {
26161
26997
  *
26162
26998
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SkateboardPlatform#Equipped)
26163
26999
  */
26164
- readonly Equipped: RBXScriptSignal<(humanoid: Instance, skateboardController: Instance) => void>;
27000
+ readonly Equipped: RBXScriptSignal<(humanoid: Humanoid, skateboardController: SkateboardController) => void>;
26165
27001
  /**
26166
27002
  * Fired when the SkateboardPlatform's `SkateboardPlatform.ControllingHumanoid` changes the force being used on the SkateboardPlatform.
26167
27003
  *
@@ -26176,7 +27012,7 @@ interface SkateboardPlatform extends Part {
26176
27012
  *
26177
27013
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SkateboardPlatform#RemoteCreateMotor6D)
26178
27014
  */
26179
- readonly RemoteCreateMotor6D: RBXScriptSignal<(humanoid: Instance) => void>;
27015
+ readonly RemoteCreateMotor6D: RBXScriptSignal<(humanoid: Humanoid) => void>;
26180
27016
  /**
26181
27017
  * - **ThreadSafety**: Unsafe
26182
27018
  * - **Tags**: Hidden
@@ -26191,7 +27027,7 @@ interface SkateboardPlatform extends Part {
26191
27027
  *
26192
27028
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SkateboardPlatform#Unequipped)
26193
27029
  */
26194
- readonly Unequipped: RBXScriptSignal<(humanoid: Instance) => void>;
27030
+ readonly Unequipped: RBXScriptSignal<(humanoid: Humanoid) => void>;
26195
27031
  }
26196
27032
  /**
26197
27033
  * `SpawnLocations`, or "spawns" determine where a `Player` respawns when they die. They can be configured to allow only certain players to use each spawn, using `Teams`. They also control how `ForceFields` are set up for newly-spawned players.
@@ -29686,6 +30522,8 @@ interface Player extends Instance {
29686
30522
  * - **ThreadSafety**: Unsafe
29687
30523
  *
29688
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
29689
30527
  */
29690
30528
  AddReplicationFocus(this: Player, part: BasePart): void;
29691
30529
  /**
@@ -29857,6 +30695,8 @@ interface Player extends Instance {
29857
30695
  * - **ThreadSafety**: Unsafe
29858
30696
  *
29859
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
29860
30700
  */
29861
30701
  RemoveReplicationFocus(this: Player, part: BasePart): void;
29862
30702
  /**
@@ -30113,12 +30953,15 @@ interface PlayerData extends Instance {
30113
30953
  * - **ThreadSafety**: Unsafe
30114
30954
  *
30115
30955
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerData#GetPlayer)
30956
+ * @param this
30116
30957
  */
30117
30958
  GetPlayer(this: PlayerData): Player;
30118
30959
  /**
30119
30960
  * - **ThreadSafety**: Unsafe
30120
30961
  *
30121
30962
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerData#GetRecord)
30963
+ * @param this
30964
+ * @param recordName
30122
30965
  */
30123
30966
  GetRecord(this: PlayerData, recordName?: string): PlayerDataRecord;
30124
30967
  }
@@ -30217,36 +31060,47 @@ interface PlayerDataRecord extends Instance {
30217
31060
  * - **ThreadSafety**: Unsafe
30218
31061
  *
30219
31062
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#GetPlayer)
31063
+ * @param this
30220
31064
  */
30221
31065
  GetPlayer(this: PlayerDataRecord): Player;
30222
31066
  /**
30223
31067
  * - **ThreadSafety**: Unsafe
30224
31068
  *
30225
31069
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#GetValue)
31070
+ * @param this
31071
+ * @param key
30226
31072
  */
30227
31073
  GetValue(this: PlayerDataRecord, key: string): unknown;
30228
31074
  /**
30229
31075
  * - **ThreadSafety**: Unsafe
30230
31076
  *
30231
31077
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#GetValueChangedSignal)
31078
+ * @param this
31079
+ * @param key
30232
31080
  */
30233
31081
  GetValueChangedSignal(this: PlayerDataRecord, key: string): RBXScriptSignal;
30234
31082
  /**
30235
31083
  * - **ThreadSafety**: Unsafe
30236
31084
  *
30237
31085
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#Release)
31086
+ * @param this
30238
31087
  */
30239
31088
  Release(this: PlayerDataRecord): void;
30240
31089
  /**
30241
31090
  * - **ThreadSafety**: Unsafe
30242
31091
  *
30243
31092
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#RemoveValue)
31093
+ * @param this
31094
+ * @param key
30244
31095
  */
30245
31096
  RemoveValue(this: PlayerDataRecord, key: string): void;
30246
31097
  /**
30247
31098
  * - **ThreadSafety**: Unsafe
30248
31099
  *
30249
31100
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#SetValue)
31101
+ * @param this
31102
+ * @param key
31103
+ * @param value
30250
31104
  */
30251
31105
  SetValue(this: PlayerDataRecord, key: string, value: unknown): void;
30252
31106
  /**
@@ -30254,6 +31108,7 @@ interface PlayerDataRecord extends Instance {
30254
31108
  * - **Tags**: Yields
30255
31109
  *
30256
31110
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#RequestFlushAsync)
31111
+ * @param this
30257
31112
  */
30258
31113
  RequestFlushAsync(this: PlayerDataRecord): void;
30259
31114
  /**
@@ -30261,6 +31116,7 @@ interface PlayerDataRecord extends Instance {
30261
31116
  * - **Tags**: Yields
30262
31117
  *
30263
31118
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#WaitForLoadAsync)
31119
+ * @param this
30264
31120
  */
30265
31121
  WaitForLoadAsync(this: PlayerDataRecord): void;
30266
31122
  /**
@@ -30307,12 +31163,17 @@ interface PlayerDataRecordConfig extends Instance {
30307
31163
  * - **ThreadSafety**: Unsafe
30308
31164
  *
30309
31165
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecordConfig#GetDefaultValue)
31166
+ * @param this
31167
+ * @param key
30310
31168
  */
30311
31169
  GetDefaultValue(this: PlayerDataRecordConfig, key: string): unknown;
30312
31170
  /**
30313
31171
  * - **ThreadSafety**: Unsafe
30314
31172
  *
30315
31173
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecordConfig#SetDefaultValue)
31174
+ * @param this
31175
+ * @param key
31176
+ * @param value
30316
31177
  */
30317
31178
  SetDefaultValue(this: PlayerDataRecordConfig, key: string, value: unknown): void;
30318
31179
  }
@@ -30340,6 +31201,8 @@ interface PlayerDataService extends Instance {
30340
31201
  * - **ThreadSafety**: Unsafe
30341
31202
  *
30342
31203
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataService#GetRecordConfig)
31204
+ * @param this
31205
+ * @param recordName
30343
31206
  */
30344
31207
  GetRecordConfig(this: PlayerDataService, recordName?: string): PlayerDataRecordConfig;
30345
31208
  }
@@ -32887,6 +33750,13 @@ interface DataModel extends ServiceProvider<Services> {
32887
33750
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#JobId)
32888
33751
  */
32889
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;
32890
33760
  /**
32891
33761
  * Describes the ID of the place running on the server.
32892
33762
  *
@@ -36157,6 +37027,8 @@ interface TestService extends Instance {
36157
37027
  */
36158
37028
  ExecuteWithStudioRun: boolean;
36159
37029
  /**
37030
+ * **Deprecated:**
37031
+ *
36160
37032
  * Sets whether or not the physics engine should be throttled to 30 FPS while the test is being ran.
36161
37033
  *
36162
37034
  * - **ThreadSafety**: ReadSafe