@rbxts/types 1.0.909 → 1.0.911

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.
@@ -12,6 +12,7 @@ interface Services {
12
12
  AnimationFromVideoCreatorService: AnimationFromVideoCreatorService;
13
13
  AnimationFromVideoCreatorStudioService: AnimationFromVideoCreatorStudioService;
14
14
  AnnotationsService: AnnotationsService;
15
+ AppAgeSignalsService: AppAgeSignalsService;
15
16
  AppLifecycleObserverService: AppLifecycleObserverService;
16
17
  AppRatingPromptService: AppRatingPromptService;
17
18
  AppUpdateService: AppUpdateService;
@@ -82,6 +83,7 @@ interface Services {
82
83
  GenerationService: GenerationService;
83
84
  GenericChallengeService: GenericChallengeService;
84
85
  GeometryService: GeometryService;
86
+ GongService: GongService;
85
87
  GroupService: GroupService;
86
88
  GuiService: GuiService;
87
89
  HapticService: HapticService;
@@ -292,6 +294,7 @@ interface CreatableInstances {
292
294
  AudioTextToSpeech: AudioTextToSpeech;
293
295
  AudioTremolo: AudioTremolo;
294
296
  AuroraScript: AuroraScript;
297
+ AvatarAbilityRules: AvatarAbilityRules;
295
298
  AvatarAccessoryRules: AvatarAccessoryRules;
296
299
  AvatarAnimationRules: AvatarAnimationRules;
297
300
  AvatarBodyRules: AvatarBodyRules;
@@ -353,6 +356,7 @@ interface CreatableInstances {
353
356
  DepthOfFieldEffect: DepthOfFieldEffect;
354
357
  Dialog: Dialog;
355
358
  DialogChoice: DialogChoice;
359
+ DigitsRigDescription: DigitsRigDescription;
356
360
  DistortionSoundEffect: DistortionSoundEffect;
357
361
  DoubleConstrainedValue: DoubleConstrainedValue;
358
362
  DragDetector: DragDetector;
@@ -377,7 +381,6 @@ interface CreatableInstances {
377
381
  Glue: Glue;
378
382
  GroundController: GroundController;
379
383
  Handles: Handles;
380
- HandRigDescription: HandRigDescription;
381
384
  HapticEffect: HapticEffect;
382
385
  Hat: Hat;
383
386
  HiddenSurfaceRemovalAsset: HiddenSurfaceRemovalAsset;
@@ -522,6 +525,7 @@ interface CreatableInstances {
522
525
  UIPadding: UIPadding;
523
526
  UIPageLayout: UIPageLayout;
524
527
  UIScale: UIScale;
528
+ UIShadow: UIShadow;
525
529
  UISizeConstraint: UISizeConstraint;
526
530
  UIStroke: UIStroke;
527
531
  UITableLayout: UITableLayout;
@@ -704,6 +708,7 @@ interface Instances extends Services, CreatableInstances {
704
708
  SyncScriptBuilder: SyncScriptBuilder;
705
709
  TeleportAsyncResult: TeleportAsyncResult;
706
710
  Terrain: Terrain;
711
+ TestCase: TestCase;
707
712
  TextChatConfigurations: TextChatConfigurations;
708
713
  TextChatMessage: TextChatMessage;
709
714
  TextFilterResult: TextFilterResult;
@@ -730,6 +735,7 @@ interface Instances extends Services, CreatableInstances {
730
735
  }
731
736
  interface Objects extends Instances {
732
737
  AnimationNode: AnimationNode;
738
+ AuroraHandle: AuroraHandle;
733
739
  Capture: Capture;
734
740
  ConfigSnapshot: ConfigSnapshot;
735
741
  EditableImage: EditableImage;
@@ -820,6 +826,35 @@ interface AnimationNode extends RBXObject {
820
826
  */
821
827
  readonly _nominal_AnimationNode: unique symbol;
822
828
  }
829
+ /**
830
+ * - **Tags**: NotCreatable
831
+ *
832
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle)
833
+ *
834
+ * @deprecated
835
+ */
836
+ interface AuroraHandle extends RBXObject {
837
+ /**
838
+ * **DO NOT USE!**
839
+ *
840
+ * This field exists to force TypeScript to recognize this as a nominal type
841
+ * @hidden
842
+ * @deprecated
843
+ */
844
+ readonly _nominal_AuroraHandle: unique symbol;
845
+ /**
846
+ * - **ThreadSafety**: Unsafe
847
+ *
848
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle#Destroy)
849
+ */
850
+ Destroy(this: AuroraHandle): void;
851
+ /**
852
+ * - **ThreadSafety**: Unsafe
853
+ *
854
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraHandle#ForEach)
855
+ */
856
+ ForEach(this: AuroraHandle, iterator: Callback): void;
857
+ }
823
858
  /**
824
859
  * A class which defines a piece of content, such as a screenshot or video, taken in-experience.
825
860
  *
@@ -2907,6 +2942,12 @@ interface AdService extends Instance {
2907
2942
  * @param devProductId The ID of the developer product you want to grant as a reward.
2908
2943
  */
2909
2944
  CreateAdRewardFromDevProductId(this: AdService, devProductId: number): AdReward;
2945
+ /**
2946
+ * - **ThreadSafety**: Unsafe
2947
+ *
2948
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#RegisterDisclosureButton)
2949
+ */
2950
+ RegisterDisclosureButton(this: AdService, disclosureButton: GuiButton, immersiveBrandedAdId: string): void;
2910
2951
  /**
2911
2952
  * **Deprecated:** `ShowVideoAd` has been decommissioned and is no longer operational.
2912
2953
  *
@@ -2939,7 +2980,14 @@ interface AdService extends Instance {
2939
2980
  * @param this A class that allows the display of mobile video ads.
2940
2981
  * @param adFormat The format of the requested ad. For example, `RewardedVideo`.
2941
2982
  */
2942
- GetAdAvailabilityNowAsync(this: AdService, adFormat: CastsToEnum<Enum.AdFormat>): unknown;
2983
+ GetAdAvailabilityNowAsync(this: AdService, adFormat: CastsToEnum<Enum.AdFormat>): object;
2984
+ /**
2985
+ * - **ThreadSafety**: Unsafe
2986
+ * - **Tags**: Yields
2987
+ *
2988
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdService#GetCampaignEligibilityAsync)
2989
+ */
2990
+ GetCampaignEligibilityAsync(this: AdService, campaignId: string, player?: Player): object;
2943
2991
  /**
2944
2992
  * Tracks how many times a user had the chance to watch a video ad and the rate at which they actually watched the ad.
2945
2993
  *
@@ -2996,7 +3044,7 @@ interface AnalyticsService extends Instance {
2996
3044
  */
2997
3045
  readonly _nominal_AnalyticsService: unique symbol;
2998
3046
  /**
2999
- * **Deprecated:**
3047
+ * **Deprecated:** This deprecated function is a variant of `AnalyticsService:LogCustomEvent()` which should be used instead.
3000
3048
  *
3001
3049
  * Fires a custom event with a custom event name and data.
3002
3050
  *
@@ -3013,15 +3061,10 @@ interface AnalyticsService extends Instance {
3013
3061
  */
3014
3062
  FireCustomEvent(this: AnalyticsService, player: Player | undefined, eventCategory: string, customData?: unknown): void;
3015
3063
  /**
3016
- * **Deprecated:** This function has been deprecated in favor of more descriptive methods, including: - `AnalyticsService:FireCustomEvent()`
3017
- * - `AnalyticsService:FireInGameEconomyEvent()`
3018
- * - `AnalyticsService:FireLogEvent()`
3019
- * - `AnalyticsService:FirePlayerProgressionEvent()`
3064
+ * **Deprecated:** This function has been deprecated in favor of more descriptive methods, including `AnalyticsService:LogCustomEvent()`, `AnalyticsService:LogEconomyEvent()`, and `AnalyticsService:LogProgressionEvent()`.
3020
3065
  *
3021
3066
  * Report a custom event to PlayFab.
3022
3067
  *
3023
- *
3024
- *
3025
3068
  * - **ThreadSafety**: Unsafe
3026
3069
  * - **Tags**:
3027
3070
  *
@@ -3034,7 +3077,7 @@ interface AnalyticsService extends Instance {
3034
3077
  */
3035
3078
  FireEvent(this: AnalyticsService, category: string, value: unknown): void;
3036
3079
  /**
3037
- * **Deprecated:**
3080
+ * **Deprecated:** This deprecated function is a variant of `AnalyticsService:LogEconomyEvent()` which should be used instead.
3038
3081
  *
3039
3082
  * Fire an event used to track player actions pertaining to the in-game economy.
3040
3083
  *
@@ -3074,9 +3117,6 @@ interface AnalyticsService extends Instance {
3074
3117
  * @param logLevel The specified log level (e.g. Debug, Error).
3075
3118
  * @param message User defined message.
3076
3119
  * @param debugInfo Optional. A dictionary which contains predefined keys including "errorCode" and "stackTrace". Both keys values are strings. stackTrace is a traceback of the current function call stack.
3077
- * ```lua
3078
- * local debugInfo = { errorCode = '123', stackTrace = debug.traceback() }
3079
- * ```
3080
3120
  * @param customData Optional. User defined data, could be a string, a number or a table.
3081
3121
  *
3082
3122
  * @deprecated
@@ -3086,7 +3126,7 @@ interface AnalyticsService extends Instance {
3086
3126
  stackTrace?: string;
3087
3127
  }, customData?: unknown): void;
3088
3128
  /**
3089
- * **Deprecated:**
3129
+ * **Deprecated:** This deprecated function is a variant of `AnalyticsService:LogProgressionEvent()` which should be used instead.
3090
3130
  *
3091
3131
  * Fire an event used to track player progression through the game.
3092
3132
  *
@@ -3099,13 +3139,7 @@ interface AnalyticsService extends Instance {
3099
3139
  * @param category A user defined category for progression.
3100
3140
  * @param progressionStatus Indicates the status of the progression.
3101
3141
  * @param location The event location. A dictionary that each key-value represents an entry of location data. The key-value is a string-string pair. With this developers can query where is the most frequent location for a specific progression event category. For example, the category could be "LevelUp".
3102
- * ```lua
3103
- * local location = { ["placeDesc"] = "Dungeon1", ["levelDesc"] = "level2", ["mapDesc"] = "LeftChamberMap", ["ProgresionType"] = "LevelUp", ["userDefinedKey5"] = "0005" }
3104
- * ```
3105
3142
  * @param statistics Optional. A dictionary that each key-value represents an entry of statistics data that allows developers to track any specific data that they want to collect as players progress through their game. Key-Value is a string-number pair.
3106
- * ```lua
3107
- * local statistics = { ["numberOfKills"] = 111, ["numberOfExp"] = 222, ["userDefinedKey3"] = number, ["userDefinedKey4"] = number, ["userDefinedKey5"] = number }
3108
- * ```
3109
3143
  * @param customData Optional. User defined data, could be a string, a number or a table.
3110
3144
  *
3111
3145
  * @deprecated
@@ -4006,6 +4040,21 @@ interface AnnotationsService extends Instance {
4006
4040
  */
4007
4041
  readonly _nominal_AnnotationsService: unique symbol;
4008
4042
  }
4043
+ /**
4044
+ * - **Tags**: NotCreatable, Service, NotReplicated
4045
+ *
4046
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AppAgeSignalsService)
4047
+ */
4048
+ interface AppAgeSignalsService extends Instance {
4049
+ /**
4050
+ * **DO NOT USE!**
4051
+ *
4052
+ * This field exists to force TypeScript to recognize this as a nominal type
4053
+ * @hidden
4054
+ * @deprecated
4055
+ */
4056
+ readonly _nominal_AppAgeSignalsService: unique symbol;
4057
+ }
4009
4058
  /**
4010
4059
  * - **Tags**: NotCreatable, Service, NotReplicated
4011
4060
  *
@@ -4214,15 +4263,15 @@ interface AssetService extends Instance {
4214
4263
  */
4215
4264
  CreateEditableMesh(this: AssetService, editableMeshOptions?: object): EditableMesh;
4216
4265
  /**
4217
- * Creates a Decal instance that uses composite PBR textures created by layering the provided textures in the order they are provided in the `layers` array. Textures layer based on the alpha value of the ColorMap.
4266
+ * Modifies an existing `Decal` to contain a composite PBR textures created by layering the provided textures in the order they are provided in the `layers` array. Textures layer based on the alpha value of the color map.
4218
4267
  *
4219
4268
  * - **ThreadSafety**: Unsafe
4220
4269
  * - **Tags**: Yields
4221
4270
  *
4222
4271
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#ComposeDecalAsync)
4223
4272
  * @param this A non-replicated service that handles asset-related queries to the Roblox web API.
4224
- * @param layers An array of `Dictionary` tables that maps PBR names to ContentID.
4225
- * @returns A new `Decal` containing the composed texture set.
4273
+ * @param decal A `Decal` instance that will be modified to contain a representation of the layers. Any existing maps on this instance will be cleared.
4274
+ * @param layers An array of dictionary tables that maps PBR names to `Content` IDs.
4226
4275
  */
4227
4276
  ComposeDecalAsync(this: AssetService, decal: Decal, layers: Array<unknown>): void;
4228
4277
  /**
@@ -4882,6 +4931,8 @@ interface AudioAnalyzer extends Instance {
4882
4931
  */
4883
4932
  SpectrumEnabled: boolean;
4884
4933
  /**
4934
+ * Controls the resolution and timeliness of `GetSpectrum`.
4935
+ *
4885
4936
  * - **ThreadSafety**: ReadSafe
4886
4937
  *
4887
4938
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioAnalyzer#WindowSize)
@@ -4926,6 +4977,7 @@ interface AudioAnalyzer extends Instance {
4926
4977
  *
4927
4978
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioAnalyzer#GetSpectrum)
4928
4979
  * @param this Takes measurements from audio streams that are connected to it via one or more `Wires`.
4980
+ * @returns A table of numbers representing the amplitude levels of various frequencies of audio within the last buffer, or an empty table if a spectrum cannot be obtained.
4929
4981
  */
4930
4982
  GetSpectrum(this: AudioAnalyzer): Array<number>;
4931
4983
  /**
@@ -5541,6 +5593,8 @@ interface AudioEcho extends Instance {
5541
5593
  */
5542
5594
  Feedback: number;
5543
5595
  /**
5596
+ * The time taken to interpolate between `DelayTime` values.
5597
+ *
5544
5598
  * - **ThreadSafety**: ReadSafe
5545
5599
  *
5546
5600
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEcho#RampTime)
@@ -5609,6 +5663,8 @@ interface AudioEmitter extends Instance {
5609
5663
  */
5610
5664
  readonly _nominal_AudioEmitter: unique symbol;
5611
5665
  /**
5666
+ * Determines whether acoustic simulation should be used for this `AudioEmitter`.
5667
+ *
5612
5668
  * - **ThreadSafety**: ReadSafe
5613
5669
  *
5614
5670
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#AcousticSimulationEnabled)
@@ -6108,6 +6164,8 @@ interface AudioFocusService extends Instance {
6108
6164
  readonly _nominal_AudioFocusService: unique symbol;
6109
6165
  }
6110
6166
  /**
6167
+ * Mutes audio streams that fall below a certain volume threshold.
6168
+ *
6111
6169
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate)
6112
6170
  */
6113
6171
  interface AudioGate extends Instance {
@@ -6120,24 +6178,32 @@ interface AudioGate extends Instance {
6120
6178
  */
6121
6179
  readonly _nominal_AudioGate: unique symbol;
6122
6180
  /**
6181
+ * Controls how long it takes for the gate to open when the signal level rises above the `Threshold`.
6182
+ *
6123
6183
  * - **ThreadSafety**: ReadSafe
6124
6184
  *
6125
6185
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#Attack)
6126
6186
  */
6127
6187
  Attack: number;
6128
6188
  /**
6189
+ * Whether audio streams are passed-through unaffected by this effect.
6190
+ *
6129
6191
  * - **ThreadSafety**: ReadSafe
6130
6192
  *
6131
6193
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#Bypass)
6132
6194
  */
6133
6195
  Bypass: boolean;
6134
6196
  /**
6197
+ * Controls how long it takes for the gate to close when the signal level drops below the `Threshold`.
6198
+ *
6135
6199
  * - **ThreadSafety**: ReadSafe
6136
6200
  *
6137
6201
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#Release)
6138
6202
  */
6139
6203
  Release: number;
6140
6204
  /**
6205
+ * The gain value(s) around which the gate opens and closes.
6206
+ *
6141
6207
  * - **ThreadSafety**: ReadSafe
6142
6208
  *
6143
6209
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#Threshold)
@@ -6149,7 +6215,7 @@ interface AudioGate extends Instance {
6149
6215
  * - **ThreadSafety**: Unsafe
6150
6216
  *
6151
6217
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetConnectedWires)
6152
- * @param this
6218
+ * @param this Mutes audio streams that fall below a certain volume threshold.
6153
6219
  * @param pin An input or output pin on this instance
6154
6220
  * @returns An array of `Wires`
6155
6221
  */
@@ -6160,7 +6226,7 @@ interface AudioGate extends Instance {
6160
6226
  * - **ThreadSafety**: Unsafe
6161
6227
  *
6162
6228
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetInputPins)
6163
- * @param this
6229
+ * @param this Mutes audio streams that fall below a certain volume threshold.
6164
6230
  * @returns An array of strings representing valid pin names.
6165
6231
  */
6166
6232
  GetInputPins(this: AudioGate): Array<unknown>;
@@ -6170,12 +6236,12 @@ interface AudioGate extends Instance {
6170
6236
  * - **ThreadSafety**: Unsafe
6171
6237
  *
6172
6238
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioGate#GetOutputPins)
6173
- * @param this
6239
+ * @param this Mutes audio streams that fall below a certain volume threshold.
6174
6240
  * @returns An array of strings representing valid pin names.
6175
6241
  */
6176
6242
  GetOutputPins(this: AudioGate): Array<unknown>;
6177
6243
  /**
6178
- * Fires when another instance is connected to or disconnected from the `AudioAnalyzer` via a `Wire`.
6244
+ * Fires when another instance is connected to or disconnected from the `AudioGate` via a `Wire`.
6179
6245
  *
6180
6246
  * - **ThreadSafety**: Unsafe
6181
6247
  *
@@ -6276,6 +6342,8 @@ interface AudioListener extends Instance {
6276
6342
  */
6277
6343
  readonly _nominal_AudioListener: unique symbol;
6278
6344
  /**
6345
+ * Determines whether acoustic simulation should be used for this `AudioListener`.
6346
+ *
6279
6347
  * - **ThreadSafety**: ReadSafe
6280
6348
  *
6281
6349
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#AcousticSimulationEnabled)
@@ -6435,6 +6503,8 @@ interface AudioPitchShifter extends Instance {
6435
6503
  */
6436
6504
  Pitch: number;
6437
6505
  /**
6506
+ * Controls how much audio will be buffered and shifted at once.
6507
+ *
6438
6508
  * - **ThreadSafety**: ReadSafe
6439
6509
  *
6440
6510
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPitchShifter#WindowSize)
@@ -6516,6 +6586,8 @@ interface AudioPlayer extends Instance {
6516
6586
  */
6517
6587
  AssetId: string;
6518
6588
  /**
6589
+ * The audio content to be loaded into the `AudioPlayer`.
6590
+ *
6519
6591
  * - **ThreadSafety**: ReadSafe
6520
6592
  * - **Tags**: Hidden
6521
6593
  *
@@ -6662,13 +6734,16 @@ interface AudioPlayer extends Instance {
6662
6734
  */
6663
6735
  Stop(this: AudioPlayer): void;
6664
6736
  /**
6737
+ * Returns a sampling of the waveform data for the loaded `Asset`.
6738
+ *
6665
6739
  * - **ThreadSafety**: Unsafe
6666
6740
  * - **Tags**: Yields
6667
6741
  *
6668
6742
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#GetWaveformAsync)
6669
6743
  * @param this Used to play audio assets.
6670
- * @param timeRange
6671
- * @param samples
6744
+ * @param timeRange The start and end time (in seconds) of the segment to read.
6745
+ * @param samples The number of samples to return for the specified range.
6746
+ * @returns A table of `samples` numbers ranging between -1 and 1 representing the sampled waveform, or an empty table if a waveform could not be read.
6672
6747
  */
6673
6748
  GetWaveformAsync(this: AudioPlayer, timeRange: NumberRange, samples: number): Array<unknown>;
6674
6749
  /**
@@ -6713,12 +6788,16 @@ interface AudioRecorder extends Instance {
6713
6788
  */
6714
6789
  readonly _nominal_AudioRecorder: unique symbol;
6715
6790
  /**
6791
+ * Whether the `AudioRecorder` is currently recording.
6792
+ *
6716
6793
  * - **ThreadSafety**: ReadSafe
6717
6794
  *
6718
6795
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#IsRecording)
6719
6796
  */
6720
6797
  get IsRecording(): boolean;
6721
6798
  /**
6799
+ * The current length of the recording in seconds.
6800
+ *
6722
6801
  * - **ThreadSafety**: ReadSafe
6723
6802
  * - **Tags**: NotReplicated
6724
6803
  *
@@ -6726,6 +6805,8 @@ interface AudioRecorder extends Instance {
6726
6805
  */
6727
6806
  readonly TimeLength: number;
6728
6807
  /**
6808
+ * Clears out the recording from the `AudioRecorder`.
6809
+ *
6729
6810
  * - **ThreadSafety**: Unsafe
6730
6811
  *
6731
6812
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Clear)
@@ -6764,13 +6845,18 @@ interface AudioRecorder extends Instance {
6764
6845
  */
6765
6846
  GetOutputPins(this: AudioRecorder): Array<unknown>;
6766
6847
  /**
6848
+ * Returns a `Content` object representing the current audio recording.
6849
+ *
6767
6850
  * - **ThreadSafety**: Unsafe
6768
6851
  *
6769
6852
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetTemporaryContent)
6770
6853
  * @param this Records audio streams in-experience.
6854
+ * @returns A temporary `Content` ID that can be used with `AudioPlayer`.
6771
6855
  */
6772
6856
  GetTemporaryContent(this: AudioRecorder): Content;
6773
6857
  /**
6858
+ * Stops recording audio.
6859
+ *
6774
6860
  * - **ThreadSafety**: Unsafe
6775
6861
  *
6776
6862
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Stop)
@@ -6778,22 +6864,30 @@ interface AudioRecorder extends Instance {
6778
6864
  */
6779
6865
  Stop(this: AudioRecorder): void;
6780
6866
  /**
6867
+ * Returns whether the `AudioRecorder` can currently record.
6868
+ *
6781
6869
  * - **ThreadSafety**: Unsafe
6782
6870
  * - **Tags**: Yields
6783
6871
  *
6784
6872
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#CanRecordAsync)
6785
6873
  * @param this Records audio streams in-experience.
6874
+ * @returns `true` if recording is possible, `false` otherwise.
6786
6875
  */
6787
6876
  CanRecordAsync(this: AudioRecorder): boolean;
6788
6877
  /**
6878
+ * Returns any instances which cannot be recorded.
6879
+ *
6789
6880
  * - **ThreadSafety**: Unsafe
6790
6881
  * - **Tags**: Yields
6791
6882
  *
6792
6883
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetUnrecordableInstancesAsync)
6793
6884
  * @param this Records audio streams in-experience.
6885
+ * @returns A table of `Instances` that are not recordable.
6794
6886
  */
6795
6887
  GetUnrecordableInstancesAsync(this: AudioRecorder): Array<Instance>;
6796
6888
  /**
6889
+ * Starts recording audio.
6890
+ *
6797
6891
  * - **ThreadSafety**: Unsafe
6798
6892
  * - **Tags**: Yields
6799
6893
  *
@@ -6802,7 +6896,7 @@ interface AudioRecorder extends Instance {
6802
6896
  */
6803
6897
  RecordAsync(this: AudioRecorder): void;
6804
6898
  /**
6805
- * Fires when another instance is connected to or disconnected from the `AudioAnalyzer` via a `Wire`.
6899
+ * Fires when another instance is connected to or disconnected from the `AudioRecorder` via a `Wire`.
6806
6900
  *
6807
6901
  * - **ThreadSafety**: Unsafe
6808
6902
  *
@@ -7001,6 +7095,8 @@ interface AudioSearchParams extends Instance {
7001
7095
  */
7002
7096
  Artist: string;
7003
7097
  /**
7098
+ * The subtype of the audio asset.
7099
+ *
7004
7100
  * - **ThreadSafety**: ReadSafe
7005
7101
  *
7006
7102
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioSearchParams#AudioSubType)
@@ -7262,13 +7358,16 @@ interface AudioTextToSpeech extends Instance {
7262
7358
  */
7263
7359
  Unload(this: AudioTextToSpeech): void;
7264
7360
  /**
7361
+ * Returns a sampling of the waveform data for the generated audio.
7362
+ *
7265
7363
  * - **ThreadSafety**: Unsafe
7266
7364
  * - **Tags**: Yields
7267
7365
  *
7268
7366
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#GetWaveformAsync)
7269
7367
  * @param this Plays text as speech audio.
7270
- * @param timeRange
7271
- * @param samples
7368
+ * @param timeRange The start and end time (in seconds) of the segment to read.
7369
+ * @param samples The number of samples to return for the specified range.
7370
+ * @returns A table of `samples` numbers ranging between -1 and 1 representing the sampled waveform,
7272
7371
  */
7273
7372
  GetWaveformAsync(this: AudioTextToSpeech, timeRange: NumberRange, samples: number): Array<unknown>;
7274
7373
  /**
@@ -7321,6 +7420,8 @@ interface AudioTremolo extends Instance {
7321
7420
  */
7322
7421
  readonly _nominal_AudioTremolo: unique symbol;
7323
7422
  /**
7423
+ * Whether audio streams are passed-through unaffected by this effect.
7424
+ *
7324
7425
  * - **ThreadSafety**: ReadSafe
7325
7426
  *
7326
7427
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTremolo#Bypass)
@@ -7406,7 +7507,7 @@ interface AudioTremolo extends Instance {
7406
7507
  */
7407
7508
  GetOutputPins(this: AudioTremolo): Array<unknown>;
7408
7509
  /**
7409
- * Fires when another instance is connected to or disconnected from the `AudioAnalyzer` via a `Wire`.
7510
+ * Fires when another instance is connected to or disconnected from the `AudioTremolo` via a `Wire`.
7410
7511
  *
7411
7512
  * - **ThreadSafety**: Unsafe
7412
7513
  *
@@ -7465,6 +7566,12 @@ interface AuroraScriptService extends Instance {
7465
7566
  * @deprecated
7466
7567
  */
7467
7568
  readonly _nominal_AuroraScriptService: unique symbol;
7569
+ /**
7570
+ * - **ThreadSafety**: Unsafe
7571
+ *
7572
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#CreateCollection)
7573
+ */
7574
+ CreateCollection(this: AuroraScriptService, query: string, root?: Instance): AuroraHandle;
7468
7575
  /**
7469
7576
  * - **ThreadSafety**: Safe
7470
7577
  * - **Tags**: CustomLuaState
@@ -7659,6 +7766,19 @@ interface AuroraService extends Instance {
7659
7766
  */
7660
7767
  readonly Step: RBXScriptSignal<() => void>;
7661
7768
  }
7769
+ /**
7770
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAbilityRules)
7771
+ */
7772
+ interface AvatarAbilityRules extends Instance {
7773
+ /**
7774
+ * **DO NOT USE!**
7775
+ *
7776
+ * This field exists to force TypeScript to recognize this as a nominal type
7777
+ * @hidden
7778
+ * @deprecated
7779
+ */
7780
+ readonly _nominal_AvatarAbilityRules: unique symbol;
7781
+ }
7662
7782
  /**
7663
7783
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAccessoryRules)
7664
7784
  */
@@ -7972,7 +8092,7 @@ interface AvatarCreationService extends Instance {
7972
8092
  /**
7973
8093
  * A service to support developer Avatar Editors.
7974
8094
  *
7975
- * - **Tags**: NotCreatable, Service, NotReplicated
8095
+ * - **Tags**: NotCreatable, Service
7976
8096
  *
7977
8097
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService)
7978
8098
  */
@@ -10738,6 +10858,13 @@ interface CaptureService extends Instance {
10738
10858
  * @param captureParams A dictionary that modifies capture behavior.
10739
10859
  */
10740
10860
  TakeScreenshotCaptureAsync(this: CaptureService, onCaptureReady: Callback, captureParams?: object): void;
10861
+ /**
10862
+ * - **ThreadSafety**: Unsafe
10863
+ * - **Tags**: Yields
10864
+ *
10865
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#CheckUploadCaptureStatusAsync)
10866
+ */
10867
+ CheckUploadCaptureStatusAsync(this: CaptureService, token: string): unknown;
10741
10868
  /**
10742
10869
  * - **ThreadSafety**: Unsafe
10743
10870
  * - **Tags**: Yields
@@ -10773,6 +10900,13 @@ interface CaptureService extends Instance {
10773
10900
  * @returns Tuple of (result: `ReadCapturesFromGalleryResult`, capturesPages: `CapturesPages`)
10774
10901
  */
10775
10902
  ReadCapturesFromGalleryAsync(this: CaptureService, captureTypeFilters?: Array<unknown>, readFromAllEligibleExperiences?: boolean): unknown;
10903
+ /**
10904
+ * - **ThreadSafety**: Unsafe
10905
+ * - **Tags**: Yields
10906
+ *
10907
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#StartUploadCaptureAsync)
10908
+ */
10909
+ StartUploadCaptureAsync(this: CaptureService, capture: Capture): unknown;
10776
10910
  /**
10777
10911
  * Initiates a video capture recording.
10778
10912
  *
@@ -15430,6 +15564,10 @@ interface DataStoreService extends Instance {
15430
15564
  * - **ThreadSafety**: Unsafe
15431
15565
  *
15432
15566
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataStoreService#SetRateLimitForRequestType)
15567
+ * @param this A game service that gives access to persistent data storage across places in a game.
15568
+ * @param requestType
15569
+ * @param baseLimit
15570
+ * @param perPlayerLimit
15433
15571
  */
15434
15572
  SetRateLimitForRequestType(this: DataStoreService, requestType: CastsToEnum<Enum.DataStoreRequestType>, baseLimit: number, perPlayerLimit: number): void;
15435
15573
  /**
@@ -15795,6 +15933,299 @@ interface DialogChoice extends Instance {
15795
15933
  */
15796
15934
  UserDialog: string;
15797
15935
  }
15936
+ /**
15937
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription)
15938
+ */
15939
+ interface DigitsRigDescription extends Instance {
15940
+ /**
15941
+ * **DO NOT USE!**
15942
+ *
15943
+ * This field exists to force TypeScript to recognize this as a nominal type
15944
+ * @hidden
15945
+ * @deprecated
15946
+ */
15947
+ readonly _nominal_DigitsRigDescription: unique symbol;
15948
+ /**
15949
+ * - **ThreadSafety**: ReadSafe
15950
+ *
15951
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Index1)
15952
+ */
15953
+ Index1: Instance | undefined;
15954
+ /**
15955
+ * - **ThreadSafety**: ReadSafe
15956
+ *
15957
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Index1TposeAdjustment)
15958
+ */
15959
+ Index1TposeAdjustment: CFrame;
15960
+ /**
15961
+ * - **ThreadSafety**: ReadSafe
15962
+ *
15963
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Index2)
15964
+ */
15965
+ Index2: Instance | undefined;
15966
+ /**
15967
+ * - **ThreadSafety**: ReadSafe
15968
+ *
15969
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Index2TposeAdjustment)
15970
+ */
15971
+ Index2TposeAdjustment: CFrame;
15972
+ /**
15973
+ * - **ThreadSafety**: ReadSafe
15974
+ *
15975
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Index3)
15976
+ */
15977
+ Index3: Instance | undefined;
15978
+ /**
15979
+ * - **ThreadSafety**: ReadSafe
15980
+ *
15981
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Index3TposeAdjustment)
15982
+ */
15983
+ Index3TposeAdjustment: CFrame;
15984
+ /**
15985
+ * - **ThreadSafety**: ReadSafe
15986
+ *
15987
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#IndexRange)
15988
+ */
15989
+ IndexRange: Vector3;
15990
+ /**
15991
+ * - **ThreadSafety**: ReadSafe
15992
+ *
15993
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#IndexSize)
15994
+ */
15995
+ IndexSize: number;
15996
+ /**
15997
+ * - **ThreadSafety**: ReadSafe
15998
+ *
15999
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Middle1)
16000
+ */
16001
+ Middle1: Instance | undefined;
16002
+ /**
16003
+ * - **ThreadSafety**: ReadSafe
16004
+ *
16005
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Middle1TposeAdjustment)
16006
+ */
16007
+ Middle1TposeAdjustment: CFrame;
16008
+ /**
16009
+ * - **ThreadSafety**: ReadSafe
16010
+ *
16011
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Middle2)
16012
+ */
16013
+ Middle2: Instance | undefined;
16014
+ /**
16015
+ * - **ThreadSafety**: ReadSafe
16016
+ *
16017
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Middle2TposeAdjustment)
16018
+ */
16019
+ Middle2TposeAdjustment: CFrame;
16020
+ /**
16021
+ * - **ThreadSafety**: ReadSafe
16022
+ *
16023
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Middle3)
16024
+ */
16025
+ Middle3: Instance | undefined;
16026
+ /**
16027
+ * - **ThreadSafety**: ReadSafe
16028
+ *
16029
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Middle3TposeAdjustment)
16030
+ */
16031
+ Middle3TposeAdjustment: CFrame;
16032
+ /**
16033
+ * - **ThreadSafety**: ReadSafe
16034
+ *
16035
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#MiddleRange)
16036
+ */
16037
+ MiddleRange: Vector3;
16038
+ /**
16039
+ * - **ThreadSafety**: ReadSafe
16040
+ *
16041
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#MiddleSize)
16042
+ */
16043
+ MiddleSize: number;
16044
+ /**
16045
+ * - **ThreadSafety**: ReadSafe
16046
+ *
16047
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Pinky1)
16048
+ */
16049
+ Pinky1: Instance | undefined;
16050
+ /**
16051
+ * - **ThreadSafety**: ReadSafe
16052
+ *
16053
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Pinky1TposeAdjustment)
16054
+ */
16055
+ Pinky1TposeAdjustment: CFrame;
16056
+ /**
16057
+ * - **ThreadSafety**: ReadSafe
16058
+ *
16059
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Pinky2)
16060
+ */
16061
+ Pinky2: Instance | undefined;
16062
+ /**
16063
+ * - **ThreadSafety**: ReadSafe
16064
+ *
16065
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Pinky2TposeAdjustment)
16066
+ */
16067
+ Pinky2TposeAdjustment: CFrame;
16068
+ /**
16069
+ * - **ThreadSafety**: ReadSafe
16070
+ *
16071
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Pinky3)
16072
+ */
16073
+ Pinky3: Instance | undefined;
16074
+ /**
16075
+ * - **ThreadSafety**: ReadSafe
16076
+ *
16077
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Pinky3TposeAdjustment)
16078
+ */
16079
+ Pinky3TposeAdjustment: CFrame;
16080
+ /**
16081
+ * - **ThreadSafety**: ReadSafe
16082
+ *
16083
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#PinkyRange)
16084
+ */
16085
+ PinkyRange: Vector3;
16086
+ /**
16087
+ * - **ThreadSafety**: ReadSafe
16088
+ *
16089
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#PinkySize)
16090
+ */
16091
+ PinkySize: number;
16092
+ /**
16093
+ * - **ThreadSafety**: ReadSafe
16094
+ *
16095
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Ring1)
16096
+ */
16097
+ Ring1: Instance | undefined;
16098
+ /**
16099
+ * - **ThreadSafety**: ReadSafe
16100
+ *
16101
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Ring1TposeAdjustment)
16102
+ */
16103
+ Ring1TposeAdjustment: CFrame;
16104
+ /**
16105
+ * - **ThreadSafety**: ReadSafe
16106
+ *
16107
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Ring2)
16108
+ */
16109
+ Ring2: Instance | undefined;
16110
+ /**
16111
+ * - **ThreadSafety**: ReadSafe
16112
+ *
16113
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Ring2TposeAdjustment)
16114
+ */
16115
+ Ring2TposeAdjustment: CFrame;
16116
+ /**
16117
+ * - **ThreadSafety**: ReadSafe
16118
+ *
16119
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Ring3)
16120
+ */
16121
+ Ring3: Instance | undefined;
16122
+ /**
16123
+ * - **ThreadSafety**: ReadSafe
16124
+ *
16125
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Ring3TposeAdjustment)
16126
+ */
16127
+ Ring3TposeAdjustment: CFrame;
16128
+ /**
16129
+ * - **ThreadSafety**: ReadSafe
16130
+ *
16131
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#RingRange)
16132
+ */
16133
+ RingRange: Vector3;
16134
+ /**
16135
+ * - **ThreadSafety**: ReadSafe
16136
+ *
16137
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#RingSize)
16138
+ */
16139
+ RingSize: number;
16140
+ /**
16141
+ * - **ThreadSafety**: ReadSafe
16142
+ *
16143
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Side)
16144
+ */
16145
+ Side: Enum.DigitsRigDescriptionSide;
16146
+ /**
16147
+ * - **ThreadSafety**: ReadSafe
16148
+ *
16149
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Thumb1)
16150
+ */
16151
+ Thumb1: Instance | undefined;
16152
+ /**
16153
+ * - **ThreadSafety**: ReadSafe
16154
+ *
16155
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Thumb1TposeAdjustment)
16156
+ */
16157
+ Thumb1TposeAdjustment: CFrame;
16158
+ /**
16159
+ * - **ThreadSafety**: ReadSafe
16160
+ *
16161
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Thumb2)
16162
+ */
16163
+ Thumb2: Instance | undefined;
16164
+ /**
16165
+ * - **ThreadSafety**: ReadSafe
16166
+ *
16167
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Thumb2TposeAdjustment)
16168
+ */
16169
+ Thumb2TposeAdjustment: CFrame;
16170
+ /**
16171
+ * - **ThreadSafety**: ReadSafe
16172
+ *
16173
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Thumb3)
16174
+ */
16175
+ Thumb3: Instance | undefined;
16176
+ /**
16177
+ * - **ThreadSafety**: ReadSafe
16178
+ *
16179
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#Thumb3TposeAdjustment)
16180
+ */
16181
+ Thumb3TposeAdjustment: CFrame;
16182
+ /**
16183
+ * - **ThreadSafety**: ReadSafe
16184
+ *
16185
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#ThumbRange)
16186
+ */
16187
+ ThumbRange: Vector3;
16188
+ /**
16189
+ * - **ThreadSafety**: ReadSafe
16190
+ *
16191
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#ThumbSize)
16192
+ */
16193
+ ThumbSize: number;
16194
+ /**
16195
+ * - **ThreadSafety**: Unsafe
16196
+ *
16197
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#GetFingerControl)
16198
+ * @param this
16199
+ * @param fingerIndex
16200
+ */
16201
+ GetFingerControl(this: DigitsRigDescription, fingerIndex: number): Vector3;
16202
+ /**
16203
+ * - **ThreadSafety**: Unsafe
16204
+ *
16205
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#GetFingerTip)
16206
+ * @param this
16207
+ * @param fingerIndex
16208
+ */
16209
+ GetFingerTip(this: DigitsRigDescription, fingerIndex: number): Vector3;
16210
+ /**
16211
+ * - **ThreadSafety**: Unsafe
16212
+ *
16213
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#SetFingerControl)
16214
+ * @param this
16215
+ * @param fingerIndex
16216
+ * @param control
16217
+ */
16218
+ SetFingerControl(this: DigitsRigDescription, fingerIndex: number, control: Vector3): void;
16219
+ /**
16220
+ * - **ThreadSafety**: Unsafe
16221
+ *
16222
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DigitsRigDescription#SetFingerTip)
16223
+ * @param this
16224
+ * @param fingerIndex
16225
+ * @param point
16226
+ */
16227
+ SetFingerTip(this: DigitsRigDescription, fingerIndex: number, point: Vector3): void;
16228
+ }
15798
16229
  /**
15799
16230
  * A helper object used to create tools that can drag parts.
15800
16231
  *
@@ -17326,92 +17757,119 @@ interface GeometryService extends Instance {
17326
17757
  */
17327
17758
  CalculateConstraintsToPreserve(this: GeometryService, source: Instance, destination: ReadonlyArray<Instance>, options?: CalculateConstraintsToPreserveConfig): Array<unknown>;
17328
17759
  /**
17760
+ * - **ThreadSafety**: Unsafe
17761
+ *
17762
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#CreateSolidPrimitive)
17763
+ */
17764
+ CreateSolidPrimitive(this: GeometryService, type: CastsToEnum<Enum.SolidPrimitiveType>, options?: object): MeshPart;
17765
+ /**
17766
+ * Provides an array of positions which can easily be passed into `FragmentAsync` to perform simple types of destruction.
17767
+ *
17329
17768
  * - **ThreadSafety**: Unsafe
17330
17769
  *
17331
17770
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#GenerateFragmentSites)
17771
+ * @param this Service containing geometric operations.
17772
+ * @param part The `Part`, `PartOperation`, or `MeshPart` which you are planning to pass into `FragmentAsync()`. This is necessary to make the fragment site generation and the subsequent `FragmentAsync()` call efficient.
17773
+ * @param options Options table containing all the controls for the method: - `SiteSpacing` — The approximate distance between sites, which directly corresponds to the diameter of the resulting fragments. If not specified, a reasonable value will be chosen.
17774
+ * - `Origin` — If provided, this will be the center of the area to be fragmented. If not provided, the entire object will be fragmented.
17775
+ * - `Radius` — If provided, this will be the center of the area to be fragmented. Either `Origin` and `Radius` should both be provided, or neither.
17776
+ *
17777
+ *
17778
+ * @returns An array of `Vector3` which is typically passed into `FragmentAsync()`. The output depends on the options provided. If `Origin` and `Radius` are provided, then the output array will contain several `Vector3` elements which will all be located within the radius, but the last element of the array will be an inner array containing many `Vector3` sites which are outside the radius. If `Origin` and `Radius` are not provided, the output will simply be an array of `Vector3` positions within the extents of the input `part`.
17332
17779
  */
17333
17780
  GenerateFragmentSites(this: GeometryService, part: BasePart, options?: object): Array<unknown>;
17334
17781
  /**
17335
- * This API has not been released.
17782
+ * Breaks a `BasePart` into multiple `MeshPart` instances, according to the pattern of points passed in, by using voronoi decomposition.
17336
17783
  *
17337
17784
  * - **ThreadSafety**: Unsafe
17338
17785
  * - **Tags**: Yields
17339
17786
  *
17340
17787
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#FragmentAsync)
17341
17788
  * @param this Service containing geometric operations.
17342
- * @param part
17343
- * @param sites
17344
- * @param options
17789
+ * @param part A `Part`, `PartOperation`, or `MeshPart` to operate on.
17790
+ * @param sites Array of `Vector3` defining the site positions. Each site will become a separate part. You can also provide a jagged 2D array of `Vector3` by including inner arrays of `Vector3` as elements of the outer array. Each inner array will have all of its voronoi cells merged into a single part. `GeometryService:GenerateFragmentSites` can be used to easily create this input.
17791
+ * @param options Options table containing all the controls for the method: - `CollisionFidelity` — The value of `CollisionFidelity` in the resulting parts, with one caveat: If a 2D array of sites is provided, this collision fidelity will only be applied to parts which came from more than one site. The others will be given `Hull` precision.
17792
+ * - `RenderFidelity` — The value of `RenderFidelity` in the resulting parts.
17793
+ * - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
17794
+ * - `SplitApart` — Boolean controlling whether a part should be split into multiple parts if it contains multiple connected components. Default is `true` (split).
17795
+ *
17796
+ *
17797
+ * @returns Array of `MeshPart` along with mapping info. Each array element is a Dictionary with two elements: `{ “Instance”: instance, “Index”: index }`. `Index` is the index in the outer array of sites; in other words, it tells you which group of sites this instance came from. Note that it is possible for multiple instances to have the same index, if SplitApart is `true`.
17345
17798
  */
17346
17799
  FragmentAsync(this: GeometryService, part: BasePart, sites: Array<unknown>, options?: object): Array<unknown>;
17347
17800
  /**
17348
- * Creates one or more `PartOperations` from the intersecting geometry of one part and other parts.
17801
+ * Creates one or more `PartOperations` or `MeshParts` from the intersecting geometry of multiple parts.
17349
17802
  *
17350
17803
  * - **ThreadSafety**: Unsafe
17351
17804
  * - **Tags**: Yields
17352
17805
  *
17353
17806
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#IntersectAsync)
17354
17807
  * @param this Service containing geometric operations.
17355
- * @param part Main `Part` or `PartOperation` to operate on.
17356
- * @param parts Array of parts to intersect with the main part.
17808
+ * @param part Main `Part`, `PartOperation`, or `MeshPart` to operate on.
17809
+ * @param parts Array of other parts to intersect with the main part.
17357
17810
  * @param options Options table containing all the controls for the method: - `CollisionFidelity` — The value of `CollisionFidelity` in the resulting parts.
17358
- * - `RenderFidelity` — The value of `RenderFidelity` in the resulting parts.
17359
- * - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
17811
+ * - `RenderFidelity` — The value of `RenderFidelity` or `RenderFidelity` in the resulting parts.
17812
+ * - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
17360
17813
  * - `SplitApart` — Boolean controlling whether the objects should all be kept together or properly split apart. Default is `true` (split).
17361
17814
  *
17362
17815
  *
17363
- * @returns One or more `PartOperations` from the intersecting geometry of the main part (`part`) and the other parts.
17816
+ * @returns One or more `PartOperations` or `MeshParts`. If the input contained any `MeshParts`, then the results will always be `MeshParts`.
17364
17817
  */
17365
17818
  IntersectAsync(this: GeometryService, part: Part | PartOperation, parts: ReadonlyArray<Part | PartOperation>, options?: GeometryServiceAsyncMethodConfig): Array<PartOperation>;
17366
17819
  /**
17367
- * Creates one or more `PartOperations` from one part minus the geometry occupied by other parts.
17820
+ * Creates one or more `PartOperations` or `MeshParts` from one part minus the space occupied by other parts.
17368
17821
  *
17369
17822
  * - **ThreadSafety**: Unsafe
17370
17823
  * - **Tags**: Yields
17371
17824
  *
17372
17825
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#SubtractAsync)
17373
17826
  * @param this Service containing geometric operations.
17374
- * @param part Main `Part` or `PartOperation` to operate on.
17827
+ * @param part Main `Part`, `PartOperation`, or `MeshPart` to operate on.
17375
17828
  * @param parts Array of parts to subtract from the main part.
17376
17829
  * @param options Options table containing all the controls for the method: - `CollisionFidelity` — The value of `CollisionFidelity` in the resulting parts.
17377
- * - `RenderFidelity` — The value of `RenderFidelity` in the resulting parts.
17378
- * - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
17830
+ * - `RenderFidelity` — The value of `RenderFidelity` or `RenderFidelity` in the resulting parts.
17831
+ * - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
17379
17832
  * - `SplitApart` — Boolean controlling whether the objects should all be kept together or properly split apart. Default is `true` (split).
17380
17833
  *
17381
17834
  *
17382
- * @returns One or more `PartOperations` from the geometry of the main part (`part`) minus the geometry occupied by the other parts.
17835
+ * @returns One or more `PartOperations` or `MeshParts`. If the input contained any `MeshParts`, then the results will always be `MeshParts`.
17383
17836
  */
17384
17837
  SubtractAsync(this: GeometryService, part: Part | PartOperation, parts: ReadonlyArray<Part | PartOperation>, options?: GeometryServiceAsyncMethodConfig): Array<PartOperation>;
17385
17838
  /**
17386
- * This API has not been released.
17839
+ * Creates a `MeshPart` which has the shape of the input part stretched/dragged through the given set of `CFrame` positions.
17387
17840
  *
17388
17841
  * - **ThreadSafety**: Unsafe
17389
17842
  * - **Tags**: Yields
17390
17843
  *
17391
17844
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#SweepPartAsync)
17392
17845
  * @param this Service containing geometric operations.
17393
- * @param part
17394
- * @param cframes
17395
- * @param options
17846
+ * @param part A `Part`, `PartOperation`, or `MeshPart` to operate on.
17847
+ * @param cframes Array of coordinate frames to sweep parts through.
17848
+ * @param options Options table containing all the controls for the method: - `CollisionFidelity` — The value of `CollisionFidelity` in the resulting parts.
17849
+ * - `RenderFidelity` — The value of `RenderFidelity` in the resulting parts.
17850
+ * - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
17851
+ *
17852
+ *
17853
+ * @returns A new `MeshPart` with the swept geometry.
17396
17854
  */
17397
17855
  SweepPartAsync(this: GeometryService, part: BasePart, cframes: Array<unknown>, options?: object): MeshPart;
17398
17856
  /**
17399
- * Creates one or more `PartOperations` from one part plus the geometry occupied by other parts.
17857
+ * Creates one or more `PartOperations` or `MeshParts` from one part plus the space occupied by other parts.
17400
17858
  *
17401
17859
  * - **ThreadSafety**: Unsafe
17402
17860
  * - **Tags**: Yields
17403
17861
  *
17404
17862
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeometryService#UnionAsync)
17405
17863
  * @param this Service containing geometric operations.
17406
- * @param part Main `Part` or `PartOperation` to operate on.
17864
+ * @param part Main `Part`, `PartOperation`, or `MeshPart` to operate on.
17407
17865
  * @param parts Array of parts to union with the main part.
17408
17866
  * @param options Options table containing all the controls for the method: - `CollisionFidelity` — The value of `CollisionFidelity` in the resulting parts.
17409
- * - `RenderFidelity` — The value of `RenderFidelity` in the resulting parts.
17410
- * - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
17867
+ * - `RenderFidelity` — The value of `RenderFidelity` or `RenderFidelity` in the resulting parts.
17868
+ * - `FluidFidelity` — The value of `FluidFidelity` in the resulting parts.
17411
17869
  * - `SplitApart` — Boolean controlling whether the objects should all be kept together or properly split apart. Default is `true` (split).
17412
17870
  *
17413
17871
  *
17414
- * @returns One or more `PartOperations` from the geometry of the main part (`part`) plus the geometry occupied by the other parts.
17872
+ * @returns One or more `PartOperations` or `MeshParts`. If the input contained any `MeshParts`, then the results will always be `MeshParts`.
17415
17873
  */
17416
17874
  UnionAsync(this: GeometryService, part: Part | PartOperation, parts: ReadonlyArray<Part | PartOperation>, options?: GeometryServiceAsyncMethodConfig): Array<PartOperation>;
17417
17875
  }
@@ -17656,6 +18114,8 @@ interface DataStore extends GlobalDataStore {
17656
18114
  * @param this
17657
18115
  * @param key Key name for which a version is to be removed. If `DataStoreOptions.AllScopes` was set to true when accessing the data store through `DataStoreService:GetDataStore()`, this key name must be prepended with the original scope as in "scope/key".
17658
18116
  * @param version Version number of the key to remove.
18117
+ *
18118
+ * @deprecated
17659
18119
  */
17660
18120
  RemoveVersionAsync(this: DataStore, key: string, version: string): void;
17661
18121
  GetAsync<T>(this: DataStore, key: string, options?: DataStoreGetOptions): LuaTuple<[
@@ -17717,6 +18177,21 @@ interface OrderedDataStore extends GlobalDataStore {
17717
18177
  SetAsync(this: OrderedDataStore, key: string, value?: unknown): void;
17718
18178
  UpdateAsync(this: OrderedDataStore, key: string, transformFunction: (oldValue: number | undefined) => number | undefined): number | undefined;
17719
18179
  }
18180
+ /**
18181
+ * - **Tags**: NotCreatable, Service
18182
+ *
18183
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GongService)
18184
+ */
18185
+ interface GongService extends Instance {
18186
+ /**
18187
+ * **DO NOT USE!**
18188
+ *
18189
+ * This field exists to force TypeScript to recognize this as a nominal type
18190
+ * @hidden
18191
+ * @deprecated
18192
+ */
18193
+ readonly _nominal_GongService: unique symbol;
18194
+ }
17720
18195
  /**
17721
18196
  * GroupService is a service that allows developers to fetch information about a Roblox group from within a game.
17722
18197
  *
@@ -18066,6 +18541,12 @@ interface GuiObject extends GuiBase2d {
18066
18541
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiObject#GuiState)
18067
18542
  */
18068
18543
  readonly GuiState: Enum.GuiState;
18544
+ /**
18545
+ * - **ThreadSafety**: ReadSafe
18546
+ *
18547
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiObject#InputSink)
18548
+ */
18549
+ InputSink: Enum.InputSink;
18069
18550
  /**
18070
18551
  * Determines whether the `GuiButton` can be interacted with or not, or if the `GuiState` of the `GuiObject` is changing or not.
18071
18552
  *
@@ -19526,12 +20007,14 @@ interface ScrollingFrame extends GuiObject {
19526
20007
  * - **ThreadSafety**: Unsafe
19527
20008
  *
19528
20009
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#GetScrollVelocity)
20010
+ * @param this `ScrollingFrame` is a special `Frame` type with built-in scrolling interactivity and different ways to customize how the scrolling works.
19529
20011
  */
19530
20012
  GetScrollVelocity(this: ScrollingFrame): Vector2;
19531
20013
  /**
19532
20014
  * - **ThreadSafety**: Unsafe
19533
20015
  *
19534
20016
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScrollingFrame#ResetScrollVelocity)
20017
+ * @param this `ScrollingFrame` is a special `Frame` type with built-in scrolling interactivity and different ways to customize how the scrolling works.
19535
20018
  */
19536
20019
  ResetScrollVelocity(this: ScrollingFrame): void;
19537
20020
  }
@@ -22064,6 +22547,8 @@ interface GuiService extends Instance {
22064
22547
  * - **ThreadSafety**: Unsafe
22065
22548
  *
22066
22549
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiService#GetInsetArea)
22550
+ * @param this Offers numerous properties and methods for working with `GuiObjects`, player preferences, and other UI‑related tasks.
22551
+ * @param screenInsets
22067
22552
  */
22068
22553
  GetInsetArea(this: GuiService, screenInsets: CastsToEnum<Enum.ScreenInsets>): Rect;
22069
22554
  /**
@@ -22186,301 +22671,6 @@ interface GuiService extends Instance {
22186
22671
  */
22187
22672
  readonly MenuOpened: RBXScriptSignal<() => void>;
22188
22673
  }
22189
- /**
22190
- * - **Tags**: NotBrowsable
22191
- *
22192
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription)
22193
- */
22194
- interface HandRigDescription extends Instance {
22195
- /**
22196
- * **DO NOT USE!**
22197
- *
22198
- * This field exists to force TypeScript to recognize this as a nominal type
22199
- * @hidden
22200
- * @deprecated
22201
- */
22202
- readonly _nominal_HandRigDescription: unique symbol;
22203
- /**
22204
- * - **ThreadSafety**: ReadSafe
22205
- *
22206
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index1)
22207
- */
22208
- Index1: Instance | undefined;
22209
- /**
22210
- * - **ThreadSafety**: ReadSafe
22211
- *
22212
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index1TposeAdjustment)
22213
- */
22214
- Index1TposeAdjustment: CFrame;
22215
- /**
22216
- * - **ThreadSafety**: ReadSafe
22217
- *
22218
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index2)
22219
- */
22220
- Index2: Instance | undefined;
22221
- /**
22222
- * - **ThreadSafety**: ReadSafe
22223
- *
22224
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index2TposeAdjustment)
22225
- */
22226
- Index2TposeAdjustment: CFrame;
22227
- /**
22228
- * - **ThreadSafety**: ReadSafe
22229
- *
22230
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index3)
22231
- */
22232
- Index3: Instance | undefined;
22233
- /**
22234
- * - **ThreadSafety**: ReadSafe
22235
- *
22236
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Index3TposeAdjustment)
22237
- */
22238
- Index3TposeAdjustment: CFrame;
22239
- /**
22240
- * - **ThreadSafety**: ReadSafe
22241
- *
22242
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#IndexRange)
22243
- */
22244
- IndexRange: Vector3;
22245
- /**
22246
- * - **ThreadSafety**: ReadSafe
22247
- *
22248
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#IndexSize)
22249
- */
22250
- IndexSize: number;
22251
- /**
22252
- * - **ThreadSafety**: ReadSafe
22253
- *
22254
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle1)
22255
- */
22256
- Middle1: Instance | undefined;
22257
- /**
22258
- * - **ThreadSafety**: ReadSafe
22259
- *
22260
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle1TposeAdjustment)
22261
- */
22262
- Middle1TposeAdjustment: CFrame;
22263
- /**
22264
- * - **ThreadSafety**: ReadSafe
22265
- *
22266
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle2)
22267
- */
22268
- Middle2: Instance | undefined;
22269
- /**
22270
- * - **ThreadSafety**: ReadSafe
22271
- *
22272
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle2TposeAdjustment)
22273
- */
22274
- Middle2TposeAdjustment: CFrame;
22275
- /**
22276
- * - **ThreadSafety**: ReadSafe
22277
- *
22278
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle3)
22279
- */
22280
- Middle3: Instance | undefined;
22281
- /**
22282
- * - **ThreadSafety**: ReadSafe
22283
- *
22284
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Middle3TposeAdjustment)
22285
- */
22286
- Middle3TposeAdjustment: CFrame;
22287
- /**
22288
- * - **ThreadSafety**: ReadSafe
22289
- *
22290
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#MiddleRange)
22291
- */
22292
- MiddleRange: Vector3;
22293
- /**
22294
- * - **ThreadSafety**: ReadSafe
22295
- *
22296
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#MiddleSize)
22297
- */
22298
- MiddleSize: number;
22299
- /**
22300
- * - **ThreadSafety**: ReadSafe
22301
- *
22302
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky1)
22303
- */
22304
- Pinky1: Instance | undefined;
22305
- /**
22306
- * - **ThreadSafety**: ReadSafe
22307
- *
22308
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky1TposeAdjustment)
22309
- */
22310
- Pinky1TposeAdjustment: CFrame;
22311
- /**
22312
- * - **ThreadSafety**: ReadSafe
22313
- *
22314
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky2)
22315
- */
22316
- Pinky2: Instance | undefined;
22317
- /**
22318
- * - **ThreadSafety**: ReadSafe
22319
- *
22320
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky2TposeAdjustment)
22321
- */
22322
- Pinky2TposeAdjustment: CFrame;
22323
- /**
22324
- * - **ThreadSafety**: ReadSafe
22325
- *
22326
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky3)
22327
- */
22328
- Pinky3: Instance | undefined;
22329
- /**
22330
- * - **ThreadSafety**: ReadSafe
22331
- *
22332
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Pinky3TposeAdjustment)
22333
- */
22334
- Pinky3TposeAdjustment: CFrame;
22335
- /**
22336
- * - **ThreadSafety**: ReadSafe
22337
- *
22338
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#PinkyRange)
22339
- */
22340
- PinkyRange: Vector3;
22341
- /**
22342
- * - **ThreadSafety**: ReadSafe
22343
- *
22344
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#PinkySize)
22345
- */
22346
- PinkySize: number;
22347
- /**
22348
- * - **ThreadSafety**: ReadSafe
22349
- *
22350
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring1)
22351
- */
22352
- Ring1: Instance | undefined;
22353
- /**
22354
- * - **ThreadSafety**: ReadSafe
22355
- *
22356
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring1TposeAdjustment)
22357
- */
22358
- Ring1TposeAdjustment: CFrame;
22359
- /**
22360
- * - **ThreadSafety**: ReadSafe
22361
- *
22362
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring2)
22363
- */
22364
- Ring2: Instance | undefined;
22365
- /**
22366
- * - **ThreadSafety**: ReadSafe
22367
- *
22368
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring2TposeAdjustment)
22369
- */
22370
- Ring2TposeAdjustment: CFrame;
22371
- /**
22372
- * - **ThreadSafety**: ReadSafe
22373
- *
22374
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring3)
22375
- */
22376
- Ring3: Instance | undefined;
22377
- /**
22378
- * - **ThreadSafety**: ReadSafe
22379
- *
22380
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Ring3TposeAdjustment)
22381
- */
22382
- Ring3TposeAdjustment: CFrame;
22383
- /**
22384
- * - **ThreadSafety**: ReadSafe
22385
- *
22386
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#RingRange)
22387
- */
22388
- RingRange: Vector3;
22389
- /**
22390
- * - **ThreadSafety**: ReadSafe
22391
- *
22392
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#RingSize)
22393
- */
22394
- RingSize: number;
22395
- /**
22396
- * - **ThreadSafety**: ReadSafe
22397
- *
22398
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Side)
22399
- */
22400
- Side: Enum.HandRigDescriptionSide;
22401
- /**
22402
- * - **ThreadSafety**: ReadSafe
22403
- *
22404
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb1)
22405
- */
22406
- Thumb1: Instance | undefined;
22407
- /**
22408
- * - **ThreadSafety**: ReadSafe
22409
- *
22410
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb1TposeAdjustment)
22411
- */
22412
- Thumb1TposeAdjustment: CFrame;
22413
- /**
22414
- * - **ThreadSafety**: ReadSafe
22415
- *
22416
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb2)
22417
- */
22418
- Thumb2: Instance | undefined;
22419
- /**
22420
- * - **ThreadSafety**: ReadSafe
22421
- *
22422
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb2TposeAdjustment)
22423
- */
22424
- Thumb2TposeAdjustment: CFrame;
22425
- /**
22426
- * - **ThreadSafety**: ReadSafe
22427
- *
22428
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb3)
22429
- */
22430
- Thumb3: Instance | undefined;
22431
- /**
22432
- * - **ThreadSafety**: ReadSafe
22433
- *
22434
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#Thumb3TposeAdjustment)
22435
- */
22436
- Thumb3TposeAdjustment: CFrame;
22437
- /**
22438
- * - **ThreadSafety**: ReadSafe
22439
- *
22440
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#ThumbRange)
22441
- */
22442
- ThumbRange: Vector3;
22443
- /**
22444
- * - **ThreadSafety**: ReadSafe
22445
- *
22446
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#ThumbSize)
22447
- */
22448
- ThumbSize: number;
22449
- /**
22450
- * - **ThreadSafety**: Unsafe
22451
- *
22452
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#GetFingerControl)
22453
- * @param this
22454
- * @param fingerIndex
22455
- */
22456
- GetFingerControl(this: HandRigDescription, fingerIndex: number): Vector3;
22457
- /**
22458
- * - **ThreadSafety**: Unsafe
22459
- *
22460
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#GetFingerTip)
22461
- * @param this
22462
- * @param fingerIndex
22463
- */
22464
- GetFingerTip(this: HandRigDescription, fingerIndex: number): Vector3;
22465
- /**
22466
- * - **ThreadSafety**: Unsafe
22467
- *
22468
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#SetFingerControl)
22469
- * @param this
22470
- * @param fingerIndex
22471
- * @param control
22472
- */
22473
- SetFingerControl(this: HandRigDescription, fingerIndex: number, control: Vector3): void;
22474
- /**
22475
- * - **ThreadSafety**: Unsafe
22476
- *
22477
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HandRigDescription#SetFingerTip)
22478
- * @param this
22479
- * @param fingerIndex
22480
- * @param point
22481
- */
22482
- SetFingerTip(this: HandRigDescription, fingerIndex: number, point: Vector3): void;
22483
- }
22484
22674
  /**
22485
22675
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect)
22486
22676
  */
@@ -23365,6 +23555,12 @@ interface Humanoid extends Instance {
23365
23555
  * @deprecated
23366
23556
  */
23367
23557
  GetPlayingAnimationTracks(this: Humanoid): Array<AnimationTrack>;
23558
+ /**
23559
+ * - **ThreadSafety**: Unsafe
23560
+ *
23561
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Humanoid#GetRelativeVelocityAtFloor)
23562
+ */
23563
+ GetRelativeVelocityAtFloor(this: Humanoid): Vector3;
23368
23564
  /**
23369
23565
  * Returns the humanoid's current `HumanoidStateType`.
23370
23566
  *
@@ -24558,33 +24754,33 @@ interface HumanoidRigDescription extends Instance {
24558
24754
  /**
24559
24755
  * - **ThreadSafety**: ReadSafe
24560
24756
  *
24561
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToes)
24757
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToeBase)
24562
24758
  */
24563
- LeftToes: Instance | undefined;
24759
+ LeftToeBase: Instance | undefined;
24564
24760
  /**
24565
24761
  * - **ThreadSafety**: ReadSafe
24566
24762
  *
24567
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToesRangeMax)
24763
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToeBaseRangeMax)
24568
24764
  */
24569
- LeftToesRangeMax: Vector3;
24765
+ LeftToeBaseRangeMax: Vector3;
24570
24766
  /**
24571
24767
  * - **ThreadSafety**: ReadSafe
24572
24768
  *
24573
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToesRangeMin)
24769
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToeBaseRangeMin)
24574
24770
  */
24575
- LeftToesRangeMin: Vector3;
24771
+ LeftToeBaseRangeMin: Vector3;
24576
24772
  /**
24577
24773
  * - **ThreadSafety**: ReadSafe
24578
24774
  *
24579
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToesSize)
24775
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToeBaseSize)
24580
24776
  */
24581
- LeftToesSize: number;
24777
+ LeftToeBaseSize: number;
24582
24778
  /**
24583
24779
  * - **ThreadSafety**: ReadSafe
24584
24780
  *
24585
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToesTposeAdjustment)
24781
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#LeftToeBaseTposeAdjustment)
24586
24782
  */
24587
- LeftToesTposeAdjustment: CFrame;
24783
+ LeftToeBaseTposeAdjustment: CFrame;
24588
24784
  /**
24589
24785
  * - **ThreadSafety**: ReadSafe
24590
24786
  *
@@ -24645,36 +24841,6 @@ interface HumanoidRigDescription extends Instance {
24645
24841
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#NeckTposeAdjustment)
24646
24842
  */
24647
24843
  NeckTposeAdjustment: CFrame;
24648
- /**
24649
- * - **ThreadSafety**: ReadSafe
24650
- *
24651
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Pelvis)
24652
- */
24653
- Pelvis: Instance | undefined;
24654
- /**
24655
- * - **ThreadSafety**: ReadSafe
24656
- *
24657
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#PelvisRangeMax)
24658
- */
24659
- PelvisRangeMax: Vector3;
24660
- /**
24661
- * - **ThreadSafety**: ReadSafe
24662
- *
24663
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#PelvisRangeMin)
24664
- */
24665
- PelvisRangeMin: Vector3;
24666
- /**
24667
- * - **ThreadSafety**: ReadSafe
24668
- *
24669
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#PelvisSize)
24670
- */
24671
- PelvisSize: number;
24672
- /**
24673
- * - **ThreadSafety**: ReadSafe
24674
- *
24675
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#PelvisTposeAdjustment)
24676
- */
24677
- PelvisTposeAdjustment: CFrame;
24678
24844
  /**
24679
24845
  * - **ThreadSafety**: ReadSafe
24680
24846
  *
@@ -24858,33 +25024,33 @@ interface HumanoidRigDescription extends Instance {
24858
25024
  /**
24859
25025
  * - **ThreadSafety**: ReadSafe
24860
25026
  *
24861
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToes)
25027
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToeBase)
24862
25028
  */
24863
- RightToes: Instance | undefined;
25029
+ RightToeBase: Instance | undefined;
24864
25030
  /**
24865
25031
  * - **ThreadSafety**: ReadSafe
24866
25032
  *
24867
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToesRangeMax)
25033
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToeBaseRangeMax)
24868
25034
  */
24869
- RightToesRangeMax: Vector3;
25035
+ RightToeBaseRangeMax: Vector3;
24870
25036
  /**
24871
25037
  * - **ThreadSafety**: ReadSafe
24872
25038
  *
24873
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToesRangeMin)
25039
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToeBaseRangeMin)
24874
25040
  */
24875
- RightToesRangeMin: Vector3;
25041
+ RightToeBaseRangeMin: Vector3;
24876
25042
  /**
24877
25043
  * - **ThreadSafety**: ReadSafe
24878
25044
  *
24879
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToesSize)
25045
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToeBaseSize)
24880
25046
  */
24881
- RightToesSize: number;
25047
+ RightToeBaseSize: number;
24882
25048
  /**
24883
25049
  * - **ThreadSafety**: ReadSafe
24884
25050
  *
24885
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToesTposeAdjustment)
25051
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RightToeBaseTposeAdjustment)
24886
25052
  */
24887
- RightToesTposeAdjustment: CFrame;
25053
+ RightToeBaseTposeAdjustment: CFrame;
24888
25054
  /**
24889
25055
  * - **ThreadSafety**: ReadSafe
24890
25056
  *
@@ -24945,6 +25111,36 @@ interface HumanoidRigDescription extends Instance {
24945
25111
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#RootTposeAdjustment)
24946
25112
  */
24947
25113
  RootTposeAdjustment: CFrame;
25114
+ /**
25115
+ * - **ThreadSafety**: ReadSafe
25116
+ *
25117
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Spine)
25118
+ */
25119
+ Spine: Instance | undefined;
25120
+ /**
25121
+ * - **ThreadSafety**: ReadSafe
25122
+ *
25123
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#SpineRangeMax)
25124
+ */
25125
+ SpineRangeMax: Vector3;
25126
+ /**
25127
+ * - **ThreadSafety**: ReadSafe
25128
+ *
25129
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#SpineRangeMin)
25130
+ */
25131
+ SpineRangeMin: Vector3;
25132
+ /**
25133
+ * - **ThreadSafety**: ReadSafe
25134
+ *
25135
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#SpineSize)
25136
+ */
25137
+ SpineSize: number;
25138
+ /**
25139
+ * - **ThreadSafety**: ReadSafe
25140
+ *
25141
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#SpineTposeAdjustment)
25142
+ */
25143
+ SpineTposeAdjustment: CFrame;
24948
25144
  /**
24949
25145
  * - **ThreadSafety**: ReadSafe
24950
25146
  *
@@ -25792,7 +25988,7 @@ interface InsertService extends Instance {
25792
25988
  *
25793
25989
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InsertService#GetFreeModels)
25794
25990
  * @param this Used to insert assets from the Roblox website.
25795
- * @param searchText String used to search for free decals in the Catalog.
25991
+ * @param searchText String used to search for free models in the Catalog.
25796
25992
  * @param pageNum The page number in the Catalog to return.
25797
25993
  * @returns A single table (of returned free models) wrapped in a table.
25798
25994
  *
@@ -27872,6 +28068,7 @@ interface MakeupDescription extends Instance {
27872
28068
  * - **ThreadSafety**: Unsafe
27873
28069
  *
27874
28070
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#GetAppliedInstance)
28071
+ * @param this
27875
28072
  */
27876
28073
  GetAppliedInstance(this: MakeupDescription): Instance | undefined;
27877
28074
  }
@@ -28110,6 +28307,15 @@ interface MarketplaceService extends Instance {
28110
28307
  * @returns A dictionary containing information about the queried item, described in the previous tables.
28111
28308
  */
28112
28309
  GetProductInfoAsync(this: MarketplaceService, assetId: number, infoType?: CastsToEnum<Enum.InfoType>): object;
28310
+ /**
28311
+ * - **ThreadSafety**: Unsafe
28312
+ * - **Tags**: Yields
28313
+ *
28314
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#GetRobloxSubscriptionDetailsAsync)
28315
+ * @param this The service responsible for in-experience transactions.
28316
+ * @param user
28317
+ */
28318
+ GetRobloxSubscriptionDetailsAsync(this: MarketplaceService, user: Player): object;
28113
28319
  /**
28114
28320
  * Returns the product information of a subscription for the given `subscriptionId`.
28115
28321
  *
@@ -30457,7 +30663,12 @@ interface BasePart extends PVInstance {
30457
30663
  */
30458
30664
  TorqueToAngularAcceleration(this: BasePart, torque: Vector3, angVelocity?: Vector3): Vector3;
30459
30665
  /**
30460
- * Creates a new `IntersectOperation` from the overlapping geometry of the part and the other parts in the given array.
30666
+ * Note: It is highly recommended to use the newer `GeometryService:IntersectAsync` instead of this function. As well as having better performance and more features, the new function differs as follows: - The output is an array of instances rather than a single instance.
30667
+ * - The input parts do not need to be parented to the scene, allowing for background operations.
30668
+ * - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
30669
+ * - All the returned parts are in the coordinate space of the main part, so their `PVInstance.Origin` positions are the same as the main part's. This keeps the vertices of the mesh in the same position relative to the object as before the operation, but it does also mean the `(0, 0, 0)` of a returned part is not necessarily at the center of its body.
30670
+ *
30671
+ * Creates a new `IntersectOperation` from the overlapping geometry of the part and the other parts in the given array.
30461
30672
  *
30462
30673
  * - **ThreadSafety**: Unsafe
30463
30674
  * - **Tags**: Yields
@@ -30471,7 +30682,12 @@ interface BasePart extends PVInstance {
30471
30682
  */
30472
30683
  IntersectAsync(this: BasePart, parts: Array<Instance>, collisionfidelity?: CastsToEnum<Enum.CollisionFidelity>, renderFidelity?: CastsToEnum<Enum.RenderFidelity>): Instance | undefined;
30473
30684
  /**
30474
- * Creates a new `UnionOperation` from the part, minus the geometry occupied by the parts in the given array.
30685
+ * Note: It is highly recommended to use the newer `GeometryService:UnionAsync` instead of this function. As well as having better performance and more features, the new function differs as follows: - The output is an array of instances rather than a single instance.
30686
+ * - The input parts do not need to be parented to the scene, allowing for background operations.
30687
+ * - When the `SplitApart` option is set to `true` (default), each distinct body will be returned in its own `PartOperation`.
30688
+ * - All the returned parts are in the coordinate space of the main part, so their `PVInstance.Origin` positions are the same as the main part's. This keeps the vertices of the mesh in the same position relative to the object as before the operation, but it does also mean the `(0, 0, 0)` of a returned part is not necessarily at the center of its body.
30689
+ *
30690
+ * Creates a new `UnionOperation` from the part, minus the geometry occupied by the parts in the given array.
30475
30691
  *
30476
30692
  * - **ThreadSafety**: Unsafe
30477
30693
  * - **Tags**: Yields
@@ -30485,7 +30701,7 @@ interface BasePart extends PVInstance {
30485
30701
  */
30486
30702
  SubtractAsync(this: BasePart, parts: Array<BasePart>, collisionfidelity?: CastsToEnum<Enum.CollisionFidelity>): UnionOperation | undefined;
30487
30703
  /**
30488
- * Creates a new `UnionOperation` from the part, plus the geometry occupied by the parts in the given array.
30704
+ * Note: It is highly recommended to use the newer <code>GeometryService:UnionAsync</code> instead of this function. As well as having better performance and more features, the new function differs as follows: <ul> <li>The output is an array of instances rather than a single instance.</li> <li>The input parts do not need to be parented to the scene, allowing for background operations.</li> <li>When the <code>SplitApart</code> option is set to <code>true</code> (default), each distinct body will be returned in its own <code>PartOperation</code>.</li> <li>All the returned parts are in the coordinate space of the main part, so their <code>PVInstance.Origin</code> positions are the same as the main part's. This keeps the vertices of the mesh in the same position relative to the object as before the operation, but it does also mean the <code>(0, 0, 0)</code> of a returned part is not necessarily at the center of its body.<pre><code>Creates a new `UnionOperation` from the part, plus the geometry </code></pre> </li> </ul> occupied by the parts in the given array.
30489
30705
  *
30490
30706
  * - **ThreadSafety**: Unsafe
30491
30707
  * - **Tags**: Yields
@@ -33597,6 +33813,14 @@ interface ParticleEmitter extends Instance {
33597
33813
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ParticleEmitter#Enabled)
33598
33814
  */
33599
33815
  Enabled: boolean;
33816
+ /**
33817
+ * Determines whether the flipbook frames are blended between.
33818
+ *
33819
+ * - **ThreadSafety**: ReadSafe
33820
+ *
33821
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ParticleEmitter#FlipbookBlendFrames)
33822
+ */
33823
+ FlipbookBlendFrames: boolean;
33600
33824
  /**
33601
33825
  * Determines how fast the flipbook texture animates in frames per second.
33602
33826
  *
@@ -34748,6 +34972,12 @@ interface Player extends Instance {
34748
34972
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#GameplayPaused)
34749
34973
  */
34750
34974
  get GameplayPaused(): boolean;
34975
+ /**
34976
+ * - **ThreadSafety**: ReadSafe
34977
+ *
34978
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#HasRobloxSubscription)
34979
+ */
34980
+ get HasRobloxSubscription(): boolean;
34751
34981
  /**
34752
34982
  * Indicates if a player has a **Verified** badge.
34753
34983
  *
@@ -37234,24 +37464,29 @@ interface RemoteCommandService extends Instance {
37234
37464
  * - **ThreadSafety**: Unsafe
37235
37465
  *
37236
37466
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RemoteCommandService#GetExecutingPlayer)
37467
+ * @param this
37237
37468
  */
37238
37469
  GetExecutingPlayer(this: RemoteCommandService): Player;
37239
37470
  /**
37240
37471
  * - **ThreadSafety**: Unsafe
37241
37472
  *
37242
37473
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RemoteCommandService#GetReceivedUpdateSignal)
37474
+ * @param this
37243
37475
  */
37244
37476
  GetReceivedUpdateSignal(this: RemoteCommandService): RBXScriptSignal;
37245
37477
  /**
37246
37478
  * - **ThreadSafety**: Unsafe
37247
37479
  *
37248
37480
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RemoteCommandService#GetStoppingSignal)
37481
+ * @param this
37249
37482
  */
37250
37483
  GetStoppingSignal(this: RemoteCommandService): RBXScriptSignal;
37251
37484
  /**
37252
37485
  * - **ThreadSafety**: Unsafe
37253
37486
  *
37254
37487
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RemoteCommandService#SendUpdate)
37488
+ * @param this
37489
+ * @param args
37255
37490
  */
37256
37491
  SendUpdate(this: RemoteCommandService, args: unknown): void;
37257
37492
  }
@@ -38694,7 +38929,7 @@ interface DataModel extends ServiceProvider<Services> {
38694
38929
  *
38695
38930
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#RunService)
38696
38931
  */
38697
- readonly RunService: Instance | undefined;
38932
+ readonly RunService: RunService | undefined;
38698
38933
  /**
38699
38934
  * **Deprecated:** This property has been deprecated. Use `DataModel.PrivateServerId` instead.
38700
38935
  *
@@ -39201,7 +39436,7 @@ interface SlimAnimationReplicationService extends Instance {
39201
39436
  readonly _nominal_SlimAnimationReplicationService: unique symbol;
39202
39437
  }
39203
39438
  /**
39204
- * - **Tags**: NotCreatable, Service, NotReplicated
39439
+ * - **Tags**: NotCreatable, Service
39205
39440
  *
39206
39441
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SlimReplicationService)
39207
39442
  */
@@ -41547,6 +41782,7 @@ interface StyleRule extends StyleBase {
41547
41782
  * - **ThreadSafety**: Unsafe
41548
41783
  *
41549
41784
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#GetPropertyTransitions)
41785
+ * @param this Defines style properties which override properties on the instances affected by the `Selector` property.
41550
41786
  */
41551
41787
  GetPropertyTransitions(this: StyleRule): object;
41552
41788
  /**
@@ -41572,6 +41808,8 @@ interface StyleRule extends StyleBase {
41572
41808
  * - **ThreadSafety**: Unsafe
41573
41809
  *
41574
41810
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleRule#SetPropertyTransitions)
41811
+ * @param this Defines style properties which override properties on the instances affected by the `Selector` property.
41812
+ * @param properties
41575
41813
  */
41576
41814
  SetPropertyTransitions(this: StyleRule, properties: object): void;
41577
41815
  }
@@ -41665,7 +41903,7 @@ interface StyleLink extends Instance {
41665
41903
  StyleSheet: StyleSheet | undefined;
41666
41904
  }
41667
41905
  /**
41668
- * - **Tags**: NotReplicated, NotBrowsable
41906
+ * - **Tags**: NotBrowsable
41669
41907
  *
41670
41908
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery)
41671
41909
  */
@@ -41689,24 +41927,32 @@ interface StyleQuery extends Instance {
41689
41927
  * - **ThreadSafety**: Unsafe
41690
41928
  *
41691
41929
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#GetCondition)
41930
+ * @param this
41931
+ * @param name
41692
41932
  */
41693
41933
  GetCondition(this: StyleQuery, name: string): unknown;
41694
41934
  /**
41695
41935
  * - **ThreadSafety**: Unsafe
41696
41936
  *
41697
41937
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#GetConditions)
41938
+ * @param this
41698
41939
  */
41699
41940
  GetConditions(this: StyleQuery): object;
41700
41941
  /**
41701
41942
  * - **ThreadSafety**: Unsafe
41702
41943
  *
41703
41944
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#SetCondition)
41945
+ * @param this
41946
+ * @param name
41947
+ * @param value
41704
41948
  */
41705
41949
  SetCondition(this: StyleQuery, name: string, value: unknown): void;
41706
41950
  /**
41707
41951
  * - **ThreadSafety**: Unsafe
41708
41952
  *
41709
41953
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleQuery#SetConditions)
41954
+ * @param this
41955
+ * @param conditions
41710
41956
  */
41711
41957
  SetConditions(this: StyleQuery, conditions: object): void;
41712
41958
  }
@@ -42465,6 +42711,45 @@ interface TerrainRegion extends Instance {
42465
42711
  */
42466
42712
  readonly SizeInCells: Vector3;
42467
42713
  }
42714
+ /**
42715
+ * - **Tags**: NotCreatable
42716
+ *
42717
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestCase)
42718
+ */
42719
+ interface TestCase extends Instance {
42720
+ /**
42721
+ * **DO NOT USE!**
42722
+ *
42723
+ * This field exists to force TypeScript to recognize this as a nominal type
42724
+ * @hidden
42725
+ * @deprecated
42726
+ */
42727
+ readonly _nominal_TestCase: unique symbol;
42728
+ /**
42729
+ * - **ThreadSafety**: Unsafe
42730
+ *
42731
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestCase#Assert)
42732
+ */
42733
+ Assert(this: TestCase, condition: boolean, message?: string, source?: Instance, line?: number): void;
42734
+ /**
42735
+ * - **ThreadSafety**: Unsafe
42736
+ *
42737
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestCase#EndTest)
42738
+ */
42739
+ EndTest(this: TestCase, message?: string, source?: Instance, line?: number): void;
42740
+ /**
42741
+ * - **ThreadSafety**: Unsafe
42742
+ *
42743
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestCase#Message)
42744
+ */
42745
+ Message(this: TestCase, text: string, source?: Instance, line?: number): void;
42746
+ /**
42747
+ * - **ThreadSafety**: Unsafe
42748
+ *
42749
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestCase#Require)
42750
+ */
42751
+ Require(this: TestCase, condition: boolean, message?: string, source?: Instance, line?: number): void;
42752
+ }
42468
42753
  /**
42469
42754
  * A service used by Roblox to run controlled tests of the engine. It is available for developers to use, to a limited degree.
42470
42755
  *
@@ -42663,6 +42948,12 @@ interface TestService extends Instance {
42663
42948
  * @param line
42664
42949
  */
42665
42950
  Message(this: TestService, text: string, source?: Instance, line?: number): void;
42951
+ /**
42952
+ * - **ThreadSafety**: Unsafe
42953
+ *
42954
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#RegisterTest)
42955
+ */
42956
+ RegisterTest(this: TestService, testOptions: object): TestCase;
42666
42957
  /**
42667
42958
  * Prints whether a condition is true along with a description string.
42668
42959
  *
@@ -43824,15 +44115,15 @@ interface TextChatService extends Instance {
43824
44115
  */
43825
44116
  CanUserChatAsync(this: TextChatService, userId: number): boolean;
43826
44117
  /**
43827
- * Determines whether or not two users would receive messages between each other.
44118
+ * Determines whether or not two users can receive messages from each other.
43828
44119
  *
43829
44120
  * - **ThreadSafety**: Unsafe
43830
44121
  * - **Tags**: Yields
43831
44122
  *
43832
44123
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextChatService#CanUsersChatAsync)
43833
44124
  * @param this A service handling in-experience text chat.
43834
- * @param userIdFrom The user must be in the current server, otherwise an error will occur.
43835
- * @param userIdTo The user must be in the current server, otherwise an error will occur.
44125
+ * @param userIdFrom
44126
+ * @param userIdTo
43836
44127
  */
43837
44128
  CanUsersChatAsync(this: TextChatService, userIdFrom: number, userIdTo: number): boolean;
43838
44129
  /**
@@ -43843,9 +44134,9 @@ interface TextChatService extends Instance {
43843
44134
  *
43844
44135
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TextChatService#CanUsersDirectChatAsync)
43845
44136
  * @param this A service handling in-experience text chat.
43846
- * @param requesterUserId The user who would have initiated the direct chat request. If the requesterUserId is not in the current server, this method will error.
43847
- * @param userIds A list of users who the requesterUserId would like to chat with directly. Users not in the current server are ignored.
43848
- * @returns A list of users who could participate in the direct chat request. If none of the users can direct chat with the requesterUserId, the result is an empty array.
44137
+ * @param requesterUserId The user who would have initiated the direct chat request. If the user is not in the current server, this method will error.
44138
+ * @param userIds A list of users who the `requesterUserId` would like to chat with directly. Users not in the current server are ignored.
44139
+ * @returns A list of users who could participate in the direct chat request. If none of the users can direct chat with the `requesterUserId`, the result is an empty array.
43849
44140
  */
43850
44141
  CanUsersDirectChatAsync(this: TextChatService, requesterUserId: number, userIds: Array<unknown>): Array<unknown>;
43851
44142
  /**
@@ -45813,6 +46104,55 @@ interface UIScale extends UIComponent {
45813
46104
  */
45814
46105
  Scale: number;
45815
46106
  }
46107
+ /**
46108
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow)
46109
+ */
46110
+ interface UIShadow extends UIComponent {
46111
+ /**
46112
+ * **DO NOT USE!**
46113
+ *
46114
+ * This field exists to force TypeScript to recognize this as a nominal type
46115
+ * @hidden
46116
+ * @deprecated
46117
+ */
46118
+ readonly _nominal_UIShadow: unique symbol;
46119
+ /**
46120
+ * - **ThreadSafety**: ReadSafe
46121
+ *
46122
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#BlurRadius)
46123
+ */
46124
+ BlurRadius: UDim;
46125
+ /**
46126
+ * - **ThreadSafety**: ReadSafe
46127
+ *
46128
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Color)
46129
+ */
46130
+ Color: Color3;
46131
+ /**
46132
+ * - **ThreadSafety**: ReadSafe
46133
+ *
46134
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Offset)
46135
+ */
46136
+ Offset: UDim2;
46137
+ /**
46138
+ * - **ThreadSafety**: ReadSafe
46139
+ *
46140
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Spread)
46141
+ */
46142
+ Spread: UDim2;
46143
+ /**
46144
+ * - **ThreadSafety**: ReadSafe
46145
+ *
46146
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Transparency)
46147
+ */
46148
+ Transparency: number;
46149
+ /**
46150
+ * - **ThreadSafety**: ReadSafe
46151
+ *
46152
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#ZIndex)
46153
+ */
46154
+ ZIndex: number;
46155
+ }
45816
46156
  /**
45817
46157
  * Applies an outline to text or a UI border.
45818
46158
  *
@@ -45941,6 +46281,8 @@ interface UniqueIdLookupService extends Instance {
45941
46281
  * - **ThreadSafety**: Unsafe
45942
46282
  *
45943
46283
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UniqueIdLookupService#GetOrCreateUniqueIdRemoteCommand)
46284
+ * @param this
46285
+ * @param instance
45944
46286
  */
45945
46287
  GetOrCreateUniqueIdRemoteCommand(this: UniqueIdLookupService, instance: Instance): string;
45946
46288
  }