@rbxts/types 1.0.847 → 1.0.849

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.
@@ -70,6 +70,7 @@ interface Services {
70
70
  FacialAnimationRecordingService: FacialAnimationRecordingService;
71
71
  FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2;
72
72
  FeatureRestrictionManager: FeatureRestrictionManager;
73
+ FeedService: FeedService;
73
74
  GamepadService: GamepadService;
74
75
  GamePassService: GamePassService;
75
76
  GenerationService: GenerationService;
@@ -117,6 +118,7 @@ interface Services {
117
118
  PathfindingService: PathfindingService;
118
119
  PerformanceControlService: PerformanceControlService;
119
120
  PhysicsService: PhysicsService;
121
+ PlaceAssetIdsService: PlaceAssetIdsService;
120
122
  PlacesService: PlacesService;
121
123
  PlaceStatsService: PlaceStatsService;
122
124
  PlatformCloudStorageService: PlatformCloudStorageService;
@@ -252,6 +254,7 @@ interface CreatableInstances {
252
254
  AudioListener: AudioListener;
253
255
  AudioPitchShifter: AudioPitchShifter;
254
256
  AudioPlayer: AudioPlayer;
257
+ AudioRecorder: AudioRecorder;
255
258
  AudioReverb: AudioReverb;
256
259
  AudioSearchParams: AudioSearchParams;
257
260
  AudioTextToSpeech: AudioTextToSpeech;
@@ -514,6 +517,7 @@ interface Instances extends Services, CreatableInstances {
514
517
  AssetPatchSettings: AssetPatchSettings;
515
518
  AssetSoundEffect: AssetSoundEffect;
516
519
  AudioPages: AudioPages;
520
+ AuroraScriptObject: AuroraScriptObject;
517
521
  BackpackItem: BackpackItem;
518
522
  BanHistoryPages: BanHistoryPages;
519
523
  BaseImportData: BaseImportData;
@@ -563,6 +567,7 @@ interface Instances extends Services, CreatableInstances {
563
567
  FacialAnimationStreamingSubsessionStats: FacialAnimationStreamingSubsessionStats;
564
568
  FacsImportData: FacsImportData;
565
569
  Feature: Feature;
570
+ FeedPages: FeedPages;
566
571
  FormFactorPart: FormFactorPart;
567
572
  FriendPages: FriendPages;
568
573
  GenericSettings: GenericSettings;
@@ -1008,6 +1013,14 @@ interface EditableMesh extends RBXObject {
1008
1013
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SkinningEnabled)
1009
1014
  */
1010
1015
  SkinningEnabled: boolean;
1016
+ /**
1017
+ * - **ThreadSafety**: Unsafe
1018
+ *
1019
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#AddBone)
1020
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1021
+ * @param boneProperties
1022
+ */
1023
+ AddBone(this: EditableMesh, boneProperties: object): number;
1011
1024
  /**
1012
1025
  * Adds a new color to the geometry and returns a stable color ID.
1013
1026
  *
@@ -1135,6 +1148,53 @@ interface EditableMesh extends RBXObject {
1135
1148
  * @returns List of IDs of adjacent vertices around the given vertex ID.
1136
1149
  */
1137
1150
  GetAdjacentVertices(this: EditableMesh, vertexId: number): Array<number>;
1151
+ /**
1152
+ * - **ThreadSafety**: Unsafe
1153
+ *
1154
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneByName)
1155
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1156
+ * @param boneName
1157
+ */
1158
+ GetBoneByName(this: EditableMesh, boneName: string): number;
1159
+ /**
1160
+ * - **ThreadSafety**: Unsafe
1161
+ *
1162
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneCFrame)
1163
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1164
+ * @param boneId
1165
+ */
1166
+ GetBoneCFrame(this: EditableMesh, boneId: number): CFrame;
1167
+ /**
1168
+ * - **ThreadSafety**: Unsafe
1169
+ *
1170
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneIsVirtual)
1171
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1172
+ * @param boneId
1173
+ */
1174
+ GetBoneIsVirtual(this: EditableMesh, boneId: number): boolean;
1175
+ /**
1176
+ * - **ThreadSafety**: Unsafe
1177
+ *
1178
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneName)
1179
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1180
+ * @param boneId
1181
+ */
1182
+ GetBoneName(this: EditableMesh, boneId: number): string;
1183
+ /**
1184
+ * - **ThreadSafety**: Unsafe
1185
+ *
1186
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneParent)
1187
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1188
+ * @param boneId
1189
+ */
1190
+ GetBoneParent(this: EditableMesh, boneId: number): number;
1191
+ /**
1192
+ * - **ThreadSafety**: Unsafe
1193
+ *
1194
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBones)
1195
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1196
+ */
1197
+ GetBones(this: EditableMesh): Array<unknown>;
1138
1198
  /**
1139
1199
  * - **ThreadSafety**: Unsafe
1140
1200
  *
@@ -1278,6 +1338,36 @@ interface EditableMesh extends RBXObject {
1278
1338
  * @param uvId
1279
1339
  */
1280
1340
  GetFacesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
1341
+ /**
1342
+ * - **ThreadSafety**: Unsafe
1343
+ *
1344
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePose)
1345
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1346
+ * @param actions
1347
+ */
1348
+ GetFacsCorrectivePose(this: EditableMesh, actions: Array<unknown>): unknown;
1349
+ /**
1350
+ * - **ThreadSafety**: Unsafe
1351
+ *
1352
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePoses)
1353
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1354
+ */
1355
+ GetFacsCorrectivePoses(this: EditableMesh): Array<unknown>;
1356
+ /**
1357
+ * - **ThreadSafety**: Unsafe
1358
+ *
1359
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPose)
1360
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1361
+ * @param action
1362
+ */
1363
+ GetFacsPose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>): unknown;
1364
+ /**
1365
+ * - **ThreadSafety**: Unsafe
1366
+ *
1367
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPoses)
1368
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1369
+ */
1370
+ GetFacsPoses(this: EditableMesh): Array<unknown>;
1281
1371
  /**
1282
1372
  * Returns the normal vector for the given normal ID.
1283
1373
  *
@@ -1341,6 +1431,22 @@ interface EditableMesh extends RBXObject {
1341
1431
  * @returns List of stable UV IDs.
1342
1432
  */
1343
1433
  GetUVs(this: EditableMesh): Array<unknown>;
1434
+ /**
1435
+ * - **ThreadSafety**: Unsafe
1436
+ *
1437
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBoneWeights)
1438
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1439
+ * @param vertexId
1440
+ */
1441
+ GetVertexBoneWeights(this: EditableMesh, vertexId: number): Array<unknown>;
1442
+ /**
1443
+ * - **ThreadSafety**: Unsafe
1444
+ *
1445
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBones)
1446
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1447
+ * @param vertexId
1448
+ */
1449
+ GetVertexBones(this: EditableMesh, vertexId: number): Array<unknown>;
1344
1450
  /**
1345
1451
  * - **ThreadSafety**: Unsafe
1346
1452
  * - **Tags**: CustomLuaState
@@ -1493,6 +1599,14 @@ interface EditableMesh extends RBXObject {
1493
1599
  Vector3,
1494
1600
  Vector3
1495
1601
  ]>;
1602
+ /**
1603
+ * - **ThreadSafety**: Unsafe
1604
+ *
1605
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RemoveBone)
1606
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1607
+ * @param boneId
1608
+ */
1609
+ RemoveBone(this: EditableMesh, boneId: number): void;
1496
1610
  /**
1497
1611
  * Removes a face using its stable face ID.
1498
1612
  *
@@ -1523,6 +1637,42 @@ interface EditableMesh extends RBXObject {
1523
1637
  * @param normalId Stable normal ID to reset.
1524
1638
  */
1525
1639
  ResetNormal(this: EditableMesh, normalId: number): void;
1640
+ /**
1641
+ * - **ThreadSafety**: Unsafe
1642
+ *
1643
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneCFrame)
1644
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1645
+ * @param boneId
1646
+ * @param cframe
1647
+ */
1648
+ SetBoneCFrame(this: EditableMesh, boneId: number, cframe: CFrame): void;
1649
+ /**
1650
+ * - **ThreadSafety**: Unsafe
1651
+ *
1652
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneIsVirtual)
1653
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1654
+ * @param boneId
1655
+ * @param virtual
1656
+ */
1657
+ SetBoneIsVirtual(this: EditableMesh, boneId: number, virtual: boolean): void;
1658
+ /**
1659
+ * - **ThreadSafety**: Unsafe
1660
+ *
1661
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneName)
1662
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1663
+ * @param boneId
1664
+ * @param name
1665
+ */
1666
+ SetBoneName(this: EditableMesh, boneId: number, name: string): void;
1667
+ /**
1668
+ * - **ThreadSafety**: Unsafe
1669
+ *
1670
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetBoneParent)
1671
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1672
+ * @param boneId
1673
+ * @param parentBoneId
1674
+ */
1675
+ SetBoneParent(this: EditableMesh, boneId: number, parentBoneId: number): void;
1526
1676
  /**
1527
1677
  * Sets the color for a color ID.
1528
1678
  *
@@ -1593,6 +1743,36 @@ interface EditableMesh extends RBXObject {
1593
1743
  * @param ids List of new stable vertex IDs to use for the given face.
1594
1744
  */
1595
1745
  SetFaceVertices(this: EditableMesh, faceId: number, ids: Array<unknown>): void;
1746
+ /**
1747
+ * - **ThreadSafety**: Unsafe
1748
+ *
1749
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsBonePose)
1750
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1751
+ * @param action
1752
+ * @param boneId
1753
+ * @param cframe
1754
+ */
1755
+ SetFacsBonePose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>, boneId: number, cframe: CFrame): void;
1756
+ /**
1757
+ * - **ThreadSafety**: Unsafe
1758
+ *
1759
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsCorrectivePose)
1760
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1761
+ * @param actions
1762
+ * @param boneIds
1763
+ * @param cframes
1764
+ */
1765
+ SetFacsCorrectivePose(this: EditableMesh, actions: Array<unknown>, boneIds: Array<unknown>, cframes: Array<unknown>): void;
1766
+ /**
1767
+ * - **ThreadSafety**: Unsafe
1768
+ *
1769
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFacsPose)
1770
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1771
+ * @param action
1772
+ * @param boneIds
1773
+ * @param cframes
1774
+ */
1775
+ SetFacsPose(this: EditableMesh, action: CastsToEnum<Enum.FacsActionUnit>, boneIds: Array<unknown>, cframes: Array<unknown>): void;
1596
1776
  /**
1597
1777
  * Set the normal for a normal ID.
1598
1778
  *
@@ -1626,6 +1806,24 @@ interface EditableMesh extends RBXObject {
1626
1806
  * @param uv UV coordinates.
1627
1807
  */
1628
1808
  SetUV(this: EditableMesh, uvId: number, uv: Vector2): void;
1809
+ /**
1810
+ * - **ThreadSafety**: Unsafe
1811
+ *
1812
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexBoneWeights)
1813
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1814
+ * @param vertexId
1815
+ * @param boneWeights
1816
+ */
1817
+ SetVertexBoneWeights(this: EditableMesh, vertexId: number, boneWeights: Array<unknown>): void;
1818
+ /**
1819
+ * - **ThreadSafety**: Unsafe
1820
+ *
1821
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexBones)
1822
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1823
+ * @param vertexId
1824
+ * @param boneIDs
1825
+ */
1826
+ SetVertexBones(this: EditableMesh, vertexId: number, boneIDs: Array<unknown>): void;
1629
1827
  /**
1630
1828
  * - **ThreadSafety**: Unsafe
1631
1829
  *
@@ -1690,6 +1888,14 @@ interface Instance extends RBXObject {
1690
1888
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#Archivable)
1691
1889
  */
1692
1890
  Archivable: boolean;
1891
+ /**
1892
+ * The set of capabilities allowed to be used for scripts inside this container.
1893
+ *
1894
+ * - **ThreadSafety**: ReadSafe
1895
+ *
1896
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#Capabilities)
1897
+ */
1898
+ Capabilities: SecurityCapabilities;
1693
1899
  /**
1694
1900
  * A non-unique identifier of the `Instance`.
1695
1901
  *
@@ -1707,6 +1913,15 @@ interface Instance extends RBXObject {
1707
1913
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#Parent)
1708
1914
  */
1709
1915
  Parent: Instance | undefined;
1916
+ /**
1917
+ * Turns the instance to be a sandboxed container.
1918
+ *
1919
+ * - **ThreadSafety**: ReadSafe
1920
+ * - **Tags**: NotReplicated
1921
+ *
1922
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#Sandboxed)
1923
+ */
1924
+ Sandboxed: boolean;
1710
1925
  /**
1711
1926
  * Applies a tag to the instance.
1712
1927
  *
@@ -3463,6 +3678,8 @@ interface AssetService extends Instance {
3463
3678
  * - **ThreadSafety**: Unsafe
3464
3679
  *
3465
3680
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateSurfaceAppearance)
3681
+ * @param this A non-replicated service that handles asset-related queries to the Roblox web API.
3682
+ * @param content
3466
3683
  */
3467
3684
  CreateSurfaceAppearance(this: AssetService, content: object): SurfaceAppearance;
3468
3685
  /**
@@ -5631,6 +5848,97 @@ interface AudioPlayer extends Instance {
5631
5848
  */
5632
5849
  readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
5633
5850
  }
5851
+ /**
5852
+ * - **Tags**: NotBrowsable
5853
+ *
5854
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder)
5855
+ */
5856
+ interface AudioRecorder extends Instance {
5857
+ /**
5858
+ * **DO NOT USE!**
5859
+ *
5860
+ * This field exists to force TypeScript to recognize this as a nominal type
5861
+ * @hidden
5862
+ * @deprecated
5863
+ */
5864
+ readonly _nominal_AudioRecorder: unique symbol;
5865
+ /**
5866
+ * - **ThreadSafety**: ReadSafe
5867
+ *
5868
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#IsRecording)
5869
+ */
5870
+ get IsRecording(): boolean;
5871
+ /**
5872
+ * - **ThreadSafety**: ReadSafe
5873
+ * - **Tags**: NotReplicated
5874
+ *
5875
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#TimeLength)
5876
+ */
5877
+ readonly TimeLength: number;
5878
+ /**
5879
+ * - **ThreadSafety**: Unsafe
5880
+ *
5881
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Clear)
5882
+ */
5883
+ Clear(this: AudioRecorder): void;
5884
+ /**
5885
+ * - **ThreadSafety**: Unsafe
5886
+ *
5887
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetConnectedWires)
5888
+ */
5889
+ GetConnectedWires(this: AudioRecorder, pin: string): Array<Instance>;
5890
+ /**
5891
+ * - **ThreadSafety**: Unsafe
5892
+ *
5893
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetInputPins)
5894
+ */
5895
+ GetInputPins(this: AudioRecorder): Array<unknown>;
5896
+ /**
5897
+ * - **ThreadSafety**: Unsafe
5898
+ *
5899
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetOutputPins)
5900
+ */
5901
+ GetOutputPins(this: AudioRecorder): Array<unknown>;
5902
+ /**
5903
+ * - **ThreadSafety**: Unsafe
5904
+ *
5905
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetTemporaryContent)
5906
+ */
5907
+ GetTemporaryContent(this: AudioRecorder): Content;
5908
+ /**
5909
+ * - **ThreadSafety**: Unsafe
5910
+ *
5911
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#Stop)
5912
+ */
5913
+ Stop(this: AudioRecorder): void;
5914
+ /**
5915
+ * - **ThreadSafety**: Unsafe
5916
+ * - **Tags**: Yields
5917
+ *
5918
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#CanRecordAsync)
5919
+ */
5920
+ CanRecordAsync(this: AudioRecorder): boolean;
5921
+ /**
5922
+ * - **ThreadSafety**: Unsafe
5923
+ * - **Tags**: Yields
5924
+ *
5925
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#GetUnrecordableInstancesAsync)
5926
+ */
5927
+ GetUnrecordableInstancesAsync(this: AudioRecorder): Array<Instance>;
5928
+ /**
5929
+ * - **ThreadSafety**: Unsafe
5930
+ * - **Tags**: Yields
5931
+ *
5932
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#RecordAsync)
5933
+ */
5934
+ RecordAsync(this: AudioRecorder): void;
5935
+ /**
5936
+ * - **ThreadSafety**: Unsafe
5937
+ *
5938
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioRecorder#WiringChanged)
5939
+ */
5940
+ readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
5941
+ }
5634
5942
  /**
5635
5943
  * Reverberates audio streams.
5636
5944
  *
@@ -5875,6 +6183,8 @@ interface AudioSearchParams extends Instance {
5875
6183
  Title: string;
5876
6184
  }
5877
6185
  /**
6186
+ * Plays text as speech audio.
6187
+ *
5878
6188
  * - **Tags**: NotBrowsable
5879
6189
  *
5880
6190
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech)
@@ -5889,6 +6199,8 @@ interface AudioTextToSpeech extends Instance {
5889
6199
  */
5890
6200
  readonly _nominal_AudioTextToSpeech: unique symbol;
5891
6201
  /**
6202
+ * Denotes whether the `AudioTextToSpeech` object is loaded, buffered, and ready to play.
6203
+ *
5892
6204
  * - **ThreadSafety**: ReadSafe
5893
6205
  * - **Tags**: NotReplicated
5894
6206
  *
@@ -5896,42 +6208,56 @@ interface AudioTextToSpeech extends Instance {
5896
6208
  */
5897
6209
  readonly IsLoaded: boolean;
5898
6210
  /**
6211
+ * Denotes whether the `AudioTextToSpeech` object is currently playing.
6212
+ *
5899
6213
  * - **ThreadSafety**: ReadSafe
5900
6214
  *
5901
6215
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#IsPlaying)
5902
6216
  */
5903
6217
  get IsPlaying(): boolean;
5904
6218
  /**
6219
+ * Controls whether the `AudioTextToSpeech` object loops.
6220
+ *
5905
6221
  * - **ThreadSafety**: ReadSafe
5906
6222
  *
5907
6223
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Looping)
5908
6224
  */
5909
6225
  Looping: boolean;
5910
6226
  /**
6227
+ * Controls the pitch of the generated speech audio, which will be independent of its speed.
6228
+ *
5911
6229
  * - **ThreadSafety**: ReadSafe
5912
6230
  *
5913
6231
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Pitch)
5914
6232
  */
5915
6233
  Pitch: number;
5916
6234
  /**
6235
+ * Controls how quickly the speech audio will be played, which controls its pitch.
6236
+ *
5917
6237
  * - **ThreadSafety**: ReadSafe
5918
6238
  *
5919
6239
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#PlaybackSpeed)
5920
6240
  */
5921
6241
  PlaybackSpeed: number;
5922
6242
  /**
6243
+ * Controls the speed of the generated speech audio, which will be independent of its pitch.
6244
+ *
5923
6245
  * - **ThreadSafety**: ReadSafe
5924
6246
  *
5925
6247
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Speed)
5926
6248
  */
5927
6249
  Speed: number;
5928
6250
  /**
6251
+ * The text to be converted into speech audio by `AudioTextToSpeech`.
6252
+ *
5929
6253
  * - **ThreadSafety**: ReadSafe
5930
6254
  *
5931
6255
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Text)
5932
6256
  */
5933
6257
  Text: string;
5934
6258
  /**
6259
+ * Denotes the length of the generated speech audio.
6260
+ *
5935
6261
  * - **ThreadSafety**: ReadSafe
5936
6262
  * - **Tags**: NotReplicated
5937
6263
  *
@@ -5939,50 +6265,64 @@ interface AudioTextToSpeech extends Instance {
5939
6265
  */
5940
6266
  readonly TimeLength: number;
5941
6267
  /**
6268
+ * Tracks the current position of the playhead within the generated speech audio.
6269
+ *
5942
6270
  * - **ThreadSafety**: ReadSafe
5943
6271
  *
5944
6272
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#TimePosition)
5945
6273
  */
5946
6274
  TimePosition: number;
5947
6275
  /**
6276
+ * The voice style to be used by `AudioTextToSpeech`.
6277
+ *
5948
6278
  * - **ThreadSafety**: ReadSafe
5949
6279
  *
5950
6280
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#VoiceId)
5951
6281
  */
5952
6282
  VoiceId: string;
5953
6283
  /**
6284
+ * Controls how loudly the generated speech audio will be played.
6285
+ *
5954
6286
  * - **ThreadSafety**: ReadSafe
5955
6287
  *
5956
6288
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Volume)
5957
6289
  */
5958
6290
  Volume: number;
5959
6291
  /**
6292
+ * Returns an array of `Wires` that are connected to the specified pin.
6293
+ *
5960
6294
  * - **ThreadSafety**: Unsafe
5961
6295
  *
5962
6296
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#GetConnectedWires)
5963
- * @param this
6297
+ * @param this Plays text as speech audio.
5964
6298
  * @param pin
5965
6299
  */
5966
6300
  GetConnectedWires(this: AudioTextToSpeech, pin: string): Array<Instance>;
5967
6301
  /**
6302
+ * Pauses the `AudioTextToSpeech` object wherever its `TimePosition` is.
6303
+ *
5968
6304
  * - **ThreadSafety**: Unsafe
5969
6305
  *
5970
6306
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Pause)
5971
- * @param this
6307
+ * @param this Plays text as speech audio.
5972
6308
  */
5973
6309
  Pause(this: AudioTextToSpeech): void;
5974
6310
  /**
6311
+ * Plays the `AudioTextToSpeech` from wherever its `TimePosition` is.
6312
+ *
5975
6313
  * - **ThreadSafety**: Unsafe
5976
6314
  *
5977
6315
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Play)
5978
- * @param this
6316
+ * @param this Plays text as speech audio.
5979
6317
  */
5980
6318
  Play(this: AudioTextToSpeech): void;
5981
6319
  /**
6320
+ * Unload the generated speech audio.
6321
+ *
5982
6322
  * - **ThreadSafety**: Unsafe
5983
6323
  *
5984
6324
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Unload)
5985
- * @param this
6325
+ * @param this Plays text as speech audio.
5986
6326
  */
5987
6327
  Unload(this: AudioTextToSpeech): void;
5988
6328
  /**
@@ -5990,38 +6330,63 @@ interface AudioTextToSpeech extends Instance {
5990
6330
  * - **Tags**: Yields
5991
6331
  *
5992
6332
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#GetWaveformAsync)
5993
- * @param this
6333
+ * @param this Plays text as speech audio.
5994
6334
  * @param timeRange
5995
6335
  * @param samples
5996
6336
  */
5997
6337
  GetWaveformAsync(this: AudioTextToSpeech, timeRange: NumberRange, samples: number): Array<unknown>;
5998
6338
  /**
6339
+ * Generates speech audio.
6340
+ *
5999
6341
  * - **ThreadSafety**: Unsafe
6000
6342
  * - **Tags**: Yields
6001
6343
  *
6002
6344
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#LoadAsync)
6003
- * @param this
6345
+ * @param this Plays text as speech audio.
6004
6346
  */
6005
6347
  LoadAsync(this: AudioTextToSpeech): Enum.AssetFetchStatus;
6006
6348
  /**
6349
+ * Fires when the `AudioTextToSpeech` object has completed playback and paused.
6350
+ *
6007
6351
  * - **ThreadSafety**: Unsafe
6008
6352
  *
6009
6353
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Ended)
6010
6354
  */
6011
6355
  readonly Ended: RBXScriptSignal<() => void>;
6012
6356
  /**
6357
+ * Fires when the `AudioTextToSpeech` object loops.
6358
+ *
6013
6359
  * - **ThreadSafety**: Unsafe
6014
6360
  *
6015
6361
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Looped)
6016
6362
  */
6017
6363
  readonly Looped: RBXScriptSignal<() => void>;
6018
6364
  /**
6365
+ * Fires when another instance is connected to or disconnected from the `AudioTextToSpeech` via a `Wire`.
6366
+ *
6019
6367
  * - **ThreadSafety**: Unsafe
6020
6368
  *
6021
6369
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#WiringChanged)
6022
6370
  */
6023
6371
  readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
6024
6372
  }
6373
+ /**
6374
+ * - **Tags**: NotCreatable
6375
+ *
6376
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptObject)
6377
+ *
6378
+ * @deprecated
6379
+ */
6380
+ interface AuroraScriptObject extends Instance {
6381
+ /**
6382
+ * **DO NOT USE!**
6383
+ *
6384
+ * This field exists to force TypeScript to recognize this as a nominal type
6385
+ * @hidden
6386
+ * @deprecated
6387
+ */
6388
+ readonly _nominal_AuroraScriptObject: unique symbol;
6389
+ }
6025
6390
  /**
6026
6391
  * - **Tags**: NotCreatable, Service
6027
6392
  *
@@ -6038,42 +6403,18 @@ interface AuroraScriptService extends Instance {
6038
6403
  * @deprecated
6039
6404
  */
6040
6405
  readonly _nominal_AuroraScriptService: unique symbol;
6041
- /**
6042
- * - **ThreadSafety**: ReadSafe
6043
- *
6044
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#BufferSize)
6045
- */
6046
- get BufferSize(): number;
6047
6406
  /**
6048
6407
  * - **ThreadSafety**: Safe
6049
6408
  *
6050
6409
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetLocalFrameId)
6051
6410
  */
6052
6411
  GetLocalFrameId(this: AuroraScriptService): number;
6053
- /**
6054
- * - **ThreadSafety**: Safe
6055
- *
6056
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetProperty)
6057
- */
6058
- GetProperty(this: AuroraScriptService, instance: Instance, name: string): unknown;
6059
- /**
6060
- * - **ThreadSafety**: Safe
6061
- *
6062
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetTime)
6063
- */
6064
- GetTime(this: AuroraScriptService): number;
6065
6412
  /**
6066
6413
  * - **ThreadSafety**: Safe
6067
6414
  *
6068
6415
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#SendMessage)
6069
6416
  */
6070
6417
  SendMessage(this: AuroraScriptService, instance: Instance, behaviorName: string, functionName: string, args: unknown): void;
6071
- /**
6072
- * - **ThreadSafety**: Safe
6073
- *
6074
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#SetProperty)
6075
- */
6076
- SetProperty(this: AuroraScriptService, instance: Instance, name: string, value: unknown): void;
6077
6418
  }
