@rbxts/types 1.0.951 → 1.0.953

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.
@@ -79,6 +79,7 @@ interface Services {
79
79
  ExperienceStateCaptureService: ExperienceStateCaptureService;
80
80
  ExperienceStateRecordingService: ExperienceStateRecordingService;
81
81
  ExplorerServiceVisibilityService: ExplorerServiceVisibilityService;
82
+ ExternalIdentityService: ExternalIdentityService;
82
83
  FaceAnimatorService: FaceAnimatorService;
83
84
  FacialAgeEstimationService: FacialAgeEstimationService;
84
85
  FacialAnimationRecordingService: FacialAnimationRecordingService;
@@ -169,6 +170,7 @@ interface Services {
169
170
  ProcessInstancePhysicsService: ProcessInstancePhysicsService;
170
171
  ProximityPromptService: ProximityPromptService;
171
172
  PublishService: PublishService;
173
+ QueueService: QueueService;
172
174
  RecommendationService: RecommendationService;
173
175
  ReflectionService: ReflectionService;
174
176
  RemoteCommandService: RemoteCommandService;
@@ -280,6 +282,7 @@ interface CreatableInstances {
280
282
  Accoutrement: Accoutrement;
281
283
  Actor: Actor;
282
284
  AdGui: AdGui;
285
+ AdPlacement: AdPlacement;
283
286
  AdPortal: AdPortal;
284
287
  AirController: AirController;
285
288
  AlignOrientation: AlignOrientation;
@@ -743,6 +746,7 @@ interface Instances extends Services, CreatableInstances {
743
746
  SoundEffect: SoundEffect;
744
747
  StackFrame: StackFrame;
745
748
  StandardPages: StandardPages;
749
+ StandardQueue: StandardQueue;
746
750
  StarterCharacterScripts: StarterCharacterScripts;
747
751
  StarterPlayerScripts: StarterPlayerScripts;
748
752
  StudioObjectBase: StudioObjectBase;
@@ -1113,6 +1117,8 @@ interface EditableImage extends RBXObject {
1113
1117
  */
1114
1118
  readonly Size: Vector2;
1115
1119
  /**
1120
+ * Destroys the image contents and immediately reclaims the memory they use.
1121
+ *
1116
1122
  * - **ThreadSafety**: Unsafe
1117
1123
  *
1118
1124
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableImage#Destroy)
@@ -1226,9 +1232,23 @@ interface EditableImage extends RBXObject {
1226
1232
  */
1227
1233
  ReadPixelsBuffer(this: EditableImage, position: Vector2, size: Vector2): buffer;
1228
1234
  /**
1235
+ * Projects pixels from an `EditableMesh` texture into this `EditableImage`.
1236
+ *
1229
1237
  * - **ThreadSafety**: Unsafe
1230
1238
  *
1231
1239
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableImage#SampleImageProjected)
1240
+ * @param this Object which allows for the runtime creation and manipulation of images.
1241
+ * @param sourceMesh The `EditableMesh` that maps `sourceTexture` onto the surface being sampled.
1242
+ * @param sourceTexture The `EditableImage` from which pixels are sampled.
1243
+ * @param projectionConfig Projection configuration dictionary containing the following key-value pairs: - `Direction` (`Vector3`) where the projector is facing.
1244
+ * - `Position` (`Vector3`) as the projector position in local space with respect to the mesh.
1245
+ * - `Size` (`Vector3`) as the size of the projector. The **X** and **Y** components specify its dimensions, while the **Z** component specifies the projection depth.
1246
+ * - `Up` (`Vector3`) as the up vector of the projector in local space with respect to the mesh.
1247
+ *
1248
+ *
1249
+ * @param brushConfig Brush configuration dictionary containing the following key-value pairs: - `AlphaBlendType` (`ImageAlphaType`) which determines how the sampled alpha values are blended.
1250
+ * - `ColorBlendType` (`ImageCombineType`) which determines how the sampled color values are blended.
1251
+ * - `FadeAngle` (number) as the angle in degrees at which the projection begins to fade based on the surface normal. A value of `180` applies no normal-angle fade.
1232
1252
  */
1233
1253
  SampleImageProjected(this: EditableImage, sourceMesh: EditableMesh, sourceTexture: EditableImage, projectionConfig: object, brushConfig: object): void;
1234
1254
  /**
@@ -1271,31 +1291,31 @@ interface EditableMesh extends RBXObject {
1271
1291
  */
1272
1292
  get FixedSize(): boolean;
1273
1293
  /**
1274
- * Adds a new bone and returns a stable bone ID.
1294
+ * Adds a new bone and returns a bone ID.
1275
1295
  *
1276
1296
  * - **ThreadSafety**: Unsafe
1277
1297
  *
1278
1298
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#AddBone)
1279
1299
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1280
- * @param boneProperties Options table containing bone parameters: - `Name` — A string that specifies the bone name. Note that all bone names in a mesh must be unique.
1300
+ * @param boneProperties Options table containing bone parameters: - `Name` — A string that specifies the bone name. Note that all bone names in a mesh must be unique, and the maximum length is 100 characters.
1281
1301
  * - `ParentId` — Optional bone ID of the new bone's parent.
1282
1302
  * - `CFrame` — Initial `CFrame` of the bone in the bind pose of the mesh, in the mesh's local space.
1283
1303
  * - `Virtual` — Boolean that specifies whether this bone is virtual. Virtual bones can only be bound to a `FaceControls` instance.
1284
1304
  *
1285
1305
  *
1286
- * @returns Stable bone ID of the new bone.
1306
+ * @returns Bone ID of the new bone.
1287
1307
  */
1288
1308
  AddBone(this: EditableMesh, boneProperties: object): number;
1289
1309
  /**
1290
- * Adds a new color to the geometry and returns a stable color ID.
1310
+ * Adds a new color to the geometry and returns a color ID.
1291
1311
  *
1292
1312
  * - **ThreadSafety**: Unsafe
1293
1313
  *
1294
1314
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#AddColor)
1295
1315
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1296
1316
  * @param color The new color.
1297
- * @param alpha The color alpha (transparency).
1298
- * @returns Stable color ID of the new color.
1317
+ * @param alpha The color alpha (transparency). `0` is fully transparent, and `1` is fully opaque.
1318
+ * @returns Color ID of the new color.
1299
1319
  */
1300
1320
  AddColor(this: EditableMesh, color: Color3, alpha: number): number;
1301
1321
  /**
@@ -1305,18 +1325,18 @@ interface EditableMesh extends RBXObject {
1305
1325
  */
1306
1326
  AddFace(this: EditableMesh, vertexIds: Array<unknown>): number;
1307
1327
  /**
1308
- * Adds a new normal to the geometry and returns a stable normal ID.
1328
+ * Adds a new normal to the geometry and returns a normal ID.
1309
1329
  *
1310
1330
  * - **ThreadSafety**: Unsafe
1311
1331
  *
1312
1332
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#AddNormal)
1313
1333
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1314
1334
  * @param normal The normal vector. If the normal value isn't specified, the normal will be automatically calculated.
1315
- * @returns Stable normal ID of the new normal.
1335
+ * @returns Normal ID of the new normal.
1316
1336
  */
1317
1337
  AddNormal(this: EditableMesh, normal?: Vector3): number;
1318
1338
  /**
1319
- * Adds a new triangle to the mesh and returns a stable face ID.
1339
+ * Adds a new triangle to the mesh and returns a face ID.
1320
1340
  *
1321
1341
  * - **ThreadSafety**: Unsafe
1322
1342
  *
@@ -1325,29 +1345,29 @@ interface EditableMesh extends RBXObject {
1325
1345
  * @param vertexId0 ID of the first vertex of the triangle.
1326
1346
  * @param vertexId1 ID of the second vertex of the triangle.
1327
1347
  * @param vertexId2 ID of the third vertex of the triangle.
1328
- * @returns Stable face ID of the new face.
1348
+ * @returns Face ID of the new face.
1329
1349
  */
1330
1350
  AddTriangle(this: EditableMesh, vertexId0: number, vertexId1: number, vertexId2: number): number;
1331
1351
  /**
1332
- * Adds a new UV to the geometry and returns a stable UV ID.
1352
+ * Adds a new UV to the geometry and returns a UV ID.
1333
1353
  *
1334
1354
  * - **ThreadSafety**: Unsafe
1335
1355
  *
1336
1356
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#AddUV)
1337
1357
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1338
1358
  * @param uv The new UV coordinate.
1339
- * @returns Stable UV ID of the new UV.
1359
+ * @returns UV ID of the new UV.
1340
1360
  */
1341
1361
  AddUV(this: EditableMesh, uv: Vector2): number;
1342
1362
  /**
1343
- * Adds a new vertex to the geometry and returns a stable vertex ID.
1363
+ * Adds a new vertex to the geometry and returns a vertex ID.
1344
1364
  *
1345
1365
  * - **ThreadSafety**: Unsafe
1346
1366
  *
1347
1367
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#AddVertex)
1348
1368
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1349
1369
  * @param p Position in the mesh's local object space.
1350
- * @returns Stable vertex ID of the new vertex.
1370
+ * @returns Vertex ID of the new vertex.
1351
1371
  */
1352
1372
  AddVertex(this: EditableMesh, p: Vector3): number;
1353
1373
  /**
@@ -1359,7 +1379,7 @@ interface EditableMesh extends RBXObject {
1359
1379
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchAdd)
1360
1380
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1361
1381
  * @param attr The `MeshAttribute` type of element to create.
1362
- * @param data Values to initialize the new elements. An array of `Vector3` for `Vertex` or `Normal`; an array of `Vector2` for `UV`; an array of `Color3` followed by an optional array of alpha numbers for `Color`; a 2D array of vertex-ID arrays for `Face`.
1382
+ * @param data Values to initialize the new elements. An array of `Vector3` for `Vertex` or `Normal`; an array of `Vector2` for `UV`; an array of `Color3` followed by a matching array of alpha numbers (same length) for `Color`; a 2D array of vertex-ID arrays for `Face`.
1363
1383
  * @returns Ordered array of new element IDs matching the input order.
1364
1384
  */
1365
1385
  BatchAdd(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, data: Array<unknown>): Array<unknown>;
@@ -1371,7 +1391,7 @@ interface EditableMesh extends RBXObject {
1371
1391
  *
1372
1392
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetFaceAttributes)
1373
1393
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1374
- * @param attr The attribute to retrieve for each face's corners, for example `MeshAttribute.Normal`, `MeshAttribute.UV`, or `MeshAttribute.Color`.
1394
+ * @param attr The attribute to retrieve for each face's corners. Must be `MeshAttribute.Vertex`, `MeshAttribute.Normal`, `MeshAttribute.Color`, or `MeshAttribute.UV`; `MeshAttribute.Face` is not supported and throws an error.
1375
1395
  * @param faceIds Faces to query.
1376
1396
  * @returns 2D array where `result[i]` is the array of attribute IDs at the corners of `faceIds[i]`.
1377
1397
  */
@@ -1384,7 +1404,7 @@ interface EditableMesh extends RBXObject {
1384
1404
  *
1385
1405
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetValues)
1386
1406
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1387
- * @param ids IDs of the elements to read. All must be the same type.
1407
+ * @param ids IDs of the elements to read. All must be the same attribute type — vertex, normal, color, or UV. The attribute is determined by the ID type, so no `MeshAttribute` argument is needed. Mixing types, or passing face or bone IDs, throws an error.
1388
1408
  * @returns A tuple of two values. The first is an array of attribute values: `Vector3` for vertex or normal IDs, `Vector2` for UV IDs, `Color3` for color IDs. The second is `nil` for all attribute types except color, where it is an array of alpha numbers.
1389
1409
  */
1390
1410
  BatchGetValues(this: EditableMesh, ids: Array<unknown>): unknown;
@@ -1396,7 +1416,7 @@ interface EditableMesh extends RBXObject {
1396
1416
  *
1397
1417
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetVertexAttributes)
1398
1418
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1399
- * @param attr The attribute type to look up, for example `MeshAttribute.Face` to get every face that references each vertex.
1419
+ * @param attr The attribute type to look up. Must be `MeshAttribute.Face` (faces that reference each vertex), `MeshAttribute.Normal`, `MeshAttribute.Color`, or `MeshAttribute.UV`; `MeshAttribute.Vertex` is not supported and throws an error (to read vertex positions, use `BatchGetValues()`).
1400
1420
  * @param vertexIds Vertices to query.
1401
1421
  * @returns 2D array where `result[i]` is the array of attribute IDs associated with `vertexIds[i]`.
1402
1422
  */
@@ -1409,9 +1429,9 @@ interface EditableMesh extends RBXObject {
1409
1429
  *
1410
1430
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetVertexFaceAttributes)
1411
1431
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1412
- * @param attr The attribute to retrieve.
1432
+ * @param attr The attribute to retrieve. Must be `MeshAttribute.Normal`, `MeshAttribute.Color`, or `MeshAttribute.UV`; `MeshAttribute.Vertex` and `MeshAttribute.Face` are not supported and throw an error.
1413
1433
  * @param vertexIds Vertices that identify each corner.
1414
- * @param faceIds Faces that identify each corner.
1434
+ * @param faceIds Faces that identify each corner. Must be the same length as `vertexIds`.
1415
1435
  * @returns Array of attribute IDs at each corner, in the same order as the inputs.
1416
1436
  */
1417
1437
  BatchGetVertexFaceAttributes(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, vertexIds: Array<unknown>, faceIds: Array<unknown>): Array<unknown>;
@@ -1423,7 +1443,7 @@ interface EditableMesh extends RBXObject {
1423
1443
  *
1424
1444
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchRemove)
1425
1445
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1426
- * @param faceIds Face IDs to remove.
1446
+ * @param faceIds Face IDs to remove. An invalid or already-removed ID throws an error and removes nothing; duplicate IDs are collapsed to a single removal.
1427
1447
  */
1428
1448
  BatchRemove(this: EditableMesh, ids: Array<unknown>): void;
1429
1449
  /**
@@ -1434,8 +1454,8 @@ interface EditableMesh extends RBXObject {
1434
1454
  *
1435
1455
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchSetFaceAttributes)
1436
1456
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1437
- * @param faceIds Faces to update.
1438
- * @param attrIdArrays 2D array. `attrIdArrays[i]` is the list of attribute IDs for the corners of `faceIds[i]`. Each inner array must have one entry per corner of the face.
1457
+ * @param faceIds Face IDs to update. Must be the same length as `attrIdArrays`.
1458
+ * @param attrIdArrays 2D array. `attrIdArrays[i]` is the list of attribute IDs for the corners of `faceIds[i]`, in order. Each inner array must have one entry per corner of the face. All IDs must be of the same attribute type — vertex, normal, color, or UV; mixing types (or passing another ID type) throws an error.
1439
1459
  */
1440
1460
  BatchSetFaceAttributes(this: EditableMesh, faceIds: Array<unknown>, attrIdArrays: Array<unknown>): void;
1441
1461
  /**
@@ -1446,7 +1466,7 @@ interface EditableMesh extends RBXObject {
1446
1466
  *
1447
1467
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchSetValues)
1448
1468
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1449
- * @param ids IDs of the elements to write. All must be the same type.
1469
+ * @param ids IDs of the elements to write. All must be the same attribute type — vertex, normal, color, or UV. The attribute is determined by the ID type, so no `MeshAttribute` argument is needed. Mixing types, or passing face or bone IDs, throws an error.
1450
1470
  * @param values Values to assign. Type depends on the ID type: `Vector3` for vertex or normal IDs, `Vector2` for UV IDs, `Color3` or a number for color IDs. Pass `nil` for normal IDs to reset each normal to auto-computed values, equivalent to calling `ResetNormal()` on each.
1451
1471
  */
1452
1472
  BatchSetValues(this: EditableMesh, ids: Array<unknown>, values: Array<unknown>): void;
@@ -1458,9 +1478,9 @@ interface EditableMesh extends RBXObject {
1458
1478
  *
1459
1479
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchSetVertexFaceAttributes)
1460
1480
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1461
- * @param vertexIds Vertices that identify each corner.
1462
- * @param faceIds Faces that identify each corner.
1463
- * @param attrIds Attribute IDs to assign.
1481
+ * @param vertexIds Vertex IDs that identify each corner.
1482
+ * @param faceIds Face IDs that identify each corner. Must be the same length as `vertexIds`.
1483
+ * @param attrIds Attribute IDs to assign, one per pair; must be the same length as `vertexIds`. All must be the same attribute type — normal, color, or UV; passing a vertex or face ID throws an error.
1464
1484
  */
1465
1485
  BatchSetVertexFaceAttributes(this: EditableMesh, vertexIds: Array<unknown>, faceIds: Array<unknown>, attrIds: Array<unknown>): void;
1466
1486
  /**
@@ -1504,7 +1524,7 @@ interface EditableMesh extends RBXObject {
1504
1524
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#FindClosestVertex)
1505
1525
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1506
1526
  * @param toThisPoint Point position in the mesh's local object space.
1507
- * @returns Closest stable vertex ID to the specified point in space.
1527
+ * @returns Closest vertex ID to the specified point in space.
1508
1528
  */
1509
1529
  FindClosestVertex(this: EditableMesh, toThisPoint: Vector3): number;
1510
1530
  /**
@@ -1516,7 +1536,7 @@ interface EditableMesh extends RBXObject {
1516
1536
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1517
1537
  * @param center Center of the sphere in the mesh's local object space.
1518
1538
  * @param radius Radius of the sphere.
1519
- * @returns List of stable vertex IDs within the requested sphere.
1539
+ * @returns List of vertex IDs within the requested sphere.
1520
1540
  */
1521
1541
  FindVerticesWithinSphere(this: EditableMesh, center: Vector3, radius: number): Array<number>;
1522
1542
  /**
@@ -1526,7 +1546,7 @@ interface EditableMesh extends RBXObject {
1526
1546
  *
1527
1547
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetAdjacentFaces)
1528
1548
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1529
- * @param faceId
1549
+ * @param faceId Face ID for which to get adjacent faces.
1530
1550
  * @returns List of face IDs adjacent to the given face.
1531
1551
  */
1532
1552
  GetAdjacentFaces(this: EditableMesh, faceId: number): Array<unknown>;
@@ -1603,10 +1623,12 @@ interface EditableMesh extends RBXObject {
1603
1623
  *
1604
1624
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBones)
1605
1625
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1606
- * @returns List of stable bone IDs.
1626
+ * @returns List of bone IDs.
1607
1627
  */
1608
1628
  GetBones(this: EditableMesh): Array<unknown>;
1609
1629
  /**
1630
+ * Returns the center of the mesh's axis-aligned bounding box.
1631
+ *
1610
1632
  * - **ThreadSafety**: Safe
1611
1633
  *
1612
1634
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetCenter)
@@ -1622,7 +1644,7 @@ interface EditableMesh extends RBXObject {
1622
1644
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetColor)
1623
1645
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1624
1646
  * @param colorId Color ID for which to get the color.
1625
- * @returns Color for the requested stable color ID.
1647
+ * @returns Color for the requested color ID.
1626
1648
  */
1627
1649
  GetColor(this: EditableMesh, colorId: number): Color3 | undefined;
1628
1650
  /**
@@ -1633,7 +1655,7 @@ interface EditableMesh extends RBXObject {
1633
1655
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetColorAlpha)
1634
1656
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1635
1657
  * @param colorId Color ID for which to get the alpha.
1636
- * @returns Color alpha at the request stable color ID.
1658
+ * @returns Color alpha at the request color ID.
1637
1659
  */
1638
1660
  GetColorAlpha(this: EditableMesh, colorId: number): number | undefined;
1639
1661
  /**
@@ -1644,7 +1666,7 @@ interface EditableMesh extends RBXObject {
1644
1666
  *
1645
1667
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetColors)
1646
1668
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1647
- * @returns List of stable color IDs.
1669
+ * @returns List of color IDs.
1648
1670
  */
1649
1671
  GetColors(this: EditableMesh): Array<unknown>;
1650
1672
  /**
@@ -1691,7 +1713,7 @@ interface EditableMesh extends RBXObject {
1691
1713
  *
1692
1714
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceVertices)
1693
1715
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1694
- * @param faceId
1716
+ * @param faceId Face ID for which to get the vertex IDs.
1695
1717
  * @returns List of vertex IDs around the given face.
1696
1718
  */
1697
1719
  GetFaceVertices(this: EditableMesh, faceId: number): Array<unknown>;
@@ -1703,7 +1725,7 @@ interface EditableMesh extends RBXObject {
1703
1725
  *
1704
1726
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaces)
1705
1727
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1706
- * @returns List of stable face IDs.
1728
+ * @returns List of face IDs.
1707
1729
  */
1708
1730
  GetFaces(this: EditableMesh): Array<unknown>;
1709
1731
  /**
@@ -1819,7 +1841,7 @@ interface EditableMesh extends RBXObject {
1819
1841
  *
1820
1842
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetNormals)
1821
1843
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1822
- * @returns List of stable normal IDs.
1844
+ * @returns List of normal IDs.
1823
1845
  */
1824
1846
  GetNormals(this: EditableMesh): Array<unknown>;
1825
1847
  /**
@@ -1829,11 +1851,13 @@ interface EditableMesh extends RBXObject {
1829
1851
  *
1830
1852
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetPosition)
1831
1853
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1832
- * @param vertexId Stable vertex ID for which to get the position.
1854
+ * @param vertexId Vertex ID for which to get the position.
1833
1855
  * @returns Position of a vertex in the mesh's local object space.
1834
1856
  */
1835
1857
  GetPosition(this: EditableMesh, vertexId: number): Vector3;
1836
1858
  /**
1859
+ * Returns the size of the mesh's axis-aligned bounding box.
1860
+ *
1837
1861
  * - **ThreadSafety**: Safe
1838
1862
  *
1839
1863
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetSize)
@@ -1860,7 +1884,7 @@ interface EditableMesh extends RBXObject {
1860
1884
  *
1861
1885
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetUVs)
1862
1886
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1863
- * @returns List of stable UV IDs.
1887
+ * @returns List of UV IDs.
1864
1888
  */
1865
1889
  GetUVs(this: EditableMesh): Array<unknown>;
1866
1890
  /**
@@ -1893,7 +1917,7 @@ interface EditableMesh extends RBXObject {
1893
1917
  *
1894
1918
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexColors)
1895
1919
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1896
- * @param vertexId Stable vertex ID to find color IDs.
1920
+ * @param vertexId Vertex ID to find color IDs.
1897
1921
  * @returns Array of color IDs of faces attached to the given vertex.
1898
1922
  */
1899
1923
  GetVertexColors(this: EditableMesh, vertexId: number): Array<unknown>;
@@ -1904,9 +1928,9 @@ interface EditableMesh extends RBXObject {
1904
1928
  *
1905
1929
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceColor)
1906
1930
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1907
- * @param vertexId Stable vertex ID.
1908
- * @param faceId Stable face ID.
1909
- * @returns Stable color ID of the vertex/face pair.
1931
+ * @param vertexId Vertex ID.
1932
+ * @param faceId Face ID.
1933
+ * @returns Color ID of the vertex/face pair.
1910
1934
  */
1911
1935
  GetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number): number;
1912
1936
  /**
@@ -1916,9 +1940,9 @@ interface EditableMesh extends RBXObject {
1916
1940
  *
1917
1941
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceNormal)
1918
1942
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1919
- * @param vertexId Stable vertex ID.
1920
- * @param faceId Stable face ID.
1921
- * @returns Stable normal ID of the vertex/face pair.
1943
+ * @param vertexId Vertex ID.
1944
+ * @param faceId Face ID.
1945
+ * @returns Normal ID of the vertex/face pair.
1922
1946
  */
1923
1947
  GetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number): number;
1924
1948
  /**
@@ -1928,9 +1952,9 @@ interface EditableMesh extends RBXObject {
1928
1952
  *
1929
1953
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceUV)
1930
1954
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1931
- * @param vertexId Stable vertex ID.
1932
- * @param faceId Stable face ID.
1933
- * @returns Stable UV ID of the vertex/face pair.
1955
+ * @param vertexId Vertex ID.
1956
+ * @param faceId Face ID.
1957
+ * @returns UV ID of the vertex/face pair.
1934
1958
  */
1935
1959
  GetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number): number;
1936
1960
  /**
@@ -1941,7 +1965,7 @@ interface EditableMesh extends RBXObject {
1941
1965
  *
1942
1966
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaces)
1943
1967
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1944
- * @param vertexId Stable vertex ID to find faces for.
1968
+ * @param vertexId Vertex ID to find faces for.
1945
1969
  * @returns Array of face IDs attached to the given vertex.
1946
1970
  */
1947
1971
  GetVertexFaces(this: EditableMesh, vertexId: number): Array<unknown>;
@@ -1953,7 +1977,7 @@ interface EditableMesh extends RBXObject {
1953
1977
  *
1954
1978
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexNormals)
1955
1979
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1956
- * @param vertexId Stable vertex ID to find normal IDs.
1980
+ * @param vertexId Vertex ID to find normal IDs.
1957
1981
  * @returns Array of normal IDs of faces attached to the given vertex.
1958
1982
  */
1959
1983
  GetVertexNormals(this: EditableMesh, vertexId: number): Array<unknown>;
@@ -1965,18 +1989,18 @@ interface EditableMesh extends RBXObject {
1965
1989
  *
1966
1990
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexUVs)
1967
1991
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1968
- * @param vertexId Stable vertex ID to find UV IDs.
1992
+ * @param vertexId Vertex ID to find UV IDs.
1969
1993
  * @returns Array of UV IDs of faces attached to the given vertex.
1970
1994
  */
1971
1995
  GetVertexUVs(this: EditableMesh, vertexId: number): Array<unknown>;
1972
1996
  /**
1973
- * Returns all vertices as a list of stable vertex IDs.
1997
+ * Returns all vertices as a list of vertex IDs.
1974
1998
  *
1975
1999
  * - **ThreadSafety**: Safe
1976
2000
  *
1977
2001
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertices)
1978
2002
  * @param this Object which allows for the runtime creation and manipulation of meshes.
1979
- * @returns List of stable vertex IDs.
2003
+ * @returns List of vertex IDs.
1980
2004
  */
1981
2005
  GetVertices(this: EditableMesh): Array<number>;
1982
2006
  /**
@@ -2032,7 +2056,7 @@ interface EditableMesh extends RBXObject {
2032
2056
  */
2033
2057
  GetVerticesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
2034
2058
  /**
2035
- * Returns a string describing a stable ID, useful for debugging purposes.
2059
+ * Returns a string describing an ID, useful for debugging purposes.
2036
2060
  *
2037
2061
  * - **ThreadSafety**: Unsafe
2038
2062
  *
@@ -2054,6 +2078,8 @@ interface EditableMesh extends RBXObject {
2054
2078
  */
2055
2079
  MergeVertices(this: EditableMesh, mergeTolerance: number): unknown;
2056
2080
  /**
2081
+ * Casts a ray and returns the intersection point, face ID, and barycentric coordinates.
2082
+ *
2057
2083
  * - **ThreadSafety**: Safe
2058
2084
  *
2059
2085
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RaycastLocal)
@@ -2068,23 +2094,23 @@ interface EditableMesh extends RBXObject {
2068
2094
  Vector3
2069
2095
  ]>;
2070
2096
  /**
2071
- * Removes a bone using its stable bone ID.
2097
+ * Removes a bone using its bone ID.
2072
2098
  *
2073
2099
  * - **ThreadSafety**: Unsafe
2074
2100
  *
2075
2101
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RemoveBone)
2076
2102
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2077
- * @param boneId
2103
+ * @param boneId Bone ID of the bone to remove.
2078
2104
  */
2079
2105
  RemoveBone(this: EditableMesh, boneId: number): void;
2080
2106
  /**
2081
- * Removes a face using its stable face ID.
2107
+ * Removes a face using its face ID.
2082
2108
  *
2083
2109
  * - **ThreadSafety**: Unsafe
2084
2110
  *
2085
2111
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RemoveFace)
2086
2112
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2087
- * @param faceId
2113
+ * @param faceId Face ID of the face to remove.
2088
2114
  */
2089
2115
  RemoveFace(this: EditableMesh, faceId: number): void;
2090
2116
  /**
@@ -2094,7 +2120,7 @@ interface EditableMesh extends RBXObject {
2094
2120
  *
2095
2121
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RemoveUnused)
2096
2122
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2097
- * @returns All of the removed stable IDs.
2123
+ * @returns All of the removed IDs.
2098
2124
  */
2099
2125
  RemoveUnused(this: EditableMesh): Array<unknown>;
2100
2126
  /**
@@ -2104,7 +2130,7 @@ interface EditableMesh extends RBXObject {
2104
2130
  *
2105
2131
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#ResetNormal)
2106
2132
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2107
- * @param normalId Stable normal ID to reset.
2133
+ * @param normalId Normal ID to reset.
2108
2134
  */
2109
2135
  ResetNormal(this: EditableMesh, normalId: number): void;
2110
2136
  /**
@@ -2158,7 +2184,7 @@ interface EditableMesh extends RBXObject {
2158
2184
  *
2159
2185
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetColor)
2160
2186
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2161
- * @param colorId Stable color ID for which to set the color.
2187
+ * @param colorId Color ID for which to set the color.
2162
2188
  * @param color Color to set.
2163
2189
  */
2164
2190
  SetColor(this: EditableMesh, colorId: number, color: Color3): void;
@@ -2169,7 +2195,7 @@ interface EditableMesh extends RBXObject {
2169
2195
  *
2170
2196
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetColorAlpha)
2171
2197
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2172
- * @param colorId Stable color ID for which to set the color alpha.
2198
+ * @param colorId Color ID for which to set the color alpha.
2173
2199
  * @param alpha Alpha to set.
2174
2200
  */
2175
2201
  SetColorAlpha(this: EditableMesh, colorId: number, alpha: number): void;
@@ -2182,7 +2208,7 @@ interface EditableMesh extends RBXObject {
2182
2208
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFaceColors)
2183
2209
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2184
2210
  * @param faceId Face ID for which to update the vertex colors.
2185
- * @param ids List of new stable color IDs to use for the given face's vertices.
2211
+ * @param ids List of new color IDs to use for the given face's vertices.
2186
2212
  */
2187
2213
  SetFaceColors(this: EditableMesh, faceId: number, ids: Array<unknown>): void;
2188
2214
  /**
@@ -2194,7 +2220,7 @@ interface EditableMesh extends RBXObject {
2194
2220
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFaceNormals)
2195
2221
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2196
2222
  * @param faceId Face ID for which to update the vertex normals.
2197
- * @param ids List of new stable normal IDs to use for the given face's vertices.
2223
+ * @param ids List of new normal IDs to use for the given face's vertices.
2198
2224
  */
2199
2225
  SetFaceNormals(this: EditableMesh, faceId: number, ids: Array<unknown>): void;
2200
2226
  /**
@@ -2206,7 +2232,7 @@ interface EditableMesh extends RBXObject {
2206
2232
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFaceUVs)
2207
2233
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2208
2234
  * @param faceId Face ID for which to update the vertex UVs.
2209
- * @param ids List of new stable UV IDs to use for the given face's vertices.
2235
+ * @param ids List of new UV IDs to use for the given face's vertices.
2210
2236
  */
2211
2237
  SetFaceUVs(this: EditableMesh, faceId: number, ids: Array<unknown>): void;
2212
2238
  /**
@@ -2218,7 +2244,7 @@ interface EditableMesh extends RBXObject {
2218
2244
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetFaceVertices)
2219
2245
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2220
2246
  * @param faceId Face ID for which to update the vertices.
2221
- * @param ids List of new stable vertex IDs to use for the given face.
2247
+ * @param ids List of new vertex IDs to use for the given face.
2222
2248
  */
2223
2249
  SetFaceVertices(this: EditableMesh, faceId: number, ids: Array<unknown>): void;
2224
2250
  /**
@@ -2264,7 +2290,7 @@ interface EditableMesh extends RBXObject {
2264
2290
  *
2265
2291
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetNormal)
2266
2292
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2267
- * @param normalId Stable normal ID for which to set the normal vector.
2293
+ * @param normalId Normal ID for which to set the normal vector.
2268
2294
  * @param normal Normal vector to set.
2269
2295
  */
2270
2296
  SetNormal(this: EditableMesh, normalId: number, normal: Vector3): void;
@@ -2275,7 +2301,7 @@ interface EditableMesh extends RBXObject {
2275
2301
  *
2276
2302
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetPosition)
2277
2303
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2278
- * @param vertexId Stable vertex ID of the vertex to position.
2304
+ * @param vertexId Vertex ID of the vertex to position.
2279
2305
  * @param p Position in the mesh's local object space.
2280
2306
  */
2281
2307
  SetPosition(this: EditableMesh, vertexId: number, p: Vector3): void;
@@ -2319,9 +2345,9 @@ interface EditableMesh extends RBXObject {
2319
2345
  *
2320
2346
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceColor)
2321
2347
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2322
- * @param vertexId Stable vertex ID.
2323
- * @param faceId Stable face ID.
2324
- * @param colorId Stable color ID to set for the vertex/face pair.
2348
+ * @param vertexId Vertex ID.
2349
+ * @param faceId Face ID.
2350
+ * @param colorId Color ID to set for the vertex/face pair.
2325
2351
  */
2326
2352
  SetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number, colorId: number): void;
2327
2353
  /**
@@ -2331,9 +2357,9 @@ interface EditableMesh extends RBXObject {
2331
2357
  *
2332
2358
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceNormal)
2333
2359
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2334
- * @param vertexId Stable vertex ID.
2335
- * @param faceId Stable face ID.
2336
- * @param normalId Stable normal ID to set for the vertex/face pair.
2360
+ * @param vertexId Vertex ID.
2361
+ * @param faceId Face ID.
2362
+ * @param normalId Normal ID to set for the vertex/face pair.
2337
2363
  */
2338
2364
  SetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number, normalId: number): void;
2339
2365
  /**
@@ -2343,9 +2369,9 @@ interface EditableMesh extends RBXObject {
2343
2369
  *
2344
2370
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceUV)
2345
2371
  * @param this Object which allows for the runtime creation and manipulation of meshes.
2346
- * @param vertexId Stable vertex ID.
2347
- * @param faceId Stable face ID.
2348
- * @param uvId Stable UV ID to set for the vertex/face pair.
2372
+ * @param vertexId Vertex ID.
2373
+ * @param faceId Face ID.
2374
+ * @param uvId UV ID to set for the vertex/face pair.
2349
2375
  */
2350
2376
  SetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number, uvId: number): void;
2351
2377
  /**
@@ -3095,6 +3121,65 @@ interface ActivityHistoryEventService extends Instance {
3095
3121
  */
3096
3122
  readonly _nominal_ActivityHistoryEventService: unique symbol;
3097
3123
  }
3124
+ /**
3125
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdPlacement)
3126
+ */
3127
+ interface AdPlacement extends Instance {
3128
+ /**
3129
+ * **DO NOT USE!**
3130
+ *
3131
+ * This field exists to force TypeScript to recognize this as a nominal type
3132
+ * @hidden
3133
+ * @deprecated
3134
+ */
3135
+ readonly _nominal_AdPlacement: unique symbol;
3136
+ /**
3137
+ * - **ThreadSafety**: ReadSafe
3138
+ *
3139
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdPlacement#ActivationInstance)
3140
+ */
3141
+ ActivationInstance: Instance | undefined;
3142
+ /**
3143
+ * - **ThreadSafety**: ReadSafe
3144
+ *
3145
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdPlacement#AdFormat)
3146
+ */
3147
+ AdFormat: Enum.AdFormat;
3148
+ /**
3149
+ * - **ThreadSafety**: ReadSafe
3150
+ *
3151
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdPlacement#PlacementId)
3152
+ */
3153
+ PlacementId: number;
3154
+ /**
3155
+ * - **ThreadSafety**: ReadSafe
3156
+ * - **Tags**: NotReplicated
3157
+ *
3158
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdPlacement#RewardId)
3159
+ */
3160
+ readonly RewardId: string;
3161
+ /**
3162
+ * - **ThreadSafety**: ReadSafe
3163
+ * - **Tags**: NotReplicated
3164
+ *
3165
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdPlacement#RewardImageContent)
3166
+ */
3167
+ readonly RewardImageContent: Content;
3168
+ /**
3169
+ * - **ThreadSafety**: ReadSafe
3170
+ * - **Tags**: NotReplicated
3171
+ *
3172
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdPlacement#RewardName)
3173
+ */
3174
+ readonly RewardName: string;
3175
+ /**
3176
+ * - **ThreadSafety**: ReadSafe
3177
+ * - **Tags**: NotReplicated
3178
+ *
3179
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdPlacement#Visible)
3180
+ */
3181
+ readonly Visible: boolean;
3182
+ }
3098
3183
  /**
3099
3184
  * A portal that teleports players to a sponsored experience as part of immersive ads.
3100
3185
  *
@@ -4961,10 +5046,17 @@ interface AssetService extends Instance {
4961
5046
  */
4962
5047
  LoadAssetAsync(this: AssetService, assetId: number): Instance | undefined;
4963
5048
  /**
5049
+ * Allows in-experience asset creation for users by prompting a publish dialog.
5050
+ *
4964
5051
  * - **ThreadSafety**: Unsafe
4965
5052
  * - **Tags**: Yields
4966
5053
  *
4967
5054
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#PromptCreatePlatformContentAsync)
5055
+ * @param this A non-replicated service that handles asset-related queries to the Roblox web API.
5056
+ * @param player The user who submits an asset creation.
5057
+ * @param object The asset to be created. Currently can't contain scripts or nest non-public assets.
5058
+ * @param assetType The asset type. Currently can only be `AssetType.Model`.
5059
+ * @returns The `PromptCreatePlatformContentResult` and asset ID pair if successful.
4968
5060
  */
4969
5061
  PromptCreatePlatformContentAsync(this: AssetService, player: Player, object: RBXObject, assetType: CastsToEnum<Enum.AssetType>): unknown;
4970
5062
  /**
@@ -6123,8 +6215,6 @@ interface AudioEmitter extends Instance {
6123
6215
  */
6124
6216
  AudioInteractionGroup: string;
6125
6217
  /**
6126
- * Controls whether sound from this `AudioEmitter` bends around corners when acoustic simulation is active.
6127
- *
6128
6218
  * - **ThreadSafety**: ReadSafe
6129
6219
  *
6130
6220
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#DiffractionEnabled)
@@ -6147,8 +6237,6 @@ interface AudioEmitter extends Instance {
6147
6237
  */
6148
6238
  DistanceAttenuationMode: Enum.DistanceAttenuationMode;
6149
6239
  /**
6150
- * Controls whether sound from this `AudioEmitter` is muffled when obstructed by geometry.
6151
- *
6152
6240
  * - **ThreadSafety**: ReadSafe
6153
6241
  *
6154
6242
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#OcclusionEnabled)
@@ -6171,8 +6259,6 @@ interface AudioEmitter extends Instance {
6171
6259
  */
6172
6260
  PositionType: Enum.EmitterPositionType;
6173
6261
  /**
6174
- * Controls whether sound from this `AudioEmitter` receives environmental reverb when acoustic simulation is active.
6175
- *
6176
6262
  * - **ThreadSafety**: ReadSafe
6177
6263
  *
6178
6264
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioEmitter#ReverbEnabled)
@@ -6861,16 +6947,12 @@ interface AudioListener extends Instance {
6861
6947
  */
6862
6948
  AudioInteractionGroup: string;
6863
6949
  /**
6864
- * Controls whether sound heard by this `AudioListener` bends around corners when acoustic simulation is active.
6865
- *
6866
6950
  * - **ThreadSafety**: ReadSafe
6867
6951
  *
6868
6952
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#DiffractionEnabled)
6869
6953
  */
6870
6954
  DiffractionEnabled: Enum.SimulationMode;
6871
6955
  /**
6872
- * Controls whether sound heard by this `AudioListener` is muffled when obstructed by geometry.
6873
- *
6874
6956
  * - **ThreadSafety**: ReadSafe
6875
6957
  *
6876
6958
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#OcclusionEnabled)
@@ -6893,8 +6975,6 @@ interface AudioListener extends Instance {
6893
6975
  */
6894
6976
  PositionType: Enum.ListenerPositionType;
6895
6977
  /**
6896
- * Controls whether sound heard by this `AudioListener` receives environmental reverb when acoustic simulation is active.
6897
- *
6898
6978
  * - **ThreadSafety**: ReadSafe
6899
6979
  *
6900
6980
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioListener#ReverbEnabled)
@@ -8757,6 +8837,8 @@ interface AvatarCreationService extends Instance {
8757
8837
  */
8758
8838
  readonly AvatarModerationCompleted: RBXScriptSignal<(outfitId: number, moderationStatus: Enum.ModerationStatus) => void>;
8759
8839
  /**
8840
+ * Fires on the client when moderation completes for an in-experience-created outfit.
8841
+ *
8760
8842
  * - **ThreadSafety**: Unsafe
8761
8843
  *
8762
8844
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AvatarOutfitModerationCompleted)
@@ -9507,6 +9589,8 @@ interface BadgeService extends Instance {
9507
9589
  UserHasBadgeAsync(this: BadgeService, userId: number, badgeId: number): boolean;
9508
9590
  }
9509
9591
  /**
9592
+ * Base class for the configuration objects that control individual built-in `CoreGui` elements.
9593
+ *
9510
9594
  * - **Tags**: NotCreatable, NotReplicated
9511
9595
  *
9512
9596
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BaseCoreGuiConfiguration)
@@ -9521,6 +9605,8 @@ interface BaseCoreGuiConfiguration extends Instance {
9521
9605
  */
9522
9606
  readonly _nominal_BaseCoreGuiConfiguration: unique symbol;
9523
9607
  /**
9608
+ * Determines whether the built-in `CoreGui` element controlled by this configuration object is enabled.
9609
+ *
9524
9610
  * - **ThreadSafety**: ReadSafe
9525
9611
  *
9526
9612
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BaseCoreGuiConfiguration#Enabled)
@@ -9528,6 +9614,8 @@ interface BaseCoreGuiConfiguration extends Instance {
9528
9614
  Enabled: boolean;
9529
9615
  }
9530
9616
  /**
9617
+ * Controls the built-in captures view, the `CoreGui` element that lets players browse and manage screenshots and video captures they take within an experience.
9618
+ *
9531
9619
  * - **Tags**: NotCreatable, NotReplicated
9532
9620
  *
9533
9621
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CapturesViewConfiguration)
@@ -9542,6 +9630,8 @@ interface CapturesViewConfiguration extends BaseCoreGuiConfiguration {
9542
9630
  */
9543
9631
  readonly _nominal_CapturesViewConfiguration: unique symbol;
9544
9632
  /**
9633
+ * Determines whether the built-in captures view is currently open.
9634
+ *
9545
9635
  * - **ThreadSafety**: ReadSafe
9546
9636
  *
9547
9637
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CapturesViewConfiguration#Open)
@@ -9549,6 +9639,8 @@ interface CapturesViewConfiguration extends BaseCoreGuiConfiguration {
9549
9639
  Open: boolean;
9550
9640
  }
9551
9641
  /**
9642
+ * Controls the built-in player list, the `CoreGui` element that displays the players currently in the experience.
9643
+ *
9552
9644
  * - **Tags**: NotCreatable, NotReplicated
9553
9645
  *
9554
9646
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerListConfiguration)
@@ -9563,6 +9655,8 @@ interface PlayerListConfiguration extends BaseCoreGuiConfiguration {
9563
9655
  */
9564
9656
  readonly _nominal_PlayerListConfiguration: unique symbol;
9565
9657
  /**
9658
+ * Determines whether the built-in player list is currently open.
9659
+ *
9566
9660
  * - **ThreadSafety**: ReadSafe
9567
9661
  *
9568
9662
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerListConfiguration#Open)
@@ -9570,6 +9664,8 @@ interface PlayerListConfiguration extends BaseCoreGuiConfiguration {
9570
9664
  Open: boolean;
9571
9665
  }
9572
9666
  /**
9667
+ * Controls the built-in self view, the `CoreGui` element that shows a player a preview of their own character within an experience.
9668
+ *
9573
9669
  * - **Tags**: NotCreatable, NotReplicated
9574
9670
  *
9575
9671
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SelfViewConfiguration)
@@ -9584,6 +9680,8 @@ interface SelfViewConfiguration extends BaseCoreGuiConfiguration {
9584
9680
  */
9585
9681
  readonly _nominal_SelfViewConfiguration: unique symbol;
9586
9682
  /**
9683
+ * Determines whether the built-in self view is currently open.
9684
+ *
9587
9685
  * - **ThreadSafety**: ReadSafe
9588
9686
  *
9589
9687
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SelfViewConfiguration#Open)
@@ -10861,6 +10959,8 @@ interface Beam extends Instance {
10861
10959
  */
10862
10960
  Texture: ContentId;
10863
10961
  /**
10962
+ * The texture displayed on the beam. Supports [asset URIs](../../../projects/assets/index.md#asset-uris).
10963
+ *
10864
10964
  * - **ThreadSafety**: ReadSafe
10865
10965
  *
10866
10966
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Beam#TextureContent)
@@ -12124,7 +12224,7 @@ interface Pants extends Clothing {
12124
12224
  */
12125
12225
  PantsTemplate: ContentId;
12126
12226
  /**
12127
- * A `Content` property that references the pants texture image, supporting asset URIs and `EditableImage` objects.
12227
+ * Specifies the asset URI of the pants texture.
12128
12228
  *
12129
12229
  * - **ThreadSafety**: ReadSafe
12130
12230
  *
@@ -12155,7 +12255,7 @@ interface Shirt extends Clothing {
12155
12255
  */
12156
12256
  ShirtTemplate: ContentId;
12157
12257
  /**
12158
- * A `Content` property that references the shirt texture image, supporting asset URIs and `EditableImage` objects.
12258
+ * Specifies the asset URI of the shirt texture.
12159
12259
  *
12160
12260
  * - **ThreadSafety**: ReadSafe
12161
12261
  *
@@ -12194,7 +12294,7 @@ interface ShirtGraphic extends CharacterAppearance {
12194
12294
  */
12195
12295
  Graphic: ContentId;
12196
12296
  /**
12197
- * A `Content` property that references the t-shirt texture image, supporting asset URIs and `EditableImage` objects.
12297
+ * Specifies the asset URI of the t-shirt texture.
12198
12298
  *
12199
12299
  * - **ThreadSafety**: ReadSafe
12200
12300
  *
@@ -15540,8 +15640,8 @@ interface Controller extends Instance {
15540
15640
  *
15541
15641
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Controller#BindButton)
15542
15642
  * @param this The base class for controller objects, such as the `HumanoidController` object.
15543
- * @param button
15544
- * @param caption
15643
+ * @param button The `Button` to bind.
15644
+ * @param caption The text to display for the bound button.
15545
15645
  */
15546
15646
  BindButton(this: Controller, button: CastsToEnum<Enum.Button>, caption: string): void;
15547
15647
  /**
@@ -15551,7 +15651,8 @@ interface Controller extends Instance {
15551
15651
  *
15552
15652
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Controller#GetButton)
15553
15653
  * @param this The base class for controller objects, such as the `HumanoidController` object.
15554
- * @param button
15654
+ * @param button The `Button` whose pressed state to check.
15655
+ * @returns Whether the specified button is currently pressed.
15555
15656
  */
15556
15657
  GetButton(this: Controller, button: CastsToEnum<Enum.Button>): boolean;
15557
15658
  /**
@@ -15561,7 +15662,7 @@ interface Controller extends Instance {
15561
15662
  *
15562
15663
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Controller#UnbindButton)
15563
15664
  * @param this The base class for controller objects, such as the `HumanoidController` object.
15564
- * @param button
15665
+ * @param button The `Button` to unbind.
15565
15666
  */
15566
15667
  UnbindButton(this: Controller, button: CastsToEnum<Enum.Button>): void;
15567
15668
  /**
@@ -15574,6 +15675,8 @@ interface Controller extends Instance {
15574
15675
  readonly ButtonChanged: RBXScriptSignal<(button: Enum.Button) => void>;
15575
15676
  }
15576
15677
  /**
15678
+ * A `Controller` held within `ControllerService` that translates player input into movement for the user's character `Humanoid`.
15679
+ *
15577
15680
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidController)
15578
15681
  */
15579
15682
  interface HumanoidController extends Controller {
@@ -15587,6 +15690,8 @@ interface HumanoidController extends Controller {
15587
15690
  readonly _nominal_HumanoidController: unique symbol;
15588
15691
  }
15589
15692
  /**
15693
+ * Translates player input into throttle and steer axis values for a `SkateboardPlatform`.
15694
+ *
15590
15695
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SkateboardController)
15591
15696
  */
15592
15697
  interface SkateboardController extends Controller {
@@ -15626,6 +15731,8 @@ interface SkateboardController extends Controller {
15626
15731
  readonly AxisChanged: RBXScriptSignal<(axis: string) => void>;
15627
15732
  }
15628
15733
  /**
15734
+ * An object responsible for translating a seated player's directional input into throttle and steering for a `VehicleSeat`.
15735
+ *
15629
15736
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VehicleController)
15630
15737
  */
15631
15738
  interface VehicleController extends Controller {
@@ -18277,6 +18384,21 @@ interface Explosion extends Instance {
18277
18384
  */
18278
18385
  readonly Hit: RBXScriptSignal<(part: BasePart, distance: number) => void>;
18279
18386
  }
18387
+ /**
18388
+ * - **Tags**: NotCreatable, Service, NotReplicated
18389
+ *
18390
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ExternalIdentityService)
18391
+ */
18392
+ interface ExternalIdentityService extends Instance {
18393
+ /**
18394
+ * **DO NOT USE!**
18395
+ *
18396
+ * This field exists to force TypeScript to recognize this as a nominal type
18397
+ * @hidden
18398
+ * @deprecated
18399
+ */
18400
+ readonly _nominal_ExternalIdentityService: unique symbol;
18401
+ }
18280
18402
  /**
18281
18403
  * - **Tags**: NotCreatable, Service, NotReplicated
18282
18404
  *
@@ -20222,6 +20344,7 @@ interface GroupService extends Instance {
20222
20344
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GroupService#GetAlliesAsync)
20223
20345
  * @param this GroupService is a service that allows developers to fetch information about a Roblox group from within a game.
20224
20346
  * @param groupId The group's ID.
20347
+ * @returns A `StandardPages` object containing group information tables for each of the specified group's allies.
20225
20348
  */
20226
20349
  GetAlliesAsync(this: GroupService, groupId: number): StandardPages<GroupInfo>;
20227
20350
  /**
@@ -20233,6 +20356,7 @@ interface GroupService extends Instance {
20233
20356
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GroupService#GetEnemiesAsync)
20234
20357
  * @param this GroupService is a service that allows developers to fetch information about a Roblox group from within a game.
20235
20358
  * @param groupId The group's ID.
20359
+ * @returns A `StandardPages` object containing group information tables for each of the specified group's enemies.
20236
20360
  */
20237
20361
  GetEnemiesAsync(this: GroupService, groupId: number): StandardPages<GroupInfo>;
20238
20362
  /**
@@ -20269,7 +20393,7 @@ interface GroupService extends Instance {
20269
20393
  * @param this GroupService is a service that allows developers to fetch information about a Roblox group from within a game.
20270
20394
  * @param userId The user's ID.
20271
20395
  * @param groupId The group's ID.
20272
- * @returns A table with two fields: `IsMember` (boolean) and `Roles` (array of public role tables). Each role table contains `Id` (int64), `Name` (string), and `Rank` (int). The array is ordered as returned by the backend.
20396
+ * @returns A table with two fields: `IsMember` (boolean) and `Roles` (array of public role tables). Each role table contains `Id` (integer), `Name` (string), and `Rank` (integer). The array is ordered from highest to lowest role.
20273
20397
  */
20274
20398
  GetRolesInGroupAsync(this: GroupService, userId: User, groupId: number): unknown;
20275
20399
  /**
@@ -20688,6 +20812,8 @@ interface GuiObject extends GuiBase2d {
20688
20812
  */
20689
20813
  SizeConstraint: Enum.SizeConstraint;
20690
20814
  /**
20815
+ * **Deprecated:** This property is deprecated and indexing it will return `BackgroundTransparency`.
20816
+ *
20691
20817
  * A mixed property of `BackgroundTransparency` and `TextTransparency`.
20692
20818
  *
20693
20819
  * - **ThreadSafety**: ReadSafe
@@ -20715,8 +20841,14 @@ interface GuiObject extends GuiBase2d {
20715
20841
  */
20716
20842
  ZIndex: number;
20717
20843
  /**
20844
+ * **Deprecated:** This function is deprecated in favor of using `TweenService`, which allows for better customization using an object-oriented and event-based approach. - The `easingDirection`, `easingStyle`, and `time` parameters are handled by a `TweenInfo`
20845
+ * - The `override` parameter is no longer relevant; tweens always override previous tweens on the same property.
20846
+ * - The `callback` parameter is better suited by the `Tween.Completed` event. The `PlaybackState` enum passed by that event provides a more detailed description of the tween's completion state.
20847
+ *
20718
20848
  * Smoothly moves a GUI to a new `UDim2`.
20719
20849
  *
20850
+ *
20851
+ *
20720
20852
  * - **ThreadSafety**: Unsafe
20721
20853
  * - **Tags**:
20722
20854
  *
@@ -20734,8 +20866,14 @@ interface GuiObject extends GuiBase2d {
20734
20866
  */
20735
20867
  TweenPosition(this: GuiObject, endPosition: UDim2, easingDirection?: CastsToEnum<Enum.EasingDirection>, easingStyle?: CastsToEnum<Enum.EasingStyle>, time?: number, override?: boolean, callback?: (finishedTween: Enum.TweenStatus) => void): boolean;
20736
20868
  /**
20869
+ * **Deprecated:** This function is deprecated in favor of using `TweenService`, which allows for better customization using an object-oriented and event-based approach. - The `easingDirection`, `easingStyle`, and `time` parameters are handled by a `TweenInfo`
20870
+ * - The `override` parameter is no longer relevant; tweens always override previous tweens on the same property.
20871
+ * - The `callback` parameter is better suited by the `Tween.Completed` event. The `PlaybackState` enum passed by that event provides a more detailed description of the tween's completion state.
20872
+ *
20737
20873
  * Smoothly resizes a `GuiObject` to a new `UDim2`.
20738
20874
  *
20875
+ *
20876
+ *
20739
20877
  * - **ThreadSafety**: Unsafe
20740
20878
  * - **Tags**:
20741
20879
  *
@@ -20753,8 +20891,14 @@ interface GuiObject extends GuiBase2d {
20753
20891
  */
20754
20892
  TweenSize(this: GuiObject, endSize: UDim2, easingDirection?: CastsToEnum<Enum.EasingDirection>, easingStyle?: CastsToEnum<Enum.EasingStyle>, time?: number, override?: boolean, callback?: (finishedTween: Enum.TweenStatus) => void): boolean;
20755
20893
  /**
20894
+ * **Deprecated:** This function is deprecated in favor of using `TweenService`, which allows for better customization using an object-oriented and event-based approach. - The `easingDirection`, `easingStyle`, and `time` parameters are handled by a `TweenInfo`
20895
+ * - The `override` parameter is no longer relevant; tweens always override previous tweens on the same property.
20896
+ * - The `callback` parameter is better suited by the `Tween.Completed` event. The `PlaybackState` enum passed by that event provides a more detailed description of the tween's completion state.
20897
+ *
20756
20898
  * Smoothly moves a GUI to a new size and position.
20757
20899
  *
20900
+ *
20901
+ *
20758
20902
  * - **ThreadSafety**: Unsafe
20759
20903
  * - **Tags**:
20760
20904
  *
@@ -25210,6 +25354,8 @@ interface HeatmapService extends Instance {
25210
25354
  readonly _nominal_HeatmapService: unique symbol;
25211
25355
  }
25212
25356
  /**
25357
+ * A Studio-only service that backs the Terrain Editor's heightmap import tool, converting heightmap and colormap images into voxel `Terrain`.
25358
+ *
25213
25359
  * - **Tags**: Service, NotReplicated
25214
25360
  *
25215
25361
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HeightmapImporterService)
@@ -31128,8 +31274,8 @@ interface MarketplaceService extends Instance {
31128
31274
  *
31129
31275
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptBundlePurchase)
31130
31276
  * @param this The service responsible for in-experience transactions.
31131
- * @param player
31132
- * @param bundleId
31277
+ * @param player The `Player` to prompt.
31278
+ * @param bundleId The ID of the bundle to purchase.
31133
31279
  */
31134
31280
  PromptBundlePurchase(this: MarketplaceService, player: Player, bundleId: number): void;
31135
31281
  /**
@@ -31139,8 +31285,8 @@ interface MarketplaceService extends Instance {
31139
31285
  *
31140
31286
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptCancelSubscription)
31141
31287
  * @param this The service responsible for in-experience transactions.
31142
- * @param user
31143
- * @param subscriptionId
31288
+ * @param user The `Player` to prompt.
31289
+ * @param subscriptionId The ID of the subscription to cancel.
31144
31290
  */
31145
31291
  PromptCancelSubscription(this: MarketplaceService, user: Player, subscriptionId: string): void;
31146
31292
  /**
@@ -31150,8 +31296,8 @@ interface MarketplaceService extends Instance {
31150
31296
  *
31151
31297
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptGamePassPurchase)
31152
31298
  * @param this The service responsible for in-experience transactions.
31153
- * @param player
31154
- * @param gamePassId
31299
+ * @param player The `Player` to prompt.
31300
+ * @param gamePassId The pass ID to purchase. This is the `TargetId` returned by `GetProductInfo()` when `InfoType` is `GamePass`. It is not the pass's asset ID and not its `ProductId`.
31155
31301
  */
31156
31302
  PromptGamePassPurchase(this: MarketplaceService, player: Player, gamePassId: number): void;
31157
31303
  /**
@@ -31176,10 +31322,10 @@ interface MarketplaceService extends Instance {
31176
31322
  *
31177
31323
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptProductPurchase)
31178
31324
  * @param this The service responsible for in-experience transactions.
31179
- * @param player
31180
- * @param productId
31181
- * @param equipIfPurchased
31182
- * @param currencyType
31325
+ * @param player The `Player` to prompt.
31326
+ * @param productId The ID of the developer product to purchase.
31327
+ * @param equipIfPurchased Ignored.
31328
+ * @param currencyType Ignored.
31183
31329
  */
31184
31330
  PromptProductPurchase(this: MarketplaceService, player: Player, productId: number, equipIfPurchased?: boolean, currencyType?: CastsToEnum<Enum.CurrencyType>): void;
31185
31331
  /**
@@ -31189,9 +31335,9 @@ interface MarketplaceService extends Instance {
31189
31335
  *
31190
31336
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptPurchase)
31191
31337
  * @param this The service responsible for in-experience transactions.
31192
- * @param player
31193
- * @param assetId
31194
- * @param equipIfPurchased
31338
+ * @param player The `Player` to prompt.
31339
+ * @param assetId The ID of the asset to purchase.
31340
+ * @param equipIfPurchased Ignored.
31195
31341
  * @param currencyType Ignored.
31196
31342
  */
31197
31343
  PromptPurchase(this: MarketplaceService, player: Player, assetId: number, equipIfPurchased?: boolean, currencyType?: CastsToEnum<Enum.CurrencyType>): void;
@@ -31224,6 +31370,7 @@ interface MarketplaceService extends Instance {
31224
31370
  *
31225
31371
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#GetDeveloperProductsAsync)
31226
31372
  * @param this The service responsible for in-experience transactions.
31373
+ * @returns A `Pages` object whose entries describe the current experience's developer products.
31227
31374
  */
31228
31375
  GetDeveloperProductsAsync(this: MarketplaceService): StandardPages<{
31229
31376
  Description: string;
@@ -31289,6 +31436,7 @@ interface MarketplaceService extends Instance {
31289
31436
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#GetSubscriptionProductInfoAsync)
31290
31437
  * @param this The service responsible for in-experience transactions.
31291
31438
  * @param subscriptionId The ID of the subscription to check.
31439
+ * @returns A dictionary containing the subscription product information described in the following table.
31292
31440
  */
31293
31441
  GetSubscriptionProductInfoAsync(this: MarketplaceService, subscriptionId: string): SubscriptionInfo;
31294
31442
  /**
@@ -31301,6 +31449,7 @@ interface MarketplaceService extends Instance {
31301
31449
  * @param this The service responsible for in-experience transactions.
31302
31450
  * @param user The `Player` object whose subscription details you want to check.
31303
31451
  * @param subscriptionId The ID of the subscription to check.
31452
+ * @returns A dictionary containing the user's subscription details described in the following table.
31304
31453
  */
31305
31454
  GetUserSubscriptionDetailsAsync(this: MarketplaceService, user: Player, subscriptionId: string): UserSubscriptionDetails;
31306
31455
  /**
@@ -31311,8 +31460,9 @@ interface MarketplaceService extends Instance {
31311
31460
  *
31312
31461
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#GetUserSubscriptionPaymentHistoryAsync)
31313
31462
  * @param this The service responsible for in-experience transactions.
31314
- * @param user
31315
- * @param subscriptionId
31463
+ * @param user The `Player` whose subscription payment history you want to retrieve.
31464
+ * @param subscriptionId The ID of the subscription whose payment history you want to retrieve.
31465
+ * @returns An array of payment-history entries, ordered from most recent to least recent, as described in the following table.
31316
31466
  */
31317
31467
  GetUserSubscriptionPaymentHistoryAsync(this: MarketplaceService, user: Player, subscriptionId: string): Array<UserSubscriptionPaymentHistory>;
31318
31468
  /**
@@ -31325,6 +31475,7 @@ interface MarketplaceService extends Instance {
31325
31475
  * @param this The service responsible for in-experience transactions.
31326
31476
  * @param user The `Player` object whose subscription status you want to check.
31327
31477
  * @param subscriptionId The ID of the subscription to check for.
31478
+ * @returns A dictionary containing the user's subscription status described in the following table.
31328
31479
  */
31329
31480
  GetUserSubscriptionStatusAsync(this: MarketplaceService, user: Player, subscriptionId: string): UserSubscriptionStatus;
31330
31481
  /**
@@ -31461,6 +31612,7 @@ interface MarketplaceService extends Instance {
31461
31612
  * @param this The service responsible for in-experience transactions.
31462
31613
  * @param userId The `UserId` of the `Player` whose inventory you're checking.
31463
31614
  * @param gamePassId The pass ID you want to check for. Not to be confused with an asset ID.
31615
+ * @returns Whether the user owns the pass.
31464
31616
  */
31465
31617
  UserOwnsGamePassAsync(this: MarketplaceService, userId: User, gamePassId: number): boolean;
31466
31618
  /**
@@ -31472,6 +31624,8 @@ interface MarketplaceService extends Instance {
31472
31624
  */
31473
31625
  readonly PromptBulkPurchaseFinished: RBXScriptSignal<(player: Player, status: Enum.MarketplaceBulkPurchasePromptStatus, results: PromptBulkPurchaseFinishedResults) => void>;
31474
31626
  /**
31627
+ * Fires when a bundle purchase prompt closes.
31628
+ *
31475
31629
  * - **ThreadSafety**: Unsafe
31476
31630
  *
31477
31631
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptBundlePurchaseFinished)
@@ -32202,8 +32356,6 @@ interface MetaBreakpointManager extends Instance {
32202
32356
  readonly _nominal_MetaBreakpointManager: unique symbol;
32203
32357
  }
32204
32358
  /**
32205
- * A service that connects the engine's MicroProfiler to the data model, feeding context into profile dumps and letting privileged scripts capture them to disk.
32206
- *
32207
32359
  * - **Tags**: NotCreatable, Service, NotReplicated
32208
32360
  *
32209
32361
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MicroProfilerService)
@@ -32218,52 +32370,26 @@ interface MicroProfilerService extends Instance {
32218
32370
  */
32219
32371
  readonly _nominal_MicroProfilerService: unique symbol;
32220
32372
  /**
32221
- * Reads profiling capture data from a slot into a provided Luau buffer.
32222
- *
32223
32373
  * - **ThreadSafety**: Unsafe
32224
32374
  * - **Tags**: CustomLuaState
32225
32375
  *
32226
32376
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MicroProfilerService#GetDataInRange)
32227
- * @param this A service that connects the engine's MicroProfiler to the data model, feeding context into profile dumps and letting privileged scripts capture them to disk.
32228
- * @param slotId
32229
- * @param offset
32230
- * @param size
32231
- * @param destBuffer
32232
- * @param destBufferOffset
32233
- * @returns The number of bytes actually copied into `destBuffer` starting at `destBufferOffset`. Returns `0` if the read fails.
32234
32377
  */
32235
32378
  GetDataInRange(this: MicroProfilerService, slotId: number, offset: number, size: number, destBuffer: buffer, destBufferOffset: number): number;
32236
32379
  /**
32237
- * Returns the total byte count of profiling data stored in a slot.
32238
- *
32239
32380
  * - **ThreadSafety**: Unsafe
32240
32381
  *
32241
32382
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MicroProfilerService#GetDataSize)
32242
- * @param this A service that connects the engine's MicroProfiler to the data model, feeding context into profile dumps and letting privileged scripts capture them to disk.
32243
- * @param slotId
32244
- * @returns The total size, in bytes, of the profiling data available in the slot. Returns `0` when no data is available.
32245
32383
  */
32246
32384
  GetDataSize(this: MicroProfilerService, slotId: number): number;
32247
32385
  /**
32248
- * Dispatches a binary command to the MicroProfiler control channel and writes the response into a buffer.
32249
- *
32250
32386
  * - **ThreadSafety**: Unsafe
32251
32387
  * - **Tags**: CustomLuaState
32252
32388
  *
32253
32389
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MicroProfilerService#ProcessCommand)
32254
- * @param this A service that connects the engine's MicroProfiler to the data model, feeding context into profile dumps and letting privileged scripts capture them to disk.
32255
- * @param cmdBuf
32256
- * @param cmdOffset
32257
- * @param cmdSize
32258
- * @param respBuf
32259
- * @param respOffset
32260
- * @param respSize
32261
- * @returns The number of bytes written into `respBuf` as the command response. Returns `0` if the command is not run.
32262
32390
  */
32263
32391
  ProcessCommand(this: MicroProfilerService, cmdBuf: buffer, cmdOffset: number, cmdSize: number, respBuf: buffer, respOffset: number, respSize: number): number;
32264
32392
  /**
32265
- * Fires when profiling data in a slot has changed since the last frame.
32266
- *
32267
32393
  * - **ThreadSafety**: Unsafe
32268
32394
  *
32269
32395
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MicroProfilerService#DataChanged)
@@ -33911,6 +34037,8 @@ interface BasePart extends PVInstance {
33911
34037
  readonly Touched: RBXScriptSignal<(otherPart: BasePart) => void>;
33912
34038
  }
33913
34039
  /**
34040
+ * A type of `BasePart` that has a corner wedge shape.
34041
+ *
33914
34042
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CornerWedgePart)
33915
34043
  */
33916
34044
  interface CornerWedgePart extends BasePart {
@@ -35652,6 +35780,7 @@ interface Model extends PVInstance {
35652
35780
  *
35653
35781
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Model#GetModelCFrame)
35654
35782
  * @param this Models are container objects, meaning they group objects together. They are best used to hold collections of `BaseParts` and have a number of functions that extend their functionality.
35783
+ * @returns A `CFrame` representing a central position in the model.
35655
35784
  *
35656
35785
  * @deprecated GetPrimaryPartCFrame
35657
35786
  */
@@ -35666,6 +35795,7 @@ interface Model extends PVInstance {
35666
35795
  *
35667
35796
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Model#GetModelSize)
35668
35797
  * @param this Models are container objects, meaning they group objects together. They are best used to hold collections of `BaseParts` and have a number of functions that extend their functionality.
35798
+ * @returns The `Vector3` size of the `Model`.
35669
35799
  *
35670
35800
  * @deprecated GetExtentsSize
35671
35801
  */
@@ -35690,6 +35820,7 @@ interface Model extends PVInstance {
35690
35820
  *
35691
35821
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Model#GetPrimaryPartCFrame)
35692
35822
  * @param this Models are container objects, meaning they group objects together. They are best used to hold collections of `BaseParts` and have a number of functions that extend their functionality.
35823
+ * @returns The `CFrame` of the model's `Model.PrimaryPart`.
35693
35824
  *
35694
35825
  * @deprecated GetPivot
35695
35826
  */
@@ -35759,7 +35890,7 @@ interface Model extends PVInstance {
35759
35890
  *
35760
35891
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Model#ScaleTo)
35761
35892
  * @param this Models are container objects, meaning they group objects together. They are best used to hold collections of `BaseParts` and have a number of functions that extend their functionality.
35762
- * @param newScaleFactor
35893
+ * @param newScaleFactor The new scale factor for the model, which must be a positive non-zero number. A value of 1 represents the model's original size.
35763
35894
  */
35764
35895
  ScaleTo(this: Model, newScaleFactor: number): void;
35765
35896
  /**
@@ -36150,15 +36281,26 @@ interface WorldRoot extends Model {
36150
36281
  */
36151
36282
  BulkMoveTo(this: WorldRoot, partList: Array<Instance>, cframeList: Array<unknown>, eventMode?: CastsToEnum<Enum.BulkMoveMode>): void;
36152
36283
  /**
36284
+ * Sets the collision status between two groups in this world.
36285
+ *
36153
36286
  * - **ThreadSafety**: Unsafe
36154
36287
  *
36155
36288
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#CollisionGroupSetCollidable)
36289
+ * @param this Base class for handling physics simulation and 3D spatial queries.
36290
+ * @param name1
36291
+ * @param name2
36292
+ * @param collidable
36156
36293
  */
36157
36294
  CollisionGroupSetCollidable(this: WorldRoot, name1: string, name2: string, collidable: boolean): void;
36158
36295
  /**
36296
+ * Returns whether the two groups will collide in this world.
36297
+ *
36159
36298
  * - **ThreadSafety**: Unsafe
36160
36299
  *
36161
36300
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#CollisionGroupsAreCollidable)
36301
+ * @param this Base class for handling physics simulation and 3D spatial queries.
36302
+ * @param name1
36303
+ * @param name2
36162
36304
  */
36163
36305
  CollisionGroupsAreCollidable(this: WorldRoot, name1: string, name2: string): boolean;
36164
36306
  /**
@@ -36287,9 +36429,12 @@ interface WorldRoot extends Model {
36287
36429
  */
36288
36430
  FindPartsInRegion3WithWhiteList(this: WorldRoot, region: Region3, whitelistDescendantsTable: Array<Instance>, maxParts?: number): Array<BasePart>;
36289
36431
  /**
36432
+ * Returns the maximum number of collision groups in this world.
36433
+ *
36290
36434
  * - **ThreadSafety**: Unsafe
36291
36435
  *
36292
36436
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#GetMaxCollisionGroups)
36437
+ * @param this Base class for handling physics simulation and 3D spatial queries.
36293
36438
  */
36294
36439
  GetMaxCollisionGroups(this: WorldRoot): number;
36295
36440
  /**
@@ -36334,15 +36479,22 @@ interface WorldRoot extends Model {
36334
36479
  */
36335
36480
  GetPartsInPart(this: WorldRoot, part: BasePart, overlapParams?: OverlapParams): Array<BasePart>;
36336
36481
  /**
36482
+ * Returns a table with info on all of this world's collision groups.
36483
+ *
36337
36484
  * - **ThreadSafety**: Unsafe
36338
36485
  *
36339
36486
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#GetRegisteredCollisionGroups)
36487
+ * @param this Base class for handling physics simulation and 3D spatial queries.
36340
36488
  */
36341
36489
  GetRegisteredCollisionGroups(this: WorldRoot): Array<unknown>;
36342
36490
  /**
36491
+ * Checks if a collision group is registered in this world.
36492
+ *
36343
36493
  * - **ThreadSafety**: Unsafe
36344
36494
  *
36345
36495
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#IsCollisionGroupRegistered)
36496
+ * @param this Base class for handling physics simulation and 3D spatial queries.
36497
+ * @param name
36346
36498
  */
36347
36499
  IsCollisionGroupRegistered(this: WorldRoot, name: string): boolean;
36348
36500
  /**
@@ -36393,15 +36545,24 @@ interface WorldRoot extends Model {
36393
36545
  */
36394
36546
  Raycast(this: WorldRoot, origin: Vector3, direction: Vector3, raycastParams?: RaycastParams): RaycastResult | undefined;
36395
36547
  /**
36548
+ * Registers a new collision group in this world with the given name.
36549
+ *
36396
36550
  * - **ThreadSafety**: Unsafe
36397
36551
  *
36398
36552
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#RegisterCollisionGroup)
36553
+ * @param this Base class for handling physics simulation and 3D spatial queries.
36554
+ * @param name
36399
36555
  */
36400
36556
  RegisterCollisionGroup(this: WorldRoot, name: string): void;
36401
36557
  /**
36558
+ * Renames specified collision group in this world.
36559
+ *
36402
36560
  * - **ThreadSafety**: Unsafe
36403
36561
  *
36404
36562
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#RenameCollisionGroup)
36563
+ * @param this Base class for handling physics simulation and 3D spatial queries.
36564
+ * @param from
36565
+ * @param to
36405
36566
  */
36406
36567
  RenameCollisionGroup(this: WorldRoot, from: string, to: string): void;
36407
36568
  /**
@@ -36432,9 +36593,13 @@ interface WorldRoot extends Model {
36432
36593
  */
36433
36594
  Spherecast(this: WorldRoot, position: Vector3, radius: number, direction: Vector3, raycastParams?: RaycastParams): RaycastResult | undefined;
36434
36595
  /**
36596
+ * Unregisters the collision group for the given name in this world.
36597
+ *
36435
36598
  * - **ThreadSafety**: Unsafe
36436
36599
  *
36437
36600
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#UnregisterCollisionGroup)
36601
+ * @param this Base class for handling physics simulation and 3D spatial queries.
36602
+ * @param name
36438
36603
  */
36439
36604
  UnregisterCollisionGroup(this: WorldRoot, name: string): void;
36440
36605
  }
@@ -36549,6 +36714,8 @@ interface Workspace extends WorldRoot {
36549
36714
  /**
36550
36715
  * **Deprecated:** This property should not be used for new work.
36551
36716
  *
36717
+ * Deprecated setting that configured the interpolation throttling mode; it no longer takes effect.
36718
+ *
36552
36719
  * - **ThreadSafety**: ReadSafe
36553
36720
  * - **Tags**: Hidden, NotReplicated
36554
36721
  *
@@ -36669,7 +36836,7 @@ interface Workspace extends WorldRoot {
36669
36836
  readonly PersistentLoaded: RBXScriptSignal<(player: Player) => void>;
36670
36837
  }
36671
36838
  /**
36672
- * Extends limited physics for its children on to a parent `ViewportFrame`.
36839
+ * Extends limited physics to its children.
36673
36840
  *
36674
36841
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldModel)
36675
36842
  */
@@ -36683,6 +36850,8 @@ interface WorldModel extends WorldRoot {
36683
36850
  */
36684
36851
  readonly _nominal_WorldModel: unique symbol;
36685
36852
  /**
36853
+ * Determines whether this `WorldModel` uses `Workspace` collision groups or its own independent collision groups for queries.
36854
+ *
36686
36855
  * - **ThreadSafety**: ReadSafe
36687
36856
  *
36688
36857
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldModel#UseWorkspaceCollisionGroups)
@@ -37358,6 +37527,8 @@ interface ParticleEmitter extends Instance {
37358
37527
  */
37359
37528
  Texture: ContentId;
37360
37529
  /**
37530
+ * The image rendered on particles. Supports [asset URIs](../../../projects/assets/index.md#asset-uris).
37531
+ *
37361
37532
  * - **ThreadSafety**: ReadSafe
37362
37533
  *
37363
37534
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ParticleEmitter#TextureContent)
@@ -38841,7 +39012,7 @@ interface Player extends Instance {
38841
39012
  */
38842
39013
  GetRankInGroup(this: Player, groupId: number): number;
38843
39014
  /**
38844
- * **Deprecated:** This method only returns a single role rank and may produce arbitrary results when a user holds multiple roles. Use `GroupService:GetRolesInGroupAsync()` instead, which returns all roles.
39015
+ * **Deprecated:** This method returns only the rank value of the member's highest public role. Use `GroupService:GetRolesInGroupAsync()` instead, which returns all public roles.
38845
39016
  *
38846
39017
  * Returns the player's rank in the group as an integer.
38847
39018
  *
@@ -38873,7 +39044,7 @@ interface Player extends Instance {
38873
39044
  */
38874
39045
  GetRoleInGroup(this: Player, groupId: number): string;
38875
39046
  /**
38876
- * **Deprecated:** This method only returns a single role name and may produce arbitrary results when a user holds multiple roles. Use `GroupService:GetRolesInGroupAsync()` instead, which returns all roles.
39047
+ * **Deprecated:** This method returns only the member's highest public role. Use `GroupService:GetRolesInGroupAsync()` instead, which returns all public roles.
38877
39048
  *
38878
39049
  * Returns the player's role in the group as a string, or `Guest` if the player isn't part of the group.
38879
39050
  *
@@ -40765,6 +40936,27 @@ interface PublishService extends Instance {
40765
40936
  */
40766
40937
  readonly _nominal_PublishService: unique symbol;
40767
40938
  }
40939
+ /**
40940
+ * - **Tags**: NotCreatable, Service, NotReplicated
40941
+ *
40942
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/QueueService)
40943
+ */
40944
+ interface QueueService extends Instance {
40945
+ /**
40946
+ * **DO NOT USE!**
40947
+ *
40948
+ * This field exists to force TypeScript to recognize this as a nominal type
40949
+ * @hidden
40950
+ * @deprecated
40951
+ */
40952
+ readonly _nominal_QueueService: unique symbol;
40953
+ /**
40954
+ * - **ThreadSafety**: Unsafe
40955
+ *
40956
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/QueueService#GetStandardQueue)
40957
+ */
40958
+ GetStandardQueue(this: QueueService, name: string): StandardQueue;
40959
+ }
40768
40960
  /**
40769
40961
  * - **Tags**: NotReplicated
40770
40962
  *
@@ -41057,6 +41249,8 @@ interface RecommendationService extends Instance {
41057
41249
  UpdateItemAsync(this: RecommendationService, updateRecommendationItemRequest: object): void;
41058
41250
  }
41059
41251
  /**
41252
+ * A service that allows scripts to query the engine's API at runtime for information about classes, properties, methods, and events.
41253
+ *
41060
41254
  * - **Tags**: NotCreatable, Service, NotReplicated
41061
41255
  *
41062
41256
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService)
@@ -41077,7 +41271,7 @@ interface ReflectionService extends Instance {
41077
41271
  * - **Tags**: CustomLuaState
41078
41272
  *
41079
41273
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClass)
41080
- * @param this
41274
+ * @param this A service that allows scripts to query the engine's API at runtime for information about classes, properties, methods, and events.
41081
41275
  * @param className The name of the class for which you wish to retrieve information.
41082
41276
  * @param filter An optional filter to restrict or expand the set of classes that this method can return and change the method's behavior.
41083
41277
  * @returns A `ReflectedClass` dictionary with reflection information if the class exists; otherwise, `nil`.
@@ -41090,7 +41284,7 @@ interface ReflectionService extends Instance {
41090
41284
  * - **Tags**: CustomLuaState
41091
41285
  *
41092
41286
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetClasses)
41093
- * @param this
41287
+ * @param this A service that allows scripts to query the engine's API at runtime for information about classes, properties, methods, and events.
41094
41288
  * @param filter An optional filter to restrict or expand the set of classes that this method can return and change the method's behavior.
41095
41289
  * @returns A list of `ReflectedClass` dictionaries with reflection information for each class that matches the filter criteria.
41096
41290
  */
@@ -41102,7 +41296,7 @@ interface ReflectionService extends Instance {
41102
41296
  * - **Tags**: CustomLuaState
41103
41297
  *
41104
41298
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetEventsOfClass)
41105
- * @param this
41299
+ * @param this A service that allows scripts to query the engine's API at runtime for information about classes, properties, methods, and events.
41106
41300
  * @param className The name of the class for which you wish to retrieve events.
41107
41301
  * @param filter An optional filter to restrict or expand the set of events that this method can return and change the method's behavior.
41108
41302
  * @returns A list of `ReflectedEvent` dictionaries with reflection information for each event of the class that matches the filter criteria.
@@ -41115,7 +41309,7 @@ interface ReflectionService extends Instance {
41115
41309
  * - **Tags**: CustomLuaState
41116
41310
  *
41117
41311
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetMethodsOfClass)
41118
- * @param this
41312
+ * @param this A service that allows scripts to query the engine's API at runtime for information about classes, properties, methods, and events.
41119
41313
  * @param className The name of the class for which you wish to retrieve methods.
41120
41314
  * @param filter An optional filter to restrict or expand the set of methods that this method can return and change the method's behavior.
41121
41315
  * @returns A list of `ReflectedMethod` dictionaries with reflection information for each method of the class that matches the filter criteria.
@@ -41128,7 +41322,7 @@ interface ReflectionService extends Instance {
41128
41322
  * - **Tags**: CustomLuaState
41129
41323
  *
41130
41324
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ReflectionService#GetPropertiesOfClass)
41131
- * @param this
41325
+ * @param this A service that allows scripts to query the engine's API at runtime for information about classes, properties, methods, and events.
41132
41326
  * @param className The name of the class for which you wish to retrieve properties.
41133
41327
  * @param filter An optional filter to restrict or expand the set of properties that this method can return and change the method's behavior.
41134
41328
  * @returns A list of `ReflectedProperty` dictionaries with reflection information for each property of the class that matches the filter criteria.
@@ -41622,9 +41816,16 @@ interface RunService extends Instance {
41622
41816
  */
41623
41817
  readonly FrameNumber: number;
41624
41818
  /**
41819
+ * Binds a custom function to be called at a fixed frequency before Animators update when fixed simulation is enabled, or immediately before `BindToSimulation` callbacks otherwise.
41820
+ *
41625
41821
  * - **ThreadSafety**: Unsafe
41626
41822
  *
41627
41823
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#BindToAnimation)
41824
+ * @param this Service responsible for all runtime activity and progression of time.
41825
+ * @param function The function to call. This function will be passed one parameter called `deltaTime`, which shows the elapsed time since the callback's previous invocation.
41826
+ * @param frequency Optional `StepFrequency` value indicating the frequency at which to call the bound function. Defaults to `StepFrequency.Hz30`.
41827
+ * @param priority Optional priority of the binding as an integer; it determines the order in which bound functions are called within a simulation step. Lower numbers are called first. If two bindings have the same priority, the order between them is unspecified. Defaults to 2000.
41828
+ * @returns A `RBXScriptConnection` that can be disconnected to unregister the callback.
41628
41829
  */
41629
41830
  BindToAnimation(this: RunService, callback: Callback, frequency?: CastsToEnum<Enum.StepFrequency>, priority?: number): RBXScriptConnection;
41630
41831
  /**
@@ -42108,8 +42309,6 @@ interface SyncScriptBuilder extends ScriptBuilder {
42108
42309
  */
42109
42310
  PackAsSource: boolean;
42110
42311
  /**
42111
- * **Deprecated:**
42112
- *
42113
42312
  * - **ThreadSafety**: ReadSafe
42114
42313
  * - **Tags**:
42115
42314
  *
@@ -43082,7 +43281,8 @@ interface UserSettings extends GenericSettings<{
43082
43281
  *
43083
43282
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserSettings#IsUserFeatureEnabled)
43084
43283
  * @param this A singleton object that houses basic user settings, which persist across all games on Roblox.
43085
- * @param name
43284
+ * @param name The name of the user feature to check. Must begin with the `User` prefix.
43285
+ * @returns `true` if the named user feature exists and is enabled; otherwise `false`.
43086
43286
  */
43087
43287
  IsUserFeatureEnabled(this: UserSettings, name: string): boolean;
43088
43288
  /**
@@ -43194,7 +43394,7 @@ interface Sky extends Instance {
43194
43394
  */
43195
43395
  readonly _nominal_Sky: unique symbol;
43196
43396
  /**
43197
- * Sets whether the sun, moon, and stars will show.
43397
+ * Sets whether the sun, moon, and stars will render in the skybox.
43198
43398
  *
43199
43399
  * - **ThreadSafety**: ReadSafe
43200
43400
  *
@@ -43202,7 +43402,7 @@ interface Sky extends Instance {
43202
43402
  */
43203
43403
  CelestialBodiesShown: boolean;
43204
43404
  /**
43205
- * The perceived angular size of the moon while using this skybox, in degrees.
43405
+ * The perceived angular size of the moon while using this skybox, in degrees. Defaults to `11` and is clamped to the range `[0, 60]`.
43206
43406
  *
43207
43407
  * - **ThreadSafety**: ReadSafe
43208
43408
  *
@@ -43210,6 +43410,8 @@ interface Sky extends Instance {
43210
43410
  */
43211
43411
  MoonAngularSize: number;
43212
43412
  /**
43413
+ * The image displayed for the moon while using this skybox.
43414
+ *
43213
43415
  * - **ThreadSafety**: ReadSafe
43214
43416
  *
43215
43417
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#MoonTextureContent)
@@ -43224,6 +43426,8 @@ interface Sky extends Instance {
43224
43426
  */
43225
43427
  MoonTextureId: ContentId;
43226
43428
  /**
43429
+ * The image displayed on the back surface of the skybox.
43430
+ *
43227
43431
  * - **ThreadSafety**: ReadSafe
43228
43432
  *
43229
43433
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxBackContent)
@@ -43246,12 +43450,16 @@ interface Sky extends Instance {
43246
43450
  */
43247
43451
  SkyboxDn: ContentId;
43248
43452
  /**
43453
+ * The image displayed on the bottom surface of the skybox.
43454
+ *
43249
43455
  * - **ThreadSafety**: ReadSafe
43250
43456
  *
43251
43457
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxDownContent)
43252
43458
  */
43253
43459
  SkyboxDownContent: Content;
43254
43460
  /**
43461
+ * The image displayed on the front surface of the skybox.
43462
+ *
43255
43463
  * - **ThreadSafety**: ReadSafe
43256
43464
  *
43257
43465
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxFrontContent)
@@ -43266,6 +43474,8 @@ interface Sky extends Instance {
43266
43474
  */
43267
43475
  SkyboxFt: ContentId;
43268
43476
  /**
43477
+ * The image displayed on the left surface of the skybox.
43478
+ *
43269
43479
  * - **ThreadSafety**: ReadSafe
43270
43480
  *
43271
43481
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxLeftContent)
@@ -43288,6 +43498,8 @@ interface Sky extends Instance {
43288
43498
  */
43289
43499
  SkyboxOrientation: Vector3;
43290
43500
  /**
43501
+ * The image displayed on the right surface of the skybox.
43502
+ *
43291
43503
  * - **ThreadSafety**: ReadSafe
43292
43504
  *
43293
43505
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxRightContent)
@@ -43310,6 +43522,8 @@ interface Sky extends Instance {
43310
43522
  */
43311
43523
  SkyboxUp: ContentId;
43312
43524
  /**
43525
+ * The image displayed on the top surface of the skybox.
43526
+ *
43313
43527
  * - **ThreadSafety**: ReadSafe
43314
43528
  *
43315
43529
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SkyboxUpContent)
@@ -43332,6 +43546,8 @@ interface Sky extends Instance {
43332
43546
  */
43333
43547
  SunAngularSize: number;
43334
43548
  /**
43549
+ * The image displayed for the sun while using this skybox.
43550
+ *
43335
43551
  * - **ThreadSafety**: ReadSafe
43336
43552
  *
43337
43553
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sky#SunTextureContent)
@@ -44622,8 +44838,6 @@ interface SoundService extends Instance {
44622
44838
  */
44623
44839
  get CharacterSoundsUseNewApi(): Enum.RolloutState;
44624
44840
  /**
44625
- * Controls whether sound bends around corners globally when acoustic simulation is active.
44626
- *
44627
44841
  * - **ThreadSafety**: ReadSafe
44628
44842
  *
44629
44843
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SoundService#DiffractionEnabled)
@@ -44670,8 +44884,6 @@ interface SoundService extends Instance {
44670
44884
  */
44671
44885
  ListenerType: Enum.ListenerType;
44672
44886
  /**
44673
- * Controls whether sound is muffled through walls globally when acoustic simulation is active.
44674
- *
44675
44887
  * - **ThreadSafety**: ReadSafe
44676
44888
  *
44677
44889
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SoundService#OcclusionEnabled)
@@ -44686,8 +44898,6 @@ interface SoundService extends Instance {
44686
44898
  */
44687
44899
  RespectFilteringEnabled: boolean;
44688
44900
  /**
44689
- * Controls whether sound receives environmental reverb globally when acoustic simulation is active.
44690
- *
44691
44901
  * - **ThreadSafety**: ReadSafe
44692
44902
  *
44693
44903
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SoundService#ReverbEnabled)
@@ -44831,6 +45041,8 @@ interface Sparkles extends Instance {
44831
45041
  */
44832
45042
  SparkleColor: Color3;
44833
45043
  /**
45044
+ * Controls the speed of the sparkle effect.
45045
+ *
44834
45046
  * - **ThreadSafety**: ReadSafe
44835
45047
  *
44836
45048
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Sparkles#TimeScale)
@@ -44852,6 +45064,42 @@ interface StackFrame extends Instance {
44852
45064
  */
44853
45065
  readonly _nominal_StackFrame: unique symbol;
44854
45066
  }
45067
+ /**
45068
+ * - **Tags**: NotCreatable, NotReplicated
45069
+ *
45070
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StandardQueue)
45071
+ */
45072
+ interface StandardQueue extends Instance {
45073
+ /**
45074
+ * **DO NOT USE!**
45075
+ *
45076
+ * This field exists to force TypeScript to recognize this as a nominal type
45077
+ * @hidden
45078
+ * @deprecated
45079
+ */
45080
+ readonly _nominal_StandardQueue: unique symbol;
45081
+ /**
45082
+ * - **ThreadSafety**: Unsafe
45083
+ * - **Tags**: Yields
45084
+ *
45085
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StandardQueue#BatchCommitAsync)
45086
+ */
45087
+ BatchCommitAsync(this: StandardQueue, group: string, messageIds: Array<unknown>): void;
45088
+ /**
45089
+ * - **ThreadSafety**: Unsafe
45090
+ * - **Tags**: Yields
45091
+ *
45092
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StandardQueue#PublishAsync)
45093
+ */
45094
+ PublishAsync(this: StandardQueue, data: unknown, messageKey?: string): void;
45095
+ /**
45096
+ * - **ThreadSafety**: Unsafe
45097
+ * - **Tags**: Yields
45098
+ *
45099
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StandardQueue#SubscribeAsync)
45100
+ */
45101
+ SubscribeAsync(this: StandardQueue, group: string, callback: Callback): RBXScriptConnection;
45102
+ }
44855
45103
  /**
44856
45104
  * - **Tags**: NotCreatable, Service, NotReplicated
44857
45105
  *
@@ -45166,8 +45414,6 @@ interface StateMachineDefinition extends Instance {
45166
45414
  readonly _nominal_StateMachineDefinition: unique symbol;
45167
45415
  }
45168
45416
  /**
45169
- * - **Tags**: NotReplicated
45170
- *
45171
45417
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StateMachineTransitionDefinition)
45172
45418
  */
45173
45419
  interface StateMachineTransitionDefinition extends Instance {
@@ -45179,6 +45425,24 @@ interface StateMachineTransitionDefinition extends Instance {
45179
45425
  * @deprecated
45180
45426
  */
45181
45427
  readonly _nominal_StateMachineTransitionDefinition: unique symbol;
45428
+ /**
45429
+ * - **ThreadSafety**: ReadSafe
45430
+ *
45431
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StateMachineTransitionDefinition#From)
45432
+ */
45433
+ From: Instance | undefined;
45434
+ /**
45435
+ * - **ThreadSafety**: ReadSafe
45436
+ *
45437
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StateMachineTransitionDefinition#Priority)
45438
+ */
45439
+ Priority: number;
45440
+ /**
45441
+ * - **ThreadSafety**: ReadSafe
45442
+ *
45443
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StateMachineTransitionDefinition#To)
45444
+ */
45445
+ To: Instance | undefined;
45182
45446
  }
45183
45447
  /**
45184
45448
  * Performance metrics for a game.
@@ -46917,6 +47181,8 @@ interface TerrainDetail extends Instance {
46917
47181
  StudsPerTile: number;
46918
47182
  }
46919
47183
  /**
47184
+ * An object that stores a chunk of terrain voxel data, produced by `Terrain:CopyRegion()` and consumed by `Terrain:PasteRegion()`.
47185
+ *
46920
47186
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/TerrainRegion)
46921
47187
  */
46922
47188
  interface TerrainRegion extends Instance {
@@ -48082,6 +48348,12 @@ interface ChatWindowConfiguration extends TextChatConfigurations {
48082
48348
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChatWindowConfiguration#HorizontalAlignment)
48083
48349
  */
48084
48350
  HorizontalAlignment: Enum.HorizontalAlignment;
48351
+ /**
48352
+ * - **ThreadSafety**: ReadSafe
48353
+ *
48354
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ChatWindowConfiguration#TextChannelDisplayMode)
48355
+ */
48356
+ TextChannelDisplayMode: Enum.TextChannelDisplayMode;
48085
48357
  /**
48086
48358
  * Color of the text in default chat window.
48087
48359
  *
@@ -49176,6 +49448,8 @@ interface Trail extends Instance {
49176
49448
  */
49177
49449
  Texture: ContentId;
49178
49450
  /**
49451
+ * The texture displayed on the trail. Supports [asset URIs](../../../projects/assets/index.md#asset-uris).
49452
+ *
49179
49453
  * - **ThreadSafety**: ReadSafe
49180
49454
  *
49181
49455
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Trail#TextureContent)
@@ -50930,6 +51204,7 @@ interface UserGameSettings extends Instance {
50930
51204
  *
50931
51205
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#GetCameraYInvertValue)
50932
51206
  * @param this `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
51207
+ * @returns The camera's current Y-axis inversion multiplier.
50933
51208
  */
50934
51209
  GetCameraYInvertValue(this: UserGameSettings): number;
50935
51210
  /**
@@ -50950,6 +51225,7 @@ interface UserGameSettings extends Instance {
50950
51225
  *
50951
51226
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#InFullScreen)
50952
51227
  * @param this `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
51228
+ * @returns Whether the user's Roblox window is in full screen mode.
50953
51229
  */
50954
51230
  InFullScreen(this: UserGameSettings): boolean;
50955
51231
  /**
@@ -50959,6 +51235,7 @@ interface UserGameSettings extends Instance {
50959
51235
  *
50960
51236
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#InStudioMode)
50961
51237
  * @param this `UserGameSettings` is a singleton class found inside of the `UserSettings` singleton. It holds various persistent settings relating to how the user wants to control their camera, and their character.
51238
+ * @returns Whether the current client session is running in Roblox Studio.
50962
51239
  */
50963
51240
  InStudioMode(this: UserGameSettings): boolean;
50964
51241
  /**