@rbxts/types 1.0.848 → 1.0.850

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.
@@ -26,6 +26,7 @@ interface Services {
26
26
  AvatarEditorService: AvatarEditorService;
27
27
  AvatarImportService: AvatarImportService;
28
28
  AvatarPreloader: AvatarPreloader;
29
+ AvatarSettings: AvatarSettings;
29
30
  BadgeService: BadgeService;
30
31
  BugReporterService: BugReporterService;
31
32
  BulkImportService: BulkImportService;
@@ -254,10 +255,17 @@ interface CreatableInstances {
254
255
  AudioListener: AudioListener;
255
256
  AudioPitchShifter: AudioPitchShifter;
256
257
  AudioPlayer: AudioPlayer;
258
+ AudioRecorder: AudioRecorder;
257
259
  AudioReverb: AudioReverb;
258
260
  AudioSearchParams: AudioSearchParams;
259
261
  AudioTextToSpeech: AudioTextToSpeech;
260
262
  AuroraScript: AuroraScript;
263
+ AvatarAccessoryRules: AvatarAccessoryRules;
264
+ AvatarAnimationRules: AvatarAnimationRules;
265
+ AvatarBodyRules: AvatarBodyRules;
266
+ AvatarClothingRules: AvatarClothingRules;
267
+ AvatarCollisionRules: AvatarCollisionRules;
268
+ AvatarRules: AvatarRules;
261
269
  Backpack: Backpack;
262
270
  BallSocketConstraint: BallSocketConstraint;
263
271
  Beam: Beam;
@@ -516,6 +524,7 @@ interface Instances extends Services, CreatableInstances {
516
524
  AssetPatchSettings: AssetPatchSettings;
517
525
  AssetSoundEffect: AssetSoundEffect;
518
526
  AudioPages: AudioPages;
527
+ AuroraScriptObject: AuroraScriptObject;
519
528
  BackpackItem: BackpackItem;
520
529
  BanHistoryPages: BanHistoryPages;
521
530
  BaseImportData: BaseImportData;
@@ -1007,14 +1016,19 @@ interface EditableMesh extends RBXObject {
1007
1016
  get FixedSize(): boolean;
1008
1017
  /**
1009
1018
  * - **ThreadSafety**: ReadSafe
1019
+ * - **Tags**:
1010
1020
  *
1011
1021
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SkinningEnabled)
1022
+ *
1023
+ * @deprecated
1012
1024
  */
1013
1025
  SkinningEnabled: boolean;
1014
1026
  /**
1015
1027
  * - **ThreadSafety**: Unsafe
1016
1028
  *
1017
1029
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#AddBone)
1030
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1031
+ * @param boneProperties
1018
1032
  */
1019
1033
  AddBone(this: EditableMesh, boneProperties: object): number;
1020
1034
  /**
@@ -1148,36 +1162,47 @@ interface EditableMesh extends RBXObject {
1148
1162
  * - **ThreadSafety**: Unsafe
1149
1163
  *
1150
1164
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneByName)
1165
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1166
+ * @param boneName
1151
1167
  */
1152
1168
  GetBoneByName(this: EditableMesh, boneName: string): number;
1153
1169
  /**
1154
1170
  * - **ThreadSafety**: Unsafe
1155
1171
  *
1156
1172
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneCFrame)
1173
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1174
+ * @param boneId
1157
1175
  */
1158
1176
  GetBoneCFrame(this: EditableMesh, boneId: number): CFrame;
1159
1177
  /**
1160
1178
  * - **ThreadSafety**: Unsafe
1161
1179
  *
1162
1180
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneIsVirtual)
1181
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1182
+ * @param boneId
1163
1183
  */
1164
1184
  GetBoneIsVirtual(this: EditableMesh, boneId: number): boolean;
1165
1185
  /**
1166
1186
  * - **ThreadSafety**: Unsafe
1167
1187
  *
1168
1188
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneName)
1189
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1190
+ * @param boneId
1169
1191
  */
1170
1192
  GetBoneName(this: EditableMesh, boneId: number): string;
1171
1193
  /**
1172
1194
  * - **ThreadSafety**: Unsafe
1173
1195
  *
1174
1196
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneParent)
1197
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1198
+ * @param boneId
1175
1199
  */
1176
1200
  GetBoneParent(this: EditableMesh, boneId: number): number;
1177
1201
  /**
1178
1202
  * - **ThreadSafety**: Unsafe
1179
1203
  *
1180
1204
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBones)
1205
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1181
1206
  */
1182
1207
  GetBones(this: EditableMesh): Array<unknown>;
1183
1208
  /**
@@ -1327,24 +1352,30 @@ interface EditableMesh extends RBXObject {
1327
1352
  * - **ThreadSafety**: Unsafe
1328
1353
  *
1329
1354
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePose)
1355
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1356
+ * @param actions
1330
1357
  */
1331
1358
  GetFacsCorrectivePose(this: EditableMesh, actions: Array<unknown>): unknown;
1332
1359
  /**
1333
1360
  * - **ThreadSafety**: Unsafe
1334
1361
  *
1335
1362
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePoses)
1363
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1336
1364
  */
1337
1365
  GetFacsCorrectivePoses(this: EditableMesh): Array<unknown>;
1338
1366
  /**
1339
1367
  * - **ThreadSafety**: Unsafe
1340
1368
  *
1341
1369
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPose)
1370
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1371
+ * @param action
1342
1372
  */
1343
1373
  GetFacsPose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>): unknown;
1344
1374
  /**
1345
1375
  * - **ThreadSafety**: Unsafe
1346
1376
  *
1347
1377
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPoses)
1378
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1348
1379
  */
1349
1380
  GetFacsPoses(this: EditableMesh): Array<unknown>;
1350
1381
  /**
@@ -1414,12 +1445,16 @@ interface EditableMesh extends RBXObject {
1414
1445
  * - **ThreadSafety**: Unsafe
1415
1446
  *
1416
1447
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBoneWeights)
1448
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1449
+ * @param vertexId
1417
1450
  */
1418
1451
  GetVertexBoneWeights(this: EditableMesh, vertexId: number): Array<unknown>;
1419
1452
  /**
1420
1453
  * - **ThreadSafety**: Unsafe
1421
1454
  *
1422
1455
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBones)
1456
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1457
+ * @param vertexId
1423
1458
  */
1424
1459
  GetVertexBones(this: EditableMesh, vertexId: number): Array<unknown>;
1425
1460
  /**
@@ -1578,6 +1613,8 @@ interface EditableMesh extends RBXObject {
1578
1613
  * - **ThreadSafety**: Unsafe
1579
1614
  *
1580
1615
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RemoveBone)
1616
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1617
+ * @param boneId
1581
1618
  */
1582
1619
  RemoveBone(this: EditableMesh, boneId: number): void;
1583
1620
  /**
@@ -1614,24 +1651,36 @@ interface EditableMesh extends RBXObject {
1614
1651
  * - **ThreadSafety**: Unsafe
1615
1652
  *
1616
1653
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneCFrame)
1654
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1655
+ * @param boneId
1656
+ * @param cframe
1617
1657
  */
1618
1658
  SetBoneCFrame(this: EditableMesh, boneId: number, cframe: CFrame): void;
1619
1659
  /**
1620
1660
  * - **ThreadSafety**: Unsafe
1621
1661
  *
1622
1662
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneIsVirtual)
1663
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1664
+ * @param boneId
1665
+ * @param virtual
1623
1666
  */
1624
1667
  SetBoneIsVirtual(this: EditableMesh, boneId: number, virtual: boolean): void;
1625
1668
  /**
1626
1669
  * - **ThreadSafety**: Unsafe
1627
1670
  *
1628
1671
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneName)
1672
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1673
+ * @param boneId
1674
+ * @param name
1629
1675
  */
1630
1676
  SetBoneName(this: EditableMesh, boneId: number, name: string): void;
1631
1677
  /**
1632
1678
  * - **ThreadSafety**: Unsafe
1633
1679
  *
1634
1680
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneParent)
1681
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1682
+ * @param boneId
1683
+ * @param parentBoneId
1635
1684
  */
1636
1685
  SetBoneParent(this: EditableMesh, boneId: number, parentBoneId: number): void;
1637
1686
  /**
@@ -1708,18 +1757,30 @@ interface EditableMesh extends RBXObject {
1708
1757
  * - **ThreadSafety**: Unsafe
1709
1758
  *
1710
1759
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsBonePose)
1760
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1761
+ * @param action
1762
+ * @param boneId
1763
+ * @param cframe
1711
1764
  */
1712
1765
  SetFacsBonePose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>, boneId: number, cframe: CFrame): void;
1713
1766
  /**
1714
1767
  * - **ThreadSafety**: Unsafe
1715
1768
  *
1716
1769
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsCorrectivePose)
1770
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1771
+ * @param actions
1772
+ * @param boneIds
1773
+ * @param cframes
1717
1774
  */
1718
1775
  SetFacsCorrectivePose(this: EditableMesh, actions: Array<unknown>, boneIds: Array<unknown>, cframes: Array<unknown>): void;
1719
1776
  /**
1720
1777
  * - **ThreadSafety**: Unsafe
1721
1778
  *
1722
1779
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsPose)
1780
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1781
+ * @param action
1782
+ * @param boneIds
1783
+ * @param cframes
1723
1784
  */
1724
1785
  SetFacsPose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>, boneIds: Array<unknown>, cframes: Array<unknown>): void;
1725
1786
  /**
@@ -1759,12 +1820,18 @@ interface EditableMesh extends RBXObject {
1759
1820
  * - **ThreadSafety**: Unsafe
1760
1821
  *
1761
1822
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexBoneWeights)
1823
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1824
+ * @param vertexId
1825
+ * @param boneWeights
1762
1826
  */
1763
1827
  SetVertexBoneWeights(this: EditableMesh, vertexId: number, boneWeights: Array<unknown>): void;
1764
1828
  /**
1765
1829
  * - **ThreadSafety**: Unsafe
1766
1830
  *
1767
1831
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexBones)
1832
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1833
+ * @param vertexId
1834
+ * @param boneIDs
1768
1835
  */
1769
1836
  SetVertexBones(this: EditableMesh, vertexId: number, boneIDs: Array<unknown>): void;
1770
1837
  /**
@@ -3216,8 +3283,8 @@ interface AnimationTrack extends Instance {
3216
3283
  *
3217
3284
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnimationTrack#GetMarkerReachedSignal)
3218
3285
  * @param this Controls the playback of an animation on an `Animator`.
3219
- * @param name The name of the `KeyFrameMarker` the signal is being created for.
3220
- * @returns The signal created and fired when the animation reaches the created `KeyFrameMarker`.
3286
+ * @param name The name of the `KeyframeMarker` the signal is being created for. Not to be confused with the name of the `Keyframe`.
3287
+ * @returns The signal created and fired when the animation reaches the created `KeyframeMarker`. Not to be confused with the name of the `Keyframe`.
3221
3288
  */
3222
3289
  GetMarkerReachedSignal(this: AnimationTrack, name: string): RBXScriptSignal<(param?: string) => void>;
3223
3290
  /**
@@ -5791,6 +5858,97 @@ interface AudioPlayer extends Instance {
5791
5858
  */
5792
5859
  readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
5793
5860
  }
5861
+ /**
5862
+ * - **Tags**: NotBrowsable
5863
+ *
5864
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder)
5865
+ */
5866
+ interface AudioRecorder extends Instance {
5867
+ /**
5868
+ * **DO NOT USE!**
5869
+ *
5870
+ * This field exists to force TypeScript to recognize this as a nominal type
5871
+ * @hidden
5872
+ * @deprecated
5873
+ */
5874
+ readonly _nominal_AudioRecorder: unique symbol;
5875
+ /**
5876
+ * - **ThreadSafety**: ReadSafe
5877
+ *
5878
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#IsRecording)
5879
+ */
5880
+ get IsRecording(): boolean;
5881
+ /**
5882
+ * - **ThreadSafety**: ReadSafe
5883
+ * - **Tags**: NotReplicated
5884
+ *
5885
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#TimeLength)
5886
+ */
5887
+ readonly TimeLength: number;
5888
+ /**
5889
+ * - **ThreadSafety**: Unsafe
5890
+ *
5891
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Clear)
5892
+ */
5893
+ Clear(this: AudioRecorder): void;
5894
+ /**
5895
+ * - **ThreadSafety**: Unsafe
5896
+ *
5897
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetConnectedWires)
5898
+ */
5899
+ GetConnectedWires(this: AudioRecorder, pin: string): Array<Instance>;
5900
+ /**
5901
+ * - **ThreadSafety**: Unsafe
5902
+ *
5903
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetInputPins)
5904
+ */
5905
+ GetInputPins(this: AudioRecorder): Array<unknown>;
5906
+ /**
5907
+ * - **ThreadSafety**: Unsafe
5908
+ *
5909
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetOutputPins)
5910
+ */
5911
+ GetOutputPins(this: AudioRecorder): Array<unknown>;
5912
+ /**
5913
+ * - **ThreadSafety**: Unsafe
5914
+ *
5915
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetTemporaryContent)
5916
+ */
5917
+ GetTemporaryContent(this: AudioRecorder): Content;
5918
+ /**
5919
+ * - **ThreadSafety**: Unsafe
5920
+ *
5921
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Stop)
5922
+ */
5923
+ Stop(this: AudioRecorder): void;
5924
+ /**
5925
+ * - **ThreadSafety**: Unsafe
5926
+ * - **Tags**: Yields
5927
+ *
5928
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#CanRecordAsync)
5929
+ */
5930
+ CanRecordAsync(this: AudioRecorder): boolean;
5931
+ /**
5932
+ * - **ThreadSafety**: Unsafe
5933
+ * - **Tags**: Yields
5934
+ *
5935
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetUnrecordableInstancesAsync)
5936
+ */
5937
+ GetUnrecordableInstancesAsync(this: AudioRecorder): Array<Instance>;
5938
+ /**
5939
+ * - **ThreadSafety**: Unsafe
5940
+ * - **Tags**: Yields
5941
+ *
5942
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#RecordAsync)
5943
+ */
5944
+ RecordAsync(this: AudioRecorder): void;
5945
+ /**
5946
+ * - **ThreadSafety**: Unsafe
5947
+ *
5948
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#WiringChanged)
5949
+ */
5950
+ readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
5951
+ }
5794
5952
  /**
5795
5953
  * Reverberates audio streams.
5796
5954
  *
@@ -6035,6 +6193,8 @@ interface AudioSearchParams extends Instance {
6035
6193
  Title: string;
6036
6194
  }
6037
6195
  /**
6196
+ * Plays text as speech audio.
6197
+ *
6038
6198
  * - **Tags**: NotBrowsable
6039
6199
  *
6040
6200
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech)
@@ -6049,6 +6209,8 @@ interface AudioTextToSpeech extends Instance {
6049
6209
  */
6050
6210
  readonly _nominal_AudioTextToSpeech: unique symbol;
6051
6211
  /**
6212
+ * Denotes whether the `AudioTextToSpeech` object is loaded, buffered, and ready to play.
6213
+ *
6052
6214
  * - **ThreadSafety**: ReadSafe
6053
6215
  * - **Tags**: NotReplicated
6054
6216
  *
@@ -6056,42 +6218,56 @@ interface AudioTextToSpeech extends Instance {
6056
6218
  */
6057
6219
  readonly IsLoaded: boolean;
6058
6220
  /**
6221
+ * Denotes whether the `AudioTextToSpeech` object is currently playing.
6222
+ *
6059
6223
  * - **ThreadSafety**: ReadSafe
6060
6224
  *
6061
6225
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#IsPlaying)
6062
6226
  */
6063
6227
  get IsPlaying(): boolean;
6064
6228
  /**
6229
+ * Controls whether the `AudioTextToSpeech` object loops.
6230
+ *
6065
6231
  * - **ThreadSafety**: ReadSafe
6066
6232
  *
6067
6233
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Looping)
6068
6234
  */
6069
6235
  Looping: boolean;
6070
6236
  /**
6237
+ * Controls the pitch of the generated speech audio, which will be independent of its speed.
6238
+ *
6071
6239
  * - **ThreadSafety**: ReadSafe
6072
6240
  *
6073
6241
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Pitch)
6074
6242
  */
6075
6243
  Pitch: number;
6076
6244
  /**
6245
+ * Controls how quickly the speech audio will be played, which controls its pitch.
6246
+ *
6077
6247
  * - **ThreadSafety**: ReadSafe
6078
6248
  *
6079
6249
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#PlaybackSpeed)
6080
6250
  */
6081
6251
  PlaybackSpeed: number;
6082
6252
  /**
6253
+ * Controls the speed of the generated speech audio, which will be independent of its pitch.
6254
+ *
6083
6255
  * - **ThreadSafety**: ReadSafe
6084
6256
  *
6085
6257
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Speed)
6086
6258
  */
6087
6259
  Speed: number;
6088
6260
  /**
6261
+ * The text to be converted into speech audio by `AudioTextToSpeech`.
6262
+ *
6089
6263
  * - **ThreadSafety**: ReadSafe
6090
6264
  *
6091
6265
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Text)
6092
6266
  */
6093
6267
  Text: string;
6094
6268
  /**
6269
+ * Denotes the length of the generated speech audio.
6270
+ *
6095
6271
  * - **ThreadSafety**: ReadSafe
6096
6272
  * - **Tags**: NotReplicated
6097
6273
  *
@@ -6099,50 +6275,64 @@ interface AudioTextToSpeech extends Instance {
6099
6275
  */
6100
6276
  readonly TimeLength: number;
6101
6277
  /**
6278
+ * Tracks the current position of the playhead within the generated speech audio.
6279
+ *
6102
6280
  * - **ThreadSafety**: ReadSafe
6103
6281
  *
6104
6282
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#TimePosition)
6105
6283
  */
6106
6284
  TimePosition: number;
6107
6285
  /**
6286
+ * The voice style to be used by `AudioTextToSpeech`.
6287
+ *
6108
6288
  * - **ThreadSafety**: ReadSafe
6109
6289
  *
6110
6290
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#VoiceId)
6111
6291
  */
6112
6292
  VoiceId: string;
6113
6293
  /**
6294
+ * Controls how loudly the generated speech audio will be played.
6295
+ *
6114
6296
  * - **ThreadSafety**: ReadSafe
6115
6297
  *
6116
6298
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Volume)
6117
6299
  */
6118
6300
  Volume: number;
6119
6301
  /**
6302
+ * Returns an array of `Wires` that are connected to the specified pin.
6303
+ *
6120
6304
  * - **ThreadSafety**: Unsafe
6121
6305
  *
6122
6306
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#GetConnectedWires)
6123
- * @param this
6307
+ * @param this Plays text as speech audio.
6124
6308
  * @param pin
6125
6309
  */
6126
6310
  GetConnectedWires(this: AudioTextToSpeech, pin: string): Array<Instance>;
6127
6311
  /**
6312
+ * Pauses the `AudioTextToSpeech` object wherever its `TimePosition` is.
6313
+ *
6128
6314
  * - **ThreadSafety**: Unsafe
6129
6315
  *
6130
6316
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Pause)
6131
- * @param this
6317
+ * @param this Plays text as speech audio.
6132
6318
  */
6133
6319
  Pause(this: AudioTextToSpeech): void;
6134
6320
  /**
6321
+ * Plays the `AudioTextToSpeech` from wherever its `TimePosition` is.
6322
+ *
6135
6323
  * - **ThreadSafety**: Unsafe
6136
6324
  *
6137
6325
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Play)
6138
- * @param this
6326
+ * @param this Plays text as speech audio.
6139
6327
  */
6140
6328
  Play(this: AudioTextToSpeech): void;
6141
6329
  /**
6330
+ * Unload the generated speech audio.
6331
+ *
6142
6332
  * - **ThreadSafety**: Unsafe
6143
6333
  *
6144
6334
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Unload)
6145
- * @param this
6335
+ * @param this Plays text as speech audio.
6146
6336
  */
6147
6337
  Unload(this: AudioTextToSpeech): void;
6148
6338
  /**
@@ -6150,32 +6340,40 @@ interface AudioTextToSpeech extends Instance {
6150
6340
  * - **Tags**: Yields
6151
6341
  *
6152
6342
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#GetWaveformAsync)
6153
- * @param this
6343
+ * @param this Plays text as speech audio.
6154
6344
  * @param timeRange
6155
6345
  * @param samples
6156
6346
  */
6157
6347
  GetWaveformAsync(this: AudioTextToSpeech, timeRange: NumberRange, samples: number): Array<unknown>;
6158
6348
  /**
6349
+ * Generates speech audio.
6350
+ *
6159
6351
  * - **ThreadSafety**: Unsafe
6160
6352
  * - **Tags**: Yields
6161
6353
  *
6162
6354
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#LoadAsync)
6163
- * @param this
6355
+ * @param this Plays text as speech audio.
6164
6356
  */
6165
6357
  LoadAsync(this: AudioTextToSpeech): Enum.AssetFetchStatus;
6166
6358
  /**
6359
+ * Fires when the `AudioTextToSpeech` object has completed playback and paused.
6360
+ *
6167
6361
  * - **ThreadSafety**: Unsafe
6168
6362
  *
6169
6363
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Ended)
6170
6364
  */
6171
6365
  readonly Ended: RBXScriptSignal<() => void>;
6172
6366
  /**
6367
+ * Fires when the `AudioTextToSpeech` object loops.
6368
+ *
6173
6369
  * - **ThreadSafety**: Unsafe
6174
6370
  *
6175
6371
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Looped)
6176
6372
  */
6177
6373
  readonly Looped: RBXScriptSignal<() => void>;
6178
6374
  /**
6375
+ * Fires when another instance is connected to or disconnected from the `AudioTextToSpeech` via a `Wire`.
6376
+ *
6179
6377
  * - **ThreadSafety**: Unsafe
6180
6378
  *
6181
6379
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#WiringChanged)
@@ -6183,13 +6381,13 @@ interface AudioTextToSpeech extends Instance {
6183
6381
  readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
6184
6382
  }
6185
6383
  /**
6186
- * - **Tags**: NotCreatable, Service
6384
+ * - **Tags**: NotCreatable
6187
6385
  *
6188
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService)
6386
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject)
6189
6387
  *
6190
6388
  * @deprecated
6191
6389
  */
6192
- interface AuroraScriptService extends Instance {
6390
+ interface AuroraScriptObject extends Instance {
6193
6391
  /**
6194
6392
  * **DO NOT USE!**
6195
6393
  *
@@ -6197,43 +6395,42 @@ interface AuroraScriptService extends Instance {
6197
6395
  * @hidden
6198
6396
  * @deprecated
6199
6397
  */
6200
- readonly _nominal_AuroraScriptService: unique symbol;
6398
+ readonly _nominal_AuroraScriptObject: unique symbol;
6201
6399
  /**
6202
6400
  * - **ThreadSafety**: ReadSafe
6203
6401
  *
6204
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#BufferSize)
6402
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject#FrameId)
6205
6403
  */
6206
- get BufferSize(): number;
6207
- /**
6208
- * - **ThreadSafety**: Safe
6209
- *
6210
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetLocalFrameId)
6211
- */
6212
- GetLocalFrameId(this: AuroraScriptService): number;
6404
+ FrameId: number;
6405
+ }
6406
+ /**
6407
+ * - **Tags**: NotCreatable, Service
6408
+ *
6409
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService)
6410
+ *
6411
+ * @deprecated
6412
+ */
6413
+ interface AuroraScriptService extends Instance {
6213
6414
  /**
6214
- * - **ThreadSafety**: Safe
6415
+ * **DO NOT USE!**
6215
6416
  *
6216
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetProperty)
6417
+ * This field exists to force TypeScript to recognize this as a nominal type
6418
+ * @hidden
6419
+ * @deprecated
6217
6420
  */
6218
- GetProperty(this: AuroraScriptService, instance: Instance, name: string): unknown;
6421
+ readonly _nominal_AuroraScriptService: unique symbol;
6219
6422
  /**
6220
6423
  * - **ThreadSafety**: Safe
6221
6424
  *
6222
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetTime)
6425
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetLocalFrameId)
6223
6426
  */
6224
- GetTime(this: AuroraScriptService): number;
6427
+ GetLocalFrameId(this: AuroraScriptService): number;
6225
6428
  /**
6226
6429
  * - **ThreadSafety**: Safe
6227
6430
  *
6228
6431
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#SendMessage)
6229
6432
  */
6230
6433
  SendMessage(this: AuroraScriptService, instance: Instance, behaviorName: string, functionName: string, args: unknown): void;
6231
- /**
6232
- * - **ThreadSafety**: Safe
6233
- *
6234
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#SetProperty)
6235
- */
6236
- SetProperty(this: AuroraScriptService, instance: Instance, name: string, value: unknown): void;
6237
6434
  }
6238
6435
  /**
6239
6436
  * - **Tags**: NotCreatable, Service
@@ -6323,6 +6520,12 @@ interface AuroraService extends Instance {
6323
6520
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#FixedRateTick)
6324
6521
  */
6325
6522
  readonly FixedRateTick: RBXScriptSignal<(deltaTime: number, worldStepId: number) => void>;
6523
+ /**
6524
+ * - **ThreadSafety**: Unsafe
6525
+ *
6526
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Misprediction)
6527
+ */
6528
+ readonly Misprediction: RBXScriptSignal<(worldStepId: number, mispredictedInstances: Array<unknown>) => void>;
6326
6529
  /**
6327
6530
  * - **ThreadSafety**: Unsafe
6328
6531
  *
@@ -6336,6 +6539,45 @@ interface AuroraService extends Instance {
6336
6539
  */
6337
6540
  readonly Step: RBXScriptSignal<() => void>;
6338
6541
  }
6542
+ /**
6543
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAccessoryRules)
6544
+ */
6545
+ interface AvatarAccessoryRules extends Instance {
6546
+ /**
6547
+ * **DO NOT USE!**
6548
+ *
6549
+ * This field exists to force TypeScript to recognize this as a nominal type
6550
+ * @hidden
6551
+ * @deprecated
6552
+ */
6553
+ readonly _nominal_AvatarAccessoryRules: unique symbol;
6554
+ }
6555
+ /**
6556
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarAnimationRules)
6557
+ */
6558
+ interface AvatarAnimationRules extends Instance {
6559
+ /**
6560
+ * **DO NOT USE!**
6561
+ *
6562
+ * This field exists to force TypeScript to recognize this as a nominal type
6563
+ * @hidden
6564
+ * @deprecated
6565
+ */
6566
+ readonly _nominal_AvatarAnimationRules: unique symbol;
6567
+ }
6568
+ /**
6569
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarBodyRules)
6570
+ */
6571
+ interface AvatarBodyRules extends Instance {
6572
+ /**
6573
+ * **DO NOT USE!**
6574
+ *
6575
+ * This field exists to force TypeScript to recognize this as a nominal type
6576
+ * @hidden
6577
+ * @deprecated
6578
+ */
6579
+ readonly _nominal_AvatarBodyRules: unique symbol;
6580
+ }
6339
6581
  /**
6340
6582
  * - **Tags**: NotCreatable, Service
6341
6583
  *
@@ -6351,6 +6593,32 @@ interface AvatarChatService extends Instance {
6351
6593
  */
6352
6594
  readonly _nominal_AvatarChatService: unique symbol;
6353
6595
  }
6596
+ /**
6597
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarClothingRules)
6598
+ */
6599
+ interface AvatarClothingRules extends Instance {
6600
+ /**
6601
+ * **DO NOT USE!**
6602
+ *
6603
+ * This field exists to force TypeScript to recognize this as a nominal type
6604
+ * @hidden
6605
+ * @deprecated
6606
+ */
6607
+ readonly _nominal_AvatarClothingRules: unique symbol;
6608
+ }
6609
+ /**
6610
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCollisionRules)
6611
+ */
6612
+ interface AvatarCollisionRules extends Instance {
6613
+ /**
6614
+ * **DO NOT USE!**
6615
+ *
6616
+ * This field exists to force TypeScript to recognize this as a nominal type
6617
+ * @hidden
6618
+ * @deprecated
6619
+ */
6620
+ readonly _nominal_AvatarCollisionRules: unique symbol;
6621
+ }
6354
6622
  /**
6355
6623
  * A service to support developer avatar creators.
6356
6624
  *
@@ -6854,6 +7122,34 @@ interface AvatarPreloader extends Instance {
6854
7122
  */
6855
7123
  readonly _nominal_AvatarPreloader: unique symbol;
6856
7124
  }
7125
+ /**
7126
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarRules)
7127
+ */
7128
+ interface AvatarRules extends Instance {
7129
+ /**
7130
+ * **DO NOT USE!**
7131
+ *
7132
+ * This field exists to force TypeScript to recognize this as a nominal type
7133
+ * @hidden
7134
+ * @deprecated
7135
+ */
7136
+ readonly _nominal_AvatarRules: unique symbol;
7137
+ }
7138
+ /**
7139
+ * - **Tags**: NotCreatable, Service
7140
+ *
7141
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarSettings)
7142
+ */
7143
+ interface AvatarSettings extends Instance {
7144
+ /**
7145
+ * **DO NOT USE!**
7146
+ *
7147
+ * This field exists to force TypeScript to recognize this as a nominal type
7148
+ * @hidden
7149
+ * @deprecated
7150
+ */
7151
+ readonly _nominal_AvatarSettings: unique symbol;
7152
+ }
6857
7153
  /**
6858
7154
  * A container object that holds a player's inventory. Any `Tool` in a player's Backpack will be displayed in their inventory at the bottom of their screen.
6859
7155
  *
@@ -10220,12 +10516,17 @@ interface ConfigService extends Instance {
10220
10516
  * - **ThreadSafety**: Unsafe
10221
10517
  *
10222
10518
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigService#ClearTestingValue)
10519
+ * @param this
10520
+ * @param key
10223
10521
  */
10224
10522
  ClearTestingValue(this: ConfigService, key: string): void;
10225
10523
  /**
10226
10524
  * - **ThreadSafety**: Unsafe
10227
10525
  *
10228
10526
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigService#SetTestingValue)
10527
+ * @param this
10528
+ * @param key
10529
+ * @param value
10229
10530
  */
10230
10531
  SetTestingValue(this: ConfigService, key: string, value: unknown): void;
10231
10532
  /**
@@ -11095,6 +11396,12 @@ interface LinearVelocity extends Constraint {
11095
11396
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LinearVelocity#PrimaryTangentAxis)
11096
11397
  */
11097
11398
  PrimaryTangentAxis: Vector3;
11399
+ /**
11400
+ * - **ThreadSafety**: ReadSafe
11401
+ *
11402
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LinearVelocity#ReactionForceEnabled)
11403
+ */
11404
+ ReactionForceEnabled: boolean;
11098
11405
  /**
11099
11406
  * Sets the `ActuatorRelativeTo` property for the `LinearVelocity` constraint.
11100
11407
  *
@@ -12931,24 +13238,29 @@ interface CustomLog extends Instance {
12931
13238
  * - **ThreadSafety**: Unsafe
12932
13239
  *
12933
13240
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog#Close)
13241
+ * @param this
12934
13242
  */
12935
13243
  Close(this: CustomLog): void;
12936
13244
  /**
12937
13245
  * - **ThreadSafety**: Unsafe
12938
13246
  *
12939
13247
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog#GetLogPath)
13248
+ * @param this
12940
13249
  */
12941
13250
  GetLogPath(this: CustomLog): string;
12942
13251
  /**
12943
13252
  * - **ThreadSafety**: Unsafe
12944
13253
  *
12945
13254
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog#Open)
13255
+ * @param this
12946
13256
  */
12947
13257
  Open(this: CustomLog): void;
12948
13258
  /**
12949
13259
  * - **ThreadSafety**: Unsafe
12950
13260
  *
12951
13261
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CustomLog#WriteAppend)
13262
+ * @param this
13263
+ * @param append
12952
13264
  */
12953
13265
  WriteAppend(this: CustomLog, append: string): void;
12954
13266
  }
@@ -24643,12 +24955,6 @@ interface AuroraScript extends LuaSourceContainer {
24643
24955
  * @deprecated
24644
24956
  */
24645
24957
  readonly _nominal_AuroraScript: unique symbol;
24646
- /**
24647
- * - **ThreadSafety**: ReadSafe
24648
- *
24649
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Tag)
24650
- */
24651
- get Tag(): string;
24652
24958
  /**
24653
24959
  * - **ThreadSafety**: Unsafe
24654
24960
  *
@@ -26299,7 +26605,7 @@ interface BasePart extends PVInstance {
26299
26605
  /**
26300
26606
  * **Deprecated:**
26301
26607
  *
26302
- * Determines the first parameter for the SurfaceType on the Back face of a part (+Z direction).
26608
+ * Determines the first parameter for the SurfaceType on the Back face of a part.
26303
26609
  *
26304
26610
  * - **ThreadSafety**: ReadSafe
26305
26611
  * - **Tags**: Hidden
@@ -26312,7 +26618,7 @@ interface BasePart extends PVInstance {
26312
26618
  /**
26313
26619
  * **Deprecated:**
26314
26620
  *
26315
- * Determines the second parameter for the SurfaceType on the Back face of a part (+Z direction).
26621
+ * Determines the second parameter for the SurfaceType on the Back face of a part.
26316
26622
  *
26317
26623
  * - **ThreadSafety**: ReadSafe
26318
26624
  * - **Tags**: Hidden
@@ -26323,7 +26629,7 @@ interface BasePart extends PVInstance {
26323
26629
  */
26324
26630
  BackParamB: number;
26325
26631
  /**
26326
- * Determines the type of surface for the Back face of a part (+Z direction).
26632
+ * Determines the type of surface for the back face of a part.
26327
26633
  *
26328
26634
  * - **ThreadSafety**: ReadSafe
26329
26635
  *
@@ -26333,7 +26639,7 @@ interface BasePart extends PVInstance {
26333
26639
  /**
26334
26640
  * **Deprecated:**
26335
26641
  *
26336
- * Determines the kind of input for the Back face of a part (+Z direction).
26642
+ * Determines the kind of input for the Back face of a part.
26337
26643
  *
26338
26644
  * - **ThreadSafety**: ReadSafe
26339
26645
  * - **Tags**: Hidden
@@ -26346,7 +26652,7 @@ interface BasePart extends PVInstance {
26346
26652
  /**
26347
26653
  * **Deprecated:**
26348
26654
  *
26349
- * Determines the first parameter for the SurfaceType on the Bottom face of a part (-Y direction).
26655
+ * Determines the first parameter for the SurfaceType on the Bottom face of a part.
26350
26656
  *
26351
26657
  * - **ThreadSafety**: ReadSafe
26352
26658
  * - **Tags**: Hidden
@@ -26359,7 +26665,7 @@ interface BasePart extends PVInstance {
26359
26665
  /**
26360
26666
  * **Deprecated:**
26361
26667
  *
26362
- * Determines the second parameter for the SurfaceType on the Bottom face of a part (-Y direction).
26668
+ * Determines the second parameter for the SurfaceType on the Bottom face of a part.
26363
26669
  *
26364
26670
  * - **ThreadSafety**: ReadSafe
26365
26671
  * - **Tags**: Hidden
@@ -26370,7 +26676,7 @@ interface BasePart extends PVInstance {
26370
26676
  */
26371
26677
  BottomParamB: number;
26372
26678
  /**
26373
- * Determines the type of surface for the Bottom face of a part (-Y direction).
26679
+ * Determines the type of surface for the bottom face of a part.
26374
26680
  *
26375
26681
  * - **ThreadSafety**: ReadSafe
26376
26682
  *
@@ -26380,7 +26686,7 @@ interface BasePart extends PVInstance {
26380
26686
  /**
26381
26687
  * **Deprecated:**
26382
26688
  *
26383
- * Determines the kind of input for the Bottom face of a part (-Y direction).
26689
+ * Determines the kind of input for the Bottom face of a part.
26384
26690
  *
26385
26691
  * - **ThreadSafety**: ReadSafe
26386
26692
  * - **Tags**: Hidden
@@ -26551,7 +26857,7 @@ interface BasePart extends PVInstance {
26551
26857
  /**
26552
26858
  * **Deprecated:**
26553
26859
  *
26554
- * Determines the first parameter for the SurfaceType on the Front face of a part (-Z direction).
26860
+ * Determines the first parameter for the SurfaceType on the Front face of a part.
26555
26861
  *
26556
26862
  * - **ThreadSafety**: ReadSafe
26557
26863
  * - **Tags**: Hidden
@@ -26564,7 +26870,7 @@ interface BasePart extends PVInstance {
26564
26870
  /**
26565
26871
  * **Deprecated:**
26566
26872
  *
26567
- * Determines the second parameter for the SurfaceType on the Front face of a part (-Z direction).
26873
+ * Determines the second parameter for the SurfaceType on the Front face of a part.
26568
26874
  *
26569
26875
  * - **ThreadSafety**: ReadSafe
26570
26876
  * - **Tags**: Hidden
@@ -26575,7 +26881,7 @@ interface BasePart extends PVInstance {
26575
26881
  */
26576
26882
  FrontParamB: number;
26577
26883
  /**
26578
- * Determines the type of surface for the Front face of a part (-Z direction).
26884
+ * Determines the type of surface for the front face of a part.
26579
26885
  *
26580
26886
  * - **ThreadSafety**: ReadSafe
26581
26887
  *
@@ -26598,7 +26904,7 @@ interface BasePart extends PVInstance {
26598
26904
  /**
26599
26905
  * **Deprecated:**
26600
26906
  *
26601
- * Determines the first parameter for the SurfaceType on the Left face of a part (-Z direction).
26907
+ * Determines the first parameter for the SurfaceType on the Left face of a part.
26602
26908
  *
26603
26909
  * - **ThreadSafety**: ReadSafe
26604
26910
  * - **Tags**: Hidden
@@ -26611,7 +26917,7 @@ interface BasePart extends PVInstance {
26611
26917
  /**
26612
26918
  * **Deprecated:**
26613
26919
  *
26614
- * Determines the second parameter for the SurfaceType on the Left face of a part (-Z direction).
26920
+ * Determines the second parameter for the SurfaceType on the Left face of a part.
26615
26921
  *
26616
26922
  * - **ThreadSafety**: ReadSafe
26617
26923
  * - **Tags**: Hidden
@@ -26622,7 +26928,7 @@ interface BasePart extends PVInstance {
26622
26928
  */
26623
26929
  LeftParamB: number;
26624
26930
  /**
26625
- * Determines the type of surface for the Left face of a part (-X direction).
26931
+ * Determines the type of surface for the left face of a part.
26626
26932
  *
26627
26933
  * - **ThreadSafety**: ReadSafe
26628
26934
  *
@@ -26632,7 +26938,7 @@ interface BasePart extends PVInstance {
26632
26938
  /**
26633
26939
  * **Deprecated:**
26634
26940
  *
26635
- * Determines the kind of input for the Left face of a part (+X direction).
26941
+ * Determines the kind of input for the Left face of a part.
26636
26942
  *
26637
26943
  * - **ThreadSafety**: ReadSafe
26638
26944
  * - **Tags**: Hidden
@@ -26737,7 +27043,7 @@ interface BasePart extends PVInstance {
26737
27043
  */
26738
27044
  Reflectance: number;
26739
27045
  /**
26740
- * Describes the smallest change in size allowable by the Resize method.
27046
+ * Describes the smallest change in size allowable by the `Resize()` method.
26741
27047
  *
26742
27048
  * - **ThreadSafety**: ReadSafe
26743
27049
  * - **Tags**: NotReplicated
@@ -26757,7 +27063,7 @@ interface BasePart extends PVInstance {
26757
27063
  /**
26758
27064
  * **Deprecated:**
26759
27065
  *
26760
- * Determines the first parameter for the SurfaceType on the Right face of a part (-X direction).
27066
+ * Determines the first parameter for the SurfaceType on the Right face of a part.
26761
27067
  *
26762
27068
  * - **ThreadSafety**: ReadSafe
26763
27069
  * - **Tags**: Hidden
@@ -26770,7 +27076,7 @@ interface BasePart extends PVInstance {
26770
27076
  /**
26771
27077
  * **Deprecated:**
26772
27078
  *
26773
- * Determines the second parameter for the SurfaceType on the Right face of a part (-X direction).
27079
+ * Determines the second parameter for the SurfaceType on the Right face of a part.
26774
27080
  *
26775
27081
  * - **ThreadSafety**: ReadSafe
26776
27082
  * - **Tags**: Hidden
@@ -26781,7 +27087,7 @@ interface BasePart extends PVInstance {
26781
27087
  */
26782
27088
  RightParamB: number;
26783
27089
  /**
26784
- * Determines the type of surface for the Right face of a part (+X direction).
27090
+ * Determines the type of surface for the right face of a part.
26785
27091
  *
26786
27092
  * - **ThreadSafety**: ReadSafe
26787
27093
  *
@@ -26856,7 +27162,7 @@ interface BasePart extends PVInstance {
26856
27162
  /**
26857
27163
  * **Deprecated:**
26858
27164
  *
26859
- * Determines the first parameter for the SurfaceType on the Top face of a part (+Y direction).
27165
+ * Determines the first parameter for the SurfaceType on the Top face of a part.
26860
27166
  *
26861
27167
  * - **ThreadSafety**: ReadSafe
26862
27168
  * - **Tags**: Hidden
@@ -26869,7 +27175,7 @@ interface BasePart extends PVInstance {
26869
27175
  /**
26870
27176
  * **Deprecated:**
26871
27177
  *
26872
- * Determines the second parameter for the SurfaceType on the Top face of a part (+Y direction).
27178
+ * Determines the second parameter for the SurfaceType on the Top face of a part.
26873
27179
  *
26874
27180
  * - **ThreadSafety**: ReadSafe
26875
27181
  * - **Tags**: Hidden
@@ -26880,7 +27186,7 @@ interface BasePart extends PVInstance {
26880
27186
  */
26881
27187
  TopParamB: number;
26882
27188
  /**
26883
- * Determines the type of surface for the Top face of a part (+Y direction).
27189
+ * Determines the type of surface for the top face of a part.
26884
27190
  *
26885
27191
  * - **ThreadSafety**: ReadSafe
26886
27192
  *
@@ -31769,7 +32075,7 @@ interface Player extends Instance {
31769
32075
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#RequestStreamAroundAsync)
31770
32076
  * @param this An object that represents a presently connected client to the game.
31771
32077
  * @param position World location where streaming is requested.
31772
- * @param timeOut Optional timeout for the request.
32078
+ * @param timeOut Optional timeout for the request, the maximum duration that the engine attempts to stream regions around the `position` parameter before abandoning the request. If you don't specify a value, the timeout is effectively infinite. However, if the client is low on memory, the engine abandons all streaming requests, even those that are still within the timeout duration.
31773
32079
  */
31774
32080
  RequestStreamAroundAsync(this: Player, position: Vector3, timeOut?: number): void;
31775
32081
  /**
@@ -33385,6 +33691,24 @@ interface ReflectionService extends Instance {
33385
33691
  * @deprecated
33386
33692
  */
33387
33693
  readonly _nominal_ReflectionService: unique symbol;
33694
+ /**
33695
+ * - **ThreadSafety**: Unsafe
33696
+ *
33697
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClass)
33698
+ */
33699
+ GetClass(this: ReflectionService, className: string, filter?: object): object | undefined;
33700
+ /**
33701
+ * - **ThreadSafety**: Unsafe
33702
+ *
33703
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClasses)
33704
+ */
33705
+ GetClasses(this: ReflectionService, filter?: object): Array<unknown>;
33706
+ /**
33707
+ * - **ThreadSafety**: Unsafe
33708
+ *
33709
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetPropertiesOfClass)
33710
+ */
33711
+ GetPropertiesOfClass(this: ReflectionService, className: string, filter?: object): Array<unknown>;
33388
33712
  }
33389
33713
  /**
33390
33714
  * - **Tags**: NotCreatable, Service
@@ -35068,6 +35392,12 @@ interface Sky extends Instance {
35068
35392
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxLf)
35069
35393
  */
35070
35394
  SkyboxLf: ContentId;
35395
+ /**
35396
+ * - **ThreadSafety**: ReadSafe
35397
+ *
35398
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxOrientation)
35399
+ */
35400
+ SkyboxOrientation: Vector3;
35071
35401
  /**
35072
35402
  * Asset ID for the right surface of the skybox.
35073
35403
  *
@@ -36461,6 +36791,12 @@ interface StarterPlayer extends Instance {
36461
36791
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#CharacterWalkSpeed)
36462
36792
  */
36463
36793
  CharacterWalkSpeed: number;
36794
+ /**
36795
+ * - **ThreadSafety**: ReadSafe
36796
+ *
36797
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#ClassicDeath)
36798
+ */
36799
+ ClassicDeath: boolean;
36464
36800
  /**
36465
36801
  * Sets how the default camera handles objects between the camera and the player.
36466
36802
  *
@@ -36839,18 +37175,21 @@ interface Stats extends Instance {
36839
37175
  * - **ThreadSafety**: Unsafe
36840
37176
  *
36841
37177
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetHarmonyQualityLevel)
37178
+ * @param this Performance metrics for a game.
36842
37179
  */
36843
37180
  GetHarmonyQualityLevel(this: Stats): number;
36844
37181
  /**
36845
37182
  * - **ThreadSafety**: Unsafe
36846
37183
  *
36847
37184
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetMemoryCategoryNames)
37185
+ * @param this Performance metrics for a game.
36848
37186
  */
36849
37187
  GetMemoryCategoryNames(this: Stats): Array<unknown>;
36850
37188
  /**
36851
37189
  * - **ThreadSafety**: Unsafe
36852
37190
  *
36853
37191
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetMemoryUsageMbAllCategories)
37192
+ * @param this Performance metrics for a game.
36854
37193
  */
36855
37194
  GetMemoryUsageMbAllCategories(this: Stats): Array<unknown>;
36856
37195
  /**
@@ -36876,12 +37215,15 @@ interface Stats extends Instance {
36876
37215
  * - **ThreadSafety**: Unsafe
36877
37216
  *
36878
37217
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#ResetHarmonyMemoryTarget)
37218
+ * @param this Performance metrics for a game.
36879
37219
  */
36880
37220
  ResetHarmonyMemoryTarget(this: Stats): void;
36881
37221
  /**
36882
37222
  * - **ThreadSafety**: Unsafe
36883
37223
  *
36884
37224
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#SetHarmonyMemoryTarget)
37225
+ * @param this Performance metrics for a game.
37226
+ * @param targetMB
36885
37227
  */
36886
37228
  SetHarmonyMemoryTarget(this: Stats, targetMB: number): void;
36887
37229
  }
@@ -37278,6 +37620,12 @@ interface StyleDerive extends Instance {
37278
37620
  * @deprecated
37279
37621
  */
37280
37622
  readonly _nominal_StyleDerive: unique symbol;
37623
+ /**
37624
+ * - **ThreadSafety**: ReadSafe
37625
+ *
37626
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StyleDerive#Priority)
37627
+ */
37628
+ Priority: number;
37281
37629
  /**
37282
37630
  * - **ThreadSafety**: ReadSafe
37283
37631
  *
@@ -38032,7 +38380,7 @@ interface TestService extends Instance {
38032
38380
  */
38033
38381
  ExecuteWithStudioRun: boolean;
38034
38382
  /**
38035
- * **Deprecated:**
38383
+ * **Deprecated:** This has been deprecated and directly renamed to `ThrottlePhysicsToRealtime` to better reflect its practical use.
38036
38384
  *
38037
38385
  * Sets whether or not the physics engine should be throttled to 30 FPS while the test is being ran.
38038
38386
  *
@@ -38086,6 +38434,8 @@ interface TestService extends Instance {
38086
38434
  */
38087
38435
  readonly TestCount: number;
38088
38436
  /**
38437
+ * Sets whether the test should be throttled to simulate time according to real world time or as fast as possible.
38438
+ *
38089
38439
  * - **ThreadSafety**: ReadSafe
38090
38440
  *
38091
38441
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TestService#ThrottlePhysicsToRealtime)