6078
6419
  /**
6079
6420
  * - **Tags**: NotCreatable, Service
@@ -6163,6 +6504,12 @@ interface AuroraService extends Instance {
6163
6504
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#FixedRateTick)
6164
6505
  */
6165
6506
  readonly FixedRateTick: RBXScriptSignal<(deltaTime: number, worldStepId: number) => void>;
6507
+ /**
6508
+ * - **ThreadSafety**: Unsafe
6509
+ *
6510
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Misprediction)
6511
+ */
6512
+ readonly Misprediction: RBXScriptSignal<(worldStepId: number, mispredictedInstances: Array<unknown>) => void>;
6166
6513
  /**
6167
6514
  * - **ThreadSafety**: Unsafe
6168
6515
  *
@@ -6218,12 +6565,6 @@ interface AvatarCreationService extends Instance {
6218
6565
  * @returns Dictionary of validation rules as detailed above.
6219
6566
  */
6220
6567
  GetValidationRules(this: AvatarCreationService): object;
6221
- /**
6222
- * - **ThreadSafety**: Unsafe
6223
- *
6224
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#SendAnalyticsEvent)
6225
- */
6226
- SendAnalyticsEvent(this: AvatarCreationService, eventName: string, params: object): void;
6227
6568
  /**
6228
6569
  * - **ThreadSafety**: Unsafe
6229
6570
  * - **Tags**: Yields
@@ -6240,13 +6581,6 @@ interface AvatarCreationService extends Instance {
6240
6581
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GenerateAvatarAsync)
6241
6582
  */
6242
6583
  GenerateAvatarAsync(this: AvatarCreationService, avatarGenerationParams: object): string;
6243
- /**
6244
- * - **ThreadSafety**: Unsafe
6245
- * - **Tags**: Yields
6246
- *
6247
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#GetAvatarGenerationConfig)
6248
- */
6249
- GetAvatarGenerationConfig(this: AvatarCreationService): object;
6250
6584
  /**
6251
6585
  * Gets the avatar creation token details for a list of avatar creation tokens at once.
6252
6586
  *
@@ -10069,6 +10403,23 @@ interface ConfigService extends Instance {
10069
10403
  * @deprecated
10070
10404
  */
10071
10405
  readonly _nominal_ConfigService: unique symbol;
10406
+ /**
10407
+ * - **ThreadSafety**: Unsafe
10408
+ *
10409
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigService#ClearTestingValue)
10410
+ * @param this
10411
+ * @param key
10412
+ */
10413
+ ClearTestingValue(this: ConfigService, key: string): void;
10414
+ /**
10415
+ * - **ThreadSafety**: Unsafe
10416
+ *
10417
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConfigService#SetTestingValue)
10418
+ * @param this
10419
+ * @param key
10420
+ * @param value
10421
+ */
10422
+ SetTestingValue(this: ConfigService, key: string, value: unknown): void;
10072
10423
  /**
10073
10424
  * - **ThreadSafety**: Unsafe
10074
10425
  * - **Tags**: Yields
@@ -10936,6 +11287,12 @@ interface LinearVelocity extends Constraint {
10936
11287
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LinearVelocity#PrimaryTangentAxis)
10937
11288
  */
10938
11289
  PrimaryTangentAxis: Vector3;
11290
+ /**
11291
+ * - **ThreadSafety**: ReadSafe
11292
+ *
11293
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LinearVelocity#ReactionForceEnabled)
11294
+ */
11295
+ ReactionForceEnabled: boolean;
10939
11296
  /**
10940
11297
  * Sets the `ActuatorRelativeTo` property for the `LinearVelocity` constraint.
10941
11298
  *
@@ -11938,7 +12295,7 @@ interface ContentProvider extends Instance {
11938
12295
  *
11939
12296
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ContentProvider#PreloadAsync)
11940
12297
  * @param this Service that is used to load content, or assets, into a game.
11941
- * @param contentIdList An array of instances or content ID strings (for images) to load.
12298
+ * @param contentIdList An array of instances to load.
11942
12299
  * @param callbackFunction The function called when each asset request completes. Returns the `content` string and the asset's final `AssetFetchStatus`.
11943
12300
  */
11944
12301
  PreloadAsync(this: ContentProvider, contentIdList: Array<Instance | string>, callback?: (contentId: string, status: Enum.AssetFetchStatus) => void): void;
@@ -14581,6 +14938,48 @@ interface FeatureRestrictionManager extends Instance {
14581
14938
  */
14582
14939
  readonly _nominal_FeatureRestrictionManager: unique symbol;
14583
14940
  }
14941
+ /**
14942
+ * - **Tags**: NotCreatable, Service
14943
+ *
14944
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService)
14945
+ */
14946
+ interface FeedService extends Instance {
14947
+ /**
14948
+ * **DO NOT USE!**
14949
+ *
14950
+ * This field exists to force TypeScript to recognize this as a nominal type
14951
+ * @hidden
14952
+ * @deprecated
14953
+ */
14954
+ readonly _nominal_FeedService: unique symbol;
14955
+ /**
14956
+ * - **ThreadSafety**: Unsafe
14957
+ * - **Tags**: Yields
14958
+ *
14959
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#BatchRemoveFeedItemsAsync)
14960
+ * @param this
14961
+ * @param feedItemIds
14962
+ */
14963
+ BatchRemoveFeedItemsAsync(this: FeedService, feedItemIds: Array<unknown>): void;
14964
+ /**
14965
+ * - **ThreadSafety**: Unsafe
14966
+ * - **Tags**: Yields
14967
+ *
14968
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#GetFeedItemsAsync)
14969
+ * @param this
14970
+ * @param getFeedRequest
14971
+ */
14972
+ GetFeedItemsAsync(this: FeedService, getFeedRequest: object): FeedPages;
14973
+ /**
14974
+ * - **ThreadSafety**: Unsafe
14975
+ * - **Tags**: Yields
14976
+ *
14977
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedService#RegisterFeedItemsAsync)
14978
+ * @param this
14979
+ * @param registerFeedItemsRequest
14980
+ */
14981
+ RegisterFeedItemsAsync(this: FeedService, registerFeedItemsRequest: object): object;
14982
+ }
14584
14983
  /**
14585
14984
  * A particle emitter with the visual aesthetic of fire.
14586
14985
  *
@@ -16093,6 +16492,8 @@ interface GuiButton extends GuiObject {
16093
16492
  */
16094
16493
  AutoButtonColor: boolean;
16095
16494
  /**
16495
+ * A `HapticEffect` instance that will play when the `GuiButton` is being hovered.
16496
+ *
16096
16497
  * - **ThreadSafety**: ReadSafe
16097
16498
  *
16098
16499
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiButton#HoverHapticEffect)
@@ -16107,6 +16508,8 @@ interface GuiButton extends GuiObject {
16107
16508
  */
16108
16509
  Modal: boolean;
16109
16510
  /**
16511
+ * A `HapticEffect` instance that will play when the `GuiButton` is being pressed.
16512
+ *
16110
16513
  * - **ThreadSafety**: ReadSafe
16111
16514
  *
16112
16515
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GuiButton#PressHapticEffect)
@@ -16207,6 +16610,12 @@ interface ImageButton extends GuiButton {
16207
16610
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageButton#HoverImage)
16208
16611
  */
16209
16612
  HoverImage: ContentId;
16613
+ /**
16614
+ * - **ThreadSafety**: ReadSafe
16615
+ *
16616
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageButton#HoverImageContent)
16617
+ */
16618
+ HoverImageContent: Content;
16210
16619
  /**
16211
16620
  * The image content displayed by the `ImageButton` element. Reads and writes to `ImageContent`.
16212
16621
  *
@@ -16272,6 +16681,12 @@ interface ImageButton extends GuiButton {
16272
16681
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageButton#PressedImage)
16273
16682
  */
16274
16683
  PressedImage: ContentId;
16684
+ /**
16685
+ * - **ThreadSafety**: ReadSafe
16686
+ *
16687
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageButton#PressedImageContent)
16688
+ */
16689
+ PressedImageContent: Content;
16275
16690
  /**
16276
16691
  * Selects the image resampling mode for the button.
16277
16692
  *
@@ -18681,6 +19096,12 @@ interface WireframeHandleAdornment extends HandleAdornment {
18681
19096
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment#Scale)
18682
19097
  */
18683
19098
  Scale: Vector3;
19099
+ /**
19100
+ * - **ThreadSafety**: ReadSafe
19101
+ *
19102
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WireframeHandleAdornment#Thickness)
19103
+ */
19104
+ Thickness: number;
18684
19105
  /**
18685
19106
  * - **ThreadSafety**: Unsafe
18686
19107
  *
@@ -18888,7 +19309,7 @@ interface ArcHandles extends HandlesBase {
18888
19309
  readonly MouseLeave: RBXScriptSignal<(axis: Enum.Axis) => void>;
18889
19310
  }
18890
19311
  /**
18891
- * The Handles object places 3D handles around any object that its Adornee is set to.
19312
+ * Places 3D handles around any object that its `Adornee` is set to.
18892
19313
  *
18893
19314
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Handles)
18894
19315
  */
@@ -18910,7 +19331,7 @@ interface Handles extends HandlesBase {
18910
19331
  */
18911
19332
  Faces: Faces;
18912
19333
  /**
18913
- * Sets the GUI style of the handles. Currently there are only two types; Resize and Movement.
19334
+ * Sets the GUI style of the handles.
18914
19335
  *
18915
19336
  * - **ThreadSafety**: ReadSafe
18916
19337
  *
@@ -19602,45 +20023,63 @@ interface HapticEffect extends Instance {
19602
20023
  */
19603
20024
  readonly _nominal_HapticEffect: unique symbol;
19604
20025
  /**
20026
+ * Whether the haptic effect loops continuously.
20027
+ *
19605
20028
  * - **ThreadSafety**: ReadSafe
19606
20029
  *
19607
20030
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Looped)
19608
20031
  */
19609
20032
  Looped: boolean;
19610
20033
  /**
20034
+ * Along with `Radius`, specifies the impact position relative to the input device and, effectively, how broadly that impact effects nearby motors.
20035
+ *
19611
20036
  * - **ThreadSafety**: ReadSafe
19612
20037
  *
19613
20038
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Position)
19614
20039
  */
19615
20040
  Position: Vector3;
19616
20041
  /**
20042
+ * Along with `Position`, specifies the impact radius relative to the input device and, effectively, how broadly that impact effects nearby motors.
20043
+ *
19617
20044
  * - **ThreadSafety**: ReadSafe
19618
20045
  *
19619
20046
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Radius)
19620
20047
  */
19621
20048
  Radius: number;
19622
20049
  /**
20050
+ * `HapticEffectType` describing the haptic type.
20051
+ *
19623
20052
  * - **ThreadSafety**: ReadSafe
19624
20053
  *
19625
20054
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Type)
19626
20055
  */
19627
20056
  Type: Enum.HapticEffectType;
19628
20057
  /**
20058
+ * Plays the haptic effect.
20059
+ *
19629
20060
  * - **ThreadSafety**: Unsafe
19630
20061
  *
19631
20062
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Play)
20063
+ * @param this
19632
20064
  */
19633
20065
  Play(this: HapticEffect): void;
19634
20066
  /**
20067
+ * Method used to define a custom waveform as a table and apply it to the haptic.
20068
+ *
19635
20069
  * - **ThreadSafety**: Unsafe
19636
20070
  *
19637
20071
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#SetWaveformKeys)
20072
+ * @param this
20073
+ * @param keys
19638
20074
  */
19639
20075
  SetWaveformKeys(this: HapticEffect, keys: Array<unknown>): void;
19640
20076
  /**
20077
+ * Stops the haptic effect.
20078
+ *
19641
20079
  * - **ThreadSafety**: Unsafe
19642
20080
  *
19643
20081
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HapticEffect#Stop)
20082
+ * @param this
19644
20083
  */
19645
20084
  Stop(this: HapticEffect): void;
19646
20085
  }
@@ -23458,6 +23897,15 @@ interface LanguageService extends Instance {
23458
23897
  * @deprecated
23459
23898
  */
23460
23899
  readonly _nominal_LanguageService: unique symbol;
23900
+ /**
23901
+ * - **ThreadSafety**: Unsafe
23902
+ * - **Tags**: Yields
23903
+ *
23904
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LanguageService#GetCapabilitiesUsedInPackageAsync)
23905
+ * @param this
23906
+ * @param instances
23907
+ */
23908
+ GetCapabilitiesUsedInPackageAsync(this: LanguageService, instances: Array<Instance>): object;
23461
23909
  }
23462
23910
  /**
23463
23911
  * Light is a root class for dynamic lighting related objects.
@@ -24401,12 +24849,6 @@ interface AuroraScript extends LuaSourceContainer {
24401
24849
  * @deprecated
24402
24850
  */
24403
24851
  readonly _nominal_AuroraScript: unique symbol;
24404
- /**
24405
- * - **ThreadSafety**: ReadSafe
24406
- *
24407
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScript#Tag)
24408
- */
24409
- get Tag(): string;
24410
24852
  /**
24411
24853
  * - **ThreadSafety**: Unsafe
24412
24854
  *
@@ -29786,6 +30228,21 @@ interface DataStoreVersionPages extends Pages<DataStoreObjectVersionInfo> {
29786
30228
  */
29787
30229
  readonly _nominal_DataStoreVersionPages: unique symbol;
29788
30230
  }
30231
+ /**
30232
+ * - **Tags**: NotCreatable, NotReplicated
30233
+ *
30234
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FeedPages)
30235
+ */
30236
+ interface FeedPages extends Pages {
30237
+ /**
30238
+ * **DO NOT USE!**
30239
+ *
30240
+ * This field exists to force TypeScript to recognize this as a nominal type
30241
+ * @hidden
30242
+ * @deprecated
30243
+ */
30244
+ readonly _nominal_FeedPages: unique symbol;
30245
+ }
29789
30246
  /**
29790
30247
  * A special version of `Pages` that contains information about a player's friends.
29791
30248
  *
@@ -30792,6 +31249,21 @@ interface PhysicsService extends Instance {
30792
31249
  */
30793
31250
  UnregisterCollisionGroup(this: PhysicsService, name: string): void;
30794
31251
  }
31252
+ /**
31253
+ * - **Tags**: NotCreatable, Service
31254
+ *
31255
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlaceAssetIdsService)
31256
+ */
31257
+ interface PlaceAssetIdsService extends Instance {
31258
+ /**
31259
+ * **DO NOT USE!**
31260
+ *
31261
+ * This field exists to force TypeScript to recognize this as a nominal type
31262
+ * @hidden
31263
+ * @deprecated
31264
+ */
31265
+ readonly _nominal_PlaceAssetIdsService: unique symbol;
31266
+ }
30795
31267
  /**
30796
31268
  * - **Tags**: NotCreatable, Service, NotReplicated
30797
31269
  *
@@ -33113,6 +33585,24 @@ interface ReflectionService extends Instance {
33113
33585
  * @deprecated
33114
33586
  */
33115
33587
  readonly _nominal_ReflectionService: unique symbol;
33588
+ /**
33589
+ * - **ThreadSafety**: Unsafe
33590
+ *
33591
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClass)
33592
+ */
33593
+ GetClass(this: ReflectionService, className: string, filter?: object): object | undefined;
33594
+ /**
33595
+ * - **ThreadSafety**: Unsafe
33596
+ *
33597
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClasses)
33598
+ */
33599
+ GetClasses(this: ReflectionService, filter?: object): Array<unknown>;
33600
+ /**
33601
+ * - **ThreadSafety**: Unsafe
33602
+ *
33603
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetPropertiesOfClass)
33604
+ */
33605
+ GetPropertiesOfClass(this: ReflectionService, className: string, filter?: object): Array<unknown>;
33116
33606
  }
33117
33607
  /**
33118
33608
  * - **Tags**: NotCreatable, Service
@@ -34195,6 +34685,8 @@ interface SerializationService extends Instance {
34195
34685
  */
34196
34686
  readonly _nominal_SerializationService: unique symbol;
34197
34687
  /**
34688
+ * Deserializes a `buffer` containing `.rbxm` content, returning a list of `instances`.
34689
+ *
34198
34690
  * - **ThreadSafety**: Unsafe
34199
34691
  * - **Tags**: Yields
34200
34692
  *
@@ -34204,6 +34696,8 @@ interface SerializationService extends Instance {
34204
34696
  */
34205
34697
  DeserializeInstancesAsync(this: SerializationService, buffer: buffer): Array<Instance>;
34206
34698
  /**
34699
+ * Serializes a list of `instances` to the `.rbxm` format, returning a `buffer` or `.rbxm` content.
34700
+ *
34207
34701
  * - **ThreadSafety**: Unsafe
34208
34702
  * - **Tags**: Yields
34209
34703
  *
@@ -34792,6 +35286,12 @@ interface Sky extends Instance {
34792
35286
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxLf)
34793
35287
  */
34794
35288
  SkyboxLf: ContentId;
35289
+ /**
35290
+ * - **ThreadSafety**: ReadSafe
35291
+ *
35292
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxOrientation)
35293
+ */
35294
+ SkyboxOrientation: Vector3;
34795
35295
  /**
34796
35296
  * Asset ID for the right surface of the skybox.
34797
35297
  *
@@ -35031,6 +35531,8 @@ interface SocialService extends Instance {
35031
35531
  * - **Tags**: Yields
35032
35532
  *
35033
35533
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetPartyAsync)
35534
+ * @param this Facilitates social functions that impact relationships made on the Roblox platform.
35535
+ * @param partyId
35034
35536
  */
35035
35537
  GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
35036
35538
  /**
@@ -36183,6 +36685,12 @@ interface StarterPlayer extends Instance {
36183
36685
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#CharacterWalkSpeed)
36184
36686
  */
36185
36687
  CharacterWalkSpeed: number;
36688
+ /**
36689
+ * - **ThreadSafety**: ReadSafe
36690
+ *
36691
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#ClassicDeath)
36692
+ */
36693
+ ClassicDeath: boolean;
36186
36694
  /**
36187
36695
  * Sets how the default camera handles objects between the camera and the player.
36188
36696
  *
@@ -36262,6 +36770,12 @@ interface StarterPlayer extends Instance {
36262
36770
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#NameDisplayDistance)
36263
36771
  */
36264
36772
  NameDisplayDistance: number;
36773
+ /**
36774
+ * - **ThreadSafety**: ReadSafe
36775
+ *
36776
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StarterPlayer#RagdollDeath)
36777
+ */
36778
+ RagdollDeath: boolean;
36265
36779
  /**
36266
36780
  * Determines if user-owned emotes are loaded when loading avatars.
36267
36781
  *
@@ -36551,6 +37065,24 @@ interface Stats extends Instance {
36551
37065
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#UI3DTriangleCount)
36552
37066
  */
36553
37067
  readonly UI3DTriangleCount: number;
37068
+ /**
37069
+ * - **ThreadSafety**: Unsafe
37070
+ *
37071
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetHarmonyQualityLevel)
37072
+ */
37073
+ GetHarmonyQualityLevel(this: Stats): number;
37074
+ /**
37075
+ * - **ThreadSafety**: Unsafe
37076
+ *
37077
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetMemoryCategoryNames)
37078
+ */
37079
+ GetMemoryCategoryNames(this: Stats): Array<unknown>;
37080
+ /**
37081
+ * - **ThreadSafety**: Unsafe
37082
+ *
37083
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#GetMemoryUsageMbAllCategories)
37084
+ */
37085
+ GetMemoryUsageMbAllCategories(this: Stats): Array<unknown>;
36554
37086
  /**
36555
37087
  * Returns the number of megabytes that are being consumed in the specified `DeveloperMemoryTag` category.
36556
37088
  *
@@ -36570,6 +37102,18 @@ interface Stats extends Instance {
36570
37102
  * @param this Performance metrics for a game.
36571
37103
  */
36572
37104
  GetTotalMemoryUsageMb(this: Stats): number;
37105
+ /**
37106
+ * - **ThreadSafety**: Unsafe
37107
+ *
37108
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#ResetHarmonyMemoryTarget)
37109
+ */
37110
+ ResetHarmonyMemoryTarget(this: Stats): void;
37111
+ /**
37112
+ * - **ThreadSafety**: Unsafe
37113
+ *
37114
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Stats#SetHarmonyMemoryTarget)
37115
+ */
37116
+ SetHarmonyMemoryTarget(this: Stats, targetMB: number): void;
36573
37117
  }
36574
37118
  /**
36575
37119
  * - **Tags**: NotCreatable, Service, NotReplicated
@@ -36682,6 +37226,18 @@ interface StudioCameraService extends Instance {
36682
37226
  * @deprecated
36683
37227
  */
36684
37228
  readonly _nominal_StudioCameraService: unique symbol;
37229
+ /**
37230
+ * - **ThreadSafety**: ReadSafe
37231
+ *
37232
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCameraService#LockCameraSpeed)
37233
+ */
37234
+ LockCameraSpeed: boolean;
37235
+ /**
37236
+ * - **ThreadSafety**: Unsafe
37237
+ *
37238
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCameraService#ShowCameraSpeed)
37239
+ */
37240
+ readonly ShowCameraSpeed: RBXScriptSignal<(speed: number) => void>;
36685
37241
  }
36686
37242
  /**
36687
37243
  * - **Tags**: NotCreatable, Service, NotReplicated
@@ -41720,7 +42276,7 @@ interface UserInputService extends Instance {
41720
42276
  */
41721
42277
  readonly TouchLongPress: RBXScriptSignal<(touchPositions: Array<Vector2>, state: Enum.UserInputState, gameProcessedEvent: boolean) => void>;
41722
42278
  /**
41723
- * Fired when a user moves their finger on a TouchEnabled device - such as the screen of an Apple iPad or iPhone or a Google Android phone.
42279
+ * Fires when a user moves their finger on a `TouchEnabled` device, such as a tablet or smartphone.
41724
42280
  *
41725
42281
  * - **ThreadSafety**: Unsafe
41726
42282
  *
@@ -43054,15 +43610,12 @@ interface WebSocketClient extends Instance {
43054
43610
  * - **ThreadSafety**: Unsafe
43055
43611
  *
43056
43612
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebSocketClient#Close)
43057
- * @param this
43058
43613
  */
43059
43614
  Close(this: WebSocketClient): void;
43060
43615
  /**
43061
43616
  * - **ThreadSafety**: Unsafe
43062
43617
  *
43063
43618
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebSocketClient#Send)
43064
- * @param this
43065
- * @param data
43066
43619
  */
43067
43620
  Send(this: WebSocketClient, data: string): void;
43068
43621
  /**
@@ -43102,8 +43655,6 @@ interface WebSocketService extends Instance {
43102
43655
  * - **ThreadSafety**: Unsafe
43103
43656
  *
43104
43657
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WebSocketService#CreateClient)
43105
- * @param this
43106
- * @param uri
43107
43658
  */
43108
43659
  CreateClient(this: WebSocketService, uri: string): WebSocketClient;
43109
43660
  }