@rbxts/types 1.0.941 → 1.0.943

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.
@@ -316,6 +316,7 @@ interface CreatableInstances {
316
316
  AudioSpeechToText: AudioSpeechToText;
317
317
  AudioTextToSpeech: AudioTextToSpeech;
318
318
  AudioTremolo: AudioTremolo;
319
+ AudioWindSynthesizer: AudioWindSynthesizer;
319
320
  AuroraScript: AuroraScript;
320
321
  AvatarAbilityRules: AvatarAbilityRules;
321
322
  AvatarAccessoryRules: AvatarAccessoryRules;
@@ -573,6 +574,7 @@ interface CreatableInstances {
573
574
  VideoDisplay: VideoDisplay;
574
575
  VideoFrame: VideoFrame;
575
576
  VideoPlayer: VideoPlayer;
577
+ ViewportCamera: ViewportCamera;
576
578
  ViewportFrame: ViewportFrame;
577
579
  VisualizationMode: VisualizationMode;
578
580
  VisualizationModeCategory: VisualizationModeCategory;
@@ -676,6 +678,7 @@ interface Instances extends Services, CreatableInstances {
676
678
  LuaSourceContainer: LuaSourceContainer;
677
679
  ManualSurfaceJointInstance: ManualSurfaceJointInstance;
678
680
  MaterialImportData: MaterialImportData;
681
+ MemoryStoreDistributedCounter: MemoryStoreDistributedCounter;
679
682
  MemoryStoreHashMap: MemoryStoreHashMap;
680
683
  MemoryStoreHashMapPages: MemoryStoreHashMapPages;
681
684
  MemoryStoreQueue: MemoryStoreQueue;
@@ -767,9 +770,11 @@ interface Objects extends Instances {
767
770
  AnimationNode: AnimationNode;
768
771
  Capture: Capture;
769
772
  ConfigSnapshot: ConfigSnapshot;
773
+ DataModelDiff: DataModelDiff;
770
774
  EditableImage: EditableImage;
771
775
  EditableMesh: EditableMesh;
772
776
  ExecutedRemoteCommand: ExecutedRemoteCommand;
777
+ Logger: Logger;
773
778
  LuauExpression: LuauExpression;
774
779
  MLSession: MLSession;
775
780
  Object: RBXObject;
@@ -1027,6 +1032,21 @@ interface ConfigSnapshot extends RBXObject {
1027
1032
  */
1028
1033
  readonly UpdateAvailable: RBXScriptSignal<() => void>;
1029
1034
  }
1035
+ /**
1036
+ * - **Tags**: NotCreatable
1037
+ *
1038
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModelDiff)
1039
+ */
1040
+ interface DataModelDiff extends RBXObject {
1041
+ /**
1042
+ * **DO NOT USE!**
1043
+ *
1044
+ * This field exists to force TypeScript to recognize this as a nominal type
1045
+ * @hidden
1046
+ * @deprecated
1047
+ */
1048
+ readonly _nominal_DataModelDiff: unique symbol;
1049
+ }
1030
1050
  /**
1031
1051
  * Object which allows for the runtime creation and manipulation of images.
1032
1052
  *
@@ -1165,6 +1185,12 @@ interface EditableImage extends RBXObject {
1165
1185
  * @returns Buffer where each pixel is represented by four bytes (red, green, blue and alpha respectively). The length of the buffer can be calculated as `X * Size.Y * 4` bytes.
1166
1186
  */
1167
1187
  ReadPixelsBuffer(this: EditableImage, position: Vector2, size: Vector2): buffer;
1188
+ /**
1189
+ * - **ThreadSafety**: Unsafe
1190
+ *
1191
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableImage#SampleImageProjected)
1192
+ */
1193
+ SampleImageProjected(this: EditableImage, sourceMesh: EditableMesh, sourceTexture: EditableImage, projectionConfig: object, brushConfig: object): void;
1168
1194
  /**
1169
1195
  * Writes a rectangular region of pixels into the image.
1170
1196
  *
@@ -1292,28 +1318,28 @@ interface EditableMesh extends RBXObject {
1292
1318
  */
1293
1319
  BatchAdd(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, data: Array<unknown>): Array<unknown>;
1294
1320
  /**
1295
- * - **ThreadSafety**: Unsafe
1321
+ * - **ThreadSafety**: Safe
1296
1322
  * - **Tags**: CustomLuaState
1297
1323
  *
1298
1324
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetFaceAttributes)
1299
1325
  */
1300
1326
  BatchGetFaceAttributes(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, faceIds: Array<unknown>): Array<unknown>;
1301
1327
  /**
1302
- * - **ThreadSafety**: Unsafe
1328
+ * - **ThreadSafety**: Safe
1303
1329
  * - **Tags**: CustomLuaState
1304
1330
  *
1305
1331
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetValues)
1306
1332
  */
1307
1333
  BatchGetValues(this: EditableMesh, ids: Array<unknown>): unknown;
1308
1334
  /**
1309
- * - **ThreadSafety**: Unsafe
1335
+ * - **ThreadSafety**: Safe
1310
1336
  * - **Tags**: CustomLuaState
1311
1337
  *
1312
1338
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetVertexAttributes)
1313
1339
  */
1314
1340
  BatchGetVertexAttributes(this: EditableMesh, attr: CastsToEnum<Enum.MeshAttribute>, vertexIds: Array<unknown>): Array<unknown>;
1315
1341
  /**
1316
- * - **ThreadSafety**: Unsafe
1342
+ * - **ThreadSafety**: Safe
1317
1343
  * - **Tags**: CustomLuaState
1318
1344
  *
1319
1345
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#BatchGetVertexFaceAttributes)
@@ -1349,7 +1375,6 @@ interface EditableMesh extends RBXObject {
1349
1375
  BatchSetVertexFaceAttributes(this: EditableMesh, vertexIds: Array<unknown>, faceIds: Array<unknown>, attrIds: Array<unknown>): void;
1350
1376
  /**
1351
1377
  * - **ThreadSafety**: Unsafe
1352
- * - **Tags**: NotBrowsable
1353
1378
  *
1354
1379
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#Clear)
1355
1380
  */
@@ -1366,7 +1391,7 @@ interface EditableMesh extends RBXObject {
1366
1391
  /**
1367
1392
  * Finds the closest point on the mesh's surface.
1368
1393
  *
1369
- * - **ThreadSafety**: Unsafe
1394
+ * - **ThreadSafety**: Safe
1370
1395
  *
1371
1396
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#FindClosestPointOnSurface)
1372
1397
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1381,7 +1406,7 @@ interface EditableMesh extends RBXObject {
1381
1406
  /**
1382
1407
  * Finds the closest vertex to a specific point in space.
1383
1408
  *
1384
- * - **ThreadSafety**: Unsafe
1409
+ * - **ThreadSafety**: Safe
1385
1410
  *
1386
1411
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#FindClosestVertex)
1387
1412
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1392,7 +1417,7 @@ interface EditableMesh extends RBXObject {
1392
1417
  /**
1393
1418
  * Finds all vertices within a specific sphere.
1394
1419
  *
1395
- * - **ThreadSafety**: Unsafe
1420
+ * - **ThreadSafety**: Safe
1396
1421
  *
1397
1422
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#FindVerticesWithinSphere)
1398
1423
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1404,7 +1429,7 @@ interface EditableMesh extends RBXObject {
1404
1429
  /**
1405
1430
  * Returns a list of faces adjacent to a given face.
1406
1431
  *
1407
- * - **ThreadSafety**: Unsafe
1432
+ * - **ThreadSafety**: Safe
1408
1433
  *
1409
1434
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetAdjacentFaces)
1410
1435
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1415,7 +1440,7 @@ interface EditableMesh extends RBXObject {
1415
1440
  /**
1416
1441
  * Returns a list of vertices adjacent to a given vertex.
1417
1442
  *
1418
- * - **ThreadSafety**: Unsafe
1443
+ * - **ThreadSafety**: Safe
1419
1444
  *
1420
1445
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetAdjacentVertices)
1421
1446
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1426,7 +1451,7 @@ interface EditableMesh extends RBXObject {
1426
1451
  /**
1427
1452
  * Finds the bone ID of the bone with the given name.
1428
1453
  *
1429
- * - **ThreadSafety**: Unsafe
1454
+ * - **ThreadSafety**: Safe
1430
1455
  *
1431
1456
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneByName)
1432
1457
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1437,7 +1462,7 @@ interface EditableMesh extends RBXObject {
1437
1462
  /**
1438
1463
  * Returns the initial `CFrame` of the bone in the bind pose of the mesh.
1439
1464
  *
1440
- * - **ThreadSafety**: Unsafe
1465
+ * - **ThreadSafety**: Safe
1441
1466
  *
1442
1467
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneCFrame)
1443
1468
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1448,7 +1473,7 @@ interface EditableMesh extends RBXObject {
1448
1473
  /**
1449
1474
  * Returns `true` if the bone is virtual.
1450
1475
  *
1451
- * - **ThreadSafety**: Unsafe
1476
+ * - **ThreadSafety**: Safe
1452
1477
  *
1453
1478
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneIsVirtual)
1454
1479
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1459,7 +1484,7 @@ interface EditableMesh extends RBXObject {
1459
1484
  /**
1460
1485
  * Returns the bone name.
1461
1486
  *
1462
- * - **ThreadSafety**: Unsafe
1487
+ * - **ThreadSafety**: Safe
1463
1488
  *
1464
1489
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneName)
1465
1490
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1470,7 +1495,7 @@ interface EditableMesh extends RBXObject {
1470
1495
  /**
1471
1496
  * Returns the parent bone ID, if any.
1472
1497
  *
1473
- * - **ThreadSafety**: Unsafe
1498
+ * - **ThreadSafety**: Safe
1474
1499
  *
1475
1500
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBoneParent)
1476
1501
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1481,7 +1506,7 @@ interface EditableMesh extends RBXObject {
1481
1506
  /**
1482
1507
  * Returns all bones of the mesh.
1483
1508
  *
1484
- * - **ThreadSafety**: Unsafe
1509
+ * - **ThreadSafety**: Safe
1485
1510
  *
1486
1511
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetBones)
1487
1512
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1489,7 +1514,7 @@ interface EditableMesh extends RBXObject {
1489
1514
  */
1490
1515
  GetBones(this: EditableMesh): Array<unknown>;
1491
1516
  /**
1492
- * - **ThreadSafety**: Unsafe
1517
+ * - **ThreadSafety**: Safe
1493
1518
  *
1494
1519
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetCenter)
1495
1520
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1499,7 +1524,7 @@ interface EditableMesh extends RBXObject {
1499
1524
  /**
1500
1525
  * Returns the color for the given color ID.
1501
1526
  *
1502
- * - **ThreadSafety**: Unsafe
1527
+ * - **ThreadSafety**: Safe
1503
1528
  *
1504
1529
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetColor)
1505
1530
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1510,7 +1535,7 @@ interface EditableMesh extends RBXObject {
1510
1535
  /**
1511
1536
  * Returns the color alpha (transparency) at the given color ID.
1512
1537
  *
1513
- * - **ThreadSafety**: Unsafe
1538
+ * - **ThreadSafety**: Safe
1514
1539
  *
1515
1540
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetColorAlpha)
1516
1541
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1521,7 +1546,7 @@ interface EditableMesh extends RBXObject {
1521
1546
  /**
1522
1547
  * Returns all colors of the mesh.
1523
1548
  *
1524
- * - **ThreadSafety**: Unsafe
1549
+ * - **ThreadSafety**: Safe
1525
1550
  * - **Tags**: CustomLuaState
1526
1551
  *
1527
1552
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetColors)
@@ -1532,7 +1557,7 @@ interface EditableMesh extends RBXObject {
1532
1557
  /**
1533
1558
  * Returns the face's color IDs for the vertices on the face.
1534
1559
  *
1535
- * - **ThreadSafety**: Unsafe
1560
+ * - **ThreadSafety**: Safe
1536
1561
  * - **Tags**: CustomLuaState
1537
1562
  *
1538
1563
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceColors)
@@ -1544,7 +1569,7 @@ interface EditableMesh extends RBXObject {
1544
1569
  /**
1545
1570
  * Returns the face's normal IDs for the vertices on the face.
1546
1571
  *
1547
- * - **ThreadSafety**: Unsafe
1572
+ * - **ThreadSafety**: Safe
1548
1573
  * - **Tags**: CustomLuaState
1549
1574
  *
1550
1575
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceNormals)
@@ -1556,7 +1581,7 @@ interface EditableMesh extends RBXObject {
1556
1581
  /**
1557
1582
  * Returns the face's UV IDs for the vertices on the face.
1558
1583
  *
1559
- * - **ThreadSafety**: Unsafe
1584
+ * - **ThreadSafety**: Safe
1560
1585
  * - **Tags**: CustomLuaState
1561
1586
  *
1562
1587
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceUVs)
@@ -1568,7 +1593,7 @@ interface EditableMesh extends RBXObject {
1568
1593
  /**
1569
1594
  * Returns the face's vertex IDs.
1570
1595
  *
1571
- * - **ThreadSafety**: Unsafe
1596
+ * - **ThreadSafety**: Safe
1572
1597
  * - **Tags**: CustomLuaState
1573
1598
  *
1574
1599
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaceVertices)
@@ -1580,7 +1605,7 @@ interface EditableMesh extends RBXObject {
1580
1605
  /**
1581
1606
  * Returns all faces of the mesh.
1582
1607
  *
1583
- * - **ThreadSafety**: Unsafe
1608
+ * - **ThreadSafety**: Safe
1584
1609
  * - **Tags**: CustomLuaState
1585
1610
  *
1586
1611
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFaces)
@@ -1593,7 +1618,7 @@ interface EditableMesh extends RBXObject {
1593
1618
  *
1594
1619
  * Returns a list of faces that use a given attribute ID.
1595
1620
  *
1596
- * - **ThreadSafety**: Unsafe
1621
+ * - **ThreadSafety**: Safe
1597
1622
  * - **Tags**:
1598
1623
  *
1599
1624
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithAttribute)
@@ -1607,7 +1632,7 @@ interface EditableMesh extends RBXObject {
1607
1632
  /**
1608
1633
  * Returns an array of face IDs that use the given color ID.
1609
1634
  *
1610
- * - **ThreadSafety**: Unsafe
1635
+ * - **ThreadSafety**: Safe
1611
1636
  * - **Tags**: CustomLuaState
1612
1637
  *
1613
1638
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithColor)
@@ -1619,7 +1644,7 @@ interface EditableMesh extends RBXObject {
1619
1644
  /**
1620
1645
  * Returns an array of face IDs that use the given normal ID.
1621
1646
  *
1622
- * - **ThreadSafety**: Unsafe
1647
+ * - **ThreadSafety**: Safe
1623
1648
  * - **Tags**: CustomLuaState
1624
1649
  *
1625
1650
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithNormal)
@@ -1631,7 +1656,7 @@ interface EditableMesh extends RBXObject {
1631
1656
  /**
1632
1657
  * Returns an array of face IDs that use the given UV ID.
1633
1658
  *
1634
- * - **ThreadSafety**: Unsafe
1659
+ * - **ThreadSafety**: Safe
1635
1660
  * - **Tags**: CustomLuaState
1636
1661
  *
1637
1662
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithUV)
@@ -1643,7 +1668,7 @@ interface EditableMesh extends RBXObject {
1643
1668
  /**
1644
1669
  * Returns bone IDs and bone `CFrames` for all bones in a specific FACS corrective pose.
1645
1670
  *
1646
- * - **ThreadSafety**: Unsafe
1671
+ * - **ThreadSafety**: Safe
1647
1672
  *
1648
1673
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePose)
1649
1674
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1654,7 +1679,7 @@ interface EditableMesh extends RBXObject {
1654
1679
  /**
1655
1680
  * Returns all FACS corrective poses that are in use.
1656
1681
  *
1657
- * - **ThreadSafety**: Unsafe
1682
+ * - **ThreadSafety**: Safe
1658
1683
  *
1659
1684
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsCorrectivePoses)
1660
1685
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1664,7 +1689,7 @@ interface EditableMesh extends RBXObject {
1664
1689
  /**
1665
1690
  * Returns bone IDs and bone `CFrames` for all bones in a specific FACS action unit.
1666
1691
  *
1667
- * - **ThreadSafety**: Unsafe
1692
+ * - **ThreadSafety**: Safe
1668
1693
  *
1669
1694
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPose)
1670
1695
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1675,7 +1700,7 @@ interface EditableMesh extends RBXObject {
1675
1700
  /**
1676
1701
  * Returns all FACS action units that have poses defined.
1677
1702
  *
1678
- * - **ThreadSafety**: Unsafe
1703
+ * - **ThreadSafety**: Safe
1679
1704
  *
1680
1705
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacsPoses)
1681
1706
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1685,7 +1710,7 @@ interface EditableMesh extends RBXObject {
1685
1710
  /**
1686
1711
  * Returns the normal vector for the given normal ID.
1687
1712
  *
1688
- * - **ThreadSafety**: Unsafe
1713
+ * - **ThreadSafety**: Safe
1689
1714
  *
1690
1715
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetNormal)
1691
1716
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1696,7 +1721,7 @@ interface EditableMesh extends RBXObject {
1696
1721
  /**
1697
1722
  * Returns all normals of the mesh.
1698
1723
  *
1699
- * - **ThreadSafety**: Unsafe
1724
+ * - **ThreadSafety**: Safe
1700
1725
  * - **Tags**: CustomLuaState
1701
1726
  *
1702
1727
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetNormals)
@@ -1707,7 +1732,7 @@ interface EditableMesh extends RBXObject {
1707
1732
  /**
1708
1733
  * Gets the position of a vertex.
1709
1734
  *
1710
- * - **ThreadSafety**: Unsafe
1735
+ * - **ThreadSafety**: Safe
1711
1736
  *
1712
1737
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetPosition)
1713
1738
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1716,7 +1741,7 @@ interface EditableMesh extends RBXObject {
1716
1741
  */
1717
1742
  GetPosition(this: EditableMesh, vertexId: number): Vector3;
1718
1743
  /**
1719
- * - **ThreadSafety**: Unsafe
1744
+ * - **ThreadSafety**: Safe
1720
1745
  *
1721
1746
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetSize)
1722
1747
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1726,7 +1751,7 @@ interface EditableMesh extends RBXObject {
1726
1751
  /**
1727
1752
  * Returns UV coordinates at the given UV ID.
1728
1753
  *
1729
- * - **ThreadSafety**: Unsafe
1754
+ * - **ThreadSafety**: Safe
1730
1755
  *
1731
1756
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetUV)
1732
1757
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1737,7 +1762,7 @@ interface EditableMesh extends RBXObject {
1737
1762
  /**
1738
1763
  * Returns all UVs of the mesh.
1739
1764
  *
1740
- * - **ThreadSafety**: Unsafe
1765
+ * - **ThreadSafety**: Safe
1741
1766
  * - **Tags**: CustomLuaState
1742
1767
  *
1743
1768
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetUVs)
@@ -1748,7 +1773,7 @@ interface EditableMesh extends RBXObject {
1748
1773
  /**
1749
1774
  * Returns skinning blend weights for each bone that is associated with the vertex.
1750
1775
  *
1751
- * - **ThreadSafety**: Unsafe
1776
+ * - **ThreadSafety**: Safe
1752
1777
  *
1753
1778
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBoneWeights)
1754
1779
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1759,7 +1784,7 @@ interface EditableMesh extends RBXObject {
1759
1784
  /**
1760
1785
  * Returns all bone IDs that are associated with the vertex for skinning.
1761
1786
  *
1762
- * - **ThreadSafety**: Unsafe
1787
+ * - **ThreadSafety**: Safe
1763
1788
  *
1764
1789
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexBones)
1765
1790
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1770,7 +1795,7 @@ interface EditableMesh extends RBXObject {
1770
1795
  /**
1771
1796
  * Returns the color IDs of the faces attached to the given vertex.
1772
1797
  *
1773
- * - **ThreadSafety**: Unsafe
1798
+ * - **ThreadSafety**: Safe
1774
1799
  * - **Tags**: CustomLuaState
1775
1800
  *
1776
1801
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexColors)
@@ -1782,7 +1807,7 @@ interface EditableMesh extends RBXObject {
1782
1807
  /**
1783
1808
  * Returns the color ID of a vertex/face pair.
1784
1809
  *
1785
- * - **ThreadSafety**: Unsafe
1810
+ * - **ThreadSafety**: Safe
1786
1811
  *
1787
1812
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceColor)
1788
1813
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1794,7 +1819,7 @@ interface EditableMesh extends RBXObject {
1794
1819
  /**
1795
1820
  * Returns the normal ID of a vertex/face pair.
1796
1821
  *
1797
- * - **ThreadSafety**: Unsafe
1822
+ * - **ThreadSafety**: Safe
1798
1823
  *
1799
1824
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceNormal)
1800
1825
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1806,7 +1831,7 @@ interface EditableMesh extends RBXObject {
1806
1831
  /**
1807
1832
  * Returns the UV ID of a vertex/face pair.
1808
1833
  *
1809
- * - **ThreadSafety**: Unsafe
1834
+ * - **ThreadSafety**: Safe
1810
1835
  *
1811
1836
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceUV)
1812
1837
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1818,7 +1843,7 @@ interface EditableMesh extends RBXObject {
1818
1843
  /**
1819
1844
  * Returns the face IDs of the faces attached to the given vertex.
1820
1845
  *
1821
- * - **ThreadSafety**: Unsafe
1846
+ * - **ThreadSafety**: Safe
1822
1847
  * - **Tags**: CustomLuaState
1823
1848
  *
1824
1849
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaces)
@@ -1830,7 +1855,7 @@ interface EditableMesh extends RBXObject {
1830
1855
  /**
1831
1856
  * Returns the normal IDs of the faces attached to the given vertex.
1832
1857
  *
1833
- * - **ThreadSafety**: Unsafe
1858
+ * - **ThreadSafety**: Safe
1834
1859
  * - **Tags**: CustomLuaState
1835
1860
  *
1836
1861
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexNormals)
@@ -1842,7 +1867,7 @@ interface EditableMesh extends RBXObject {
1842
1867
  /**
1843
1868
  * Returns the UV IDs of the faces attached to the given vertex.
1844
1869
  *
1845
- * - **ThreadSafety**: Unsafe
1870
+ * - **ThreadSafety**: Safe
1846
1871
  * - **Tags**: CustomLuaState
1847
1872
  *
1848
1873
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexUVs)
@@ -1854,7 +1879,7 @@ interface EditableMesh extends RBXObject {
1854
1879
  /**
1855
1880
  * Returns all vertices as a list of stable vertex IDs.
1856
1881
  *
1857
- * - **ThreadSafety**: Unsafe
1882
+ * - **ThreadSafety**: Safe
1858
1883
  *
1859
1884
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertices)
1860
1885
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -1866,7 +1891,7 @@ interface EditableMesh extends RBXObject {
1866
1891
  *
1867
1892
  * Returns a list of vertices that use a given attribute ID.
1868
1893
  *
1869
- * - **ThreadSafety**: Unsafe
1894
+ * - **ThreadSafety**: Safe
1870
1895
  * - **Tags**:
1871
1896
  *
1872
1897
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithAttribute)
@@ -1880,7 +1905,7 @@ interface EditableMesh extends RBXObject {
1880
1905
  /**
1881
1906
  * Returns an array of vertex IDs that use the given color ID.
1882
1907
  *
1883
- * - **ThreadSafety**: Unsafe
1908
+ * - **ThreadSafety**: Safe
1884
1909
  * - **Tags**: CustomLuaState
1885
1910
  *
1886
1911
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithColor)
@@ -1892,7 +1917,7 @@ interface EditableMesh extends RBXObject {
1892
1917
  /**
1893
1918
  * Returns an array of vertex IDs that use the given normal ID.
1894
1919
  *
1895
- * - **ThreadSafety**: Unsafe
1920
+ * - **ThreadSafety**: Safe
1896
1921
  * - **Tags**: CustomLuaState
1897
1922
  *
1898
1923
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithNormal)
@@ -1904,7 +1929,7 @@ interface EditableMesh extends RBXObject {
1904
1929
  /**
1905
1930
  * Returns an array of vertex IDs that use the given UV ID.
1906
1931
  *
1907
- * - **ThreadSafety**: Unsafe
1932
+ * - **ThreadSafety**: Safe
1908
1933
  * - **Tags**: CustomLuaState
1909
1934
  *
1910
1935
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithUV)
@@ -1936,7 +1961,7 @@ interface EditableMesh extends RBXObject {
1936
1961
  */
1937
1962
  MergeVertices(this: EditableMesh, mergeTolerance: number): unknown;
1938
1963
  /**
1939
- * - **ThreadSafety**: Unsafe
1964
+ * - **ThreadSafety**: Safe
1940
1965
  *
1941
1966
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#RaycastLocal)
1942
1967
  * @param this Object which allows for the runtime creation and manipulation of meshes.
@@ -7799,6 +7824,75 @@ interface AudioTremolo extends Instance {
7799
7824
  */
7800
7825
  readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
7801
7826
  }
7827
+ /**
7828
+ * - **Tags**: NotBrowsable
7829
+ *
7830
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer)
7831
+ */
7832
+ interface AudioWindSynthesizer extends Instance {
7833
+ /**
7834
+ * **DO NOT USE!**
7835
+ *
7836
+ * This field exists to force TypeScript to recognize this as a nominal type
7837
+ * @hidden
7838
+ * @deprecated
7839
+ */
7840
+ readonly _nominal_AudioWindSynthesizer: unique symbol;
7841
+ /**
7842
+ * - **ThreadSafety**: ReadSafe
7843
+ *
7844
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#Enabled)
7845
+ */
7846
+ Enabled: boolean;
7847
+ /**
7848
+ * - **ThreadSafety**: ReadSafe
7849
+ *
7850
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#PositionInstance)
7851
+ */
7852
+ PositionInstance: Instance | undefined;
7853
+ /**
7854
+ * - **ThreadSafety**: ReadSafe
7855
+ *
7856
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#PositionType)
7857
+ */
7858
+ PositionType: Enum.AudioPositionType;
7859
+ /**
7860
+ * - **ThreadSafety**: ReadSafe
7861
+ *
7862
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#Profile)
7863
+ */
7864
+ Profile: Enum.WindSoundProfile;
7865
+ /**
7866
+ * - **ThreadSafety**: ReadSafe
7867
+ *
7868
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#Volume)
7869
+ */
7870
+ Volume: number;
7871
+ /**
7872
+ * - **ThreadSafety**: Unsafe
7873
+ *
7874
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#GetConnectedWires)
7875
+ */
7876
+ GetConnectedWires(this: AudioWindSynthesizer, pin: string): Array<Instance>;
7877
+ /**
7878
+ * - **ThreadSafety**: Unsafe
7879
+ *
7880
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#GetInputPins)
7881
+ */
7882
+ GetInputPins(this: AudioWindSynthesizer): Array<unknown>;
7883
+ /**
7884
+ * - **ThreadSafety**: Unsafe
7885
+ *
7886
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#GetOutputPins)
7887
+ */
7888
+ GetOutputPins(this: AudioWindSynthesizer): Array<unknown>;
7889
+ /**
7890
+ * - **ThreadSafety**: Unsafe
7891
+ *
7892
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioWindSynthesizer#WiringChanged)
7893
+ */
7894
+ readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
7895
+ }
7802
7896
  /**
7803
7897
  * - **Tags**: NotCreatable
7804
7898
  *
@@ -7850,12 +7944,6 @@ interface AuroraScriptService extends Instance {
7850
7944
  * @deprecated
7851
7945
  */
7852
7946
  readonly _nominal_AuroraScriptService: unique symbol;
7853
- /**
7854
- * - **ThreadSafety**: Unsafe
7855
- *
7856
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#CreateCollection)
7857
- */
7858
- CreateCollection(this: AuroraScriptService, query: string, root?: Instance): CollectionHandle;
7859
7947
  /**
7860
7948
  * - **ThreadSafety**: Safe
7861
7949
  * - **Tags**: CustomLuaState
@@ -9702,12 +9790,6 @@ interface RootImportData extends BaseImportData {
9702
9790
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#UsesCages)
9703
9791
  */
9704
9792
  UsesCages: boolean;
9705
- /**
9706
- * - **ThreadSafety**: ReadSafe
9707
- *
9708
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#ValidateUgcBody)
9709
- */
9710
- ValidateUgcBody: boolean;
9711
9793
  /**
9712
9794
  * - **ThreadSafety**: ReadSafe
9713
9795
  *
@@ -10194,6 +10276,8 @@ interface WrapLayer extends BaseWrap {
10194
10276
  */
10195
10277
  readonly _nominal_WrapLayer: unique symbol;
10196
10278
  /**
10279
+ * Determines whether this WrapLayer automatically transfers skinning data from the underlying body mesh to the clothing mesh.
10280
+ *
10197
10281
  * - **ThreadSafety**: ReadSafe
10198
10282
  *
10199
10283
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapLayer#AutoSkin)
@@ -12473,6 +12557,12 @@ interface CollectionService extends Instance {
12473
12557
  */
12474
12558
  AddTag(this: CollectionService, instance: Instance, tag: string): void;
12475
12559
  AddTag(this: Instance, tag: string): void;
12560
+ /**
12561
+ * - **ThreadSafety**: Unsafe
12562
+ *
12563
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CollectionService#CreateCollection)
12564
+ */
12565
+ CreateCollection(this: CollectionService, query: string, root?: Instance): CollectionHandle;
12476
12566
  /**
12477
12567
  * Returns an array of all tags in the experience.
12478
12568
  *
@@ -18617,10 +18707,16 @@ interface GlobalDataStore extends Instance {
18617
18707
  */
18618
18708
  OnUpdate(this: GlobalDataStore, key: string, callback: Callback): RBXScriptConnection;
18619
18709
  /**
18710
+ * Returns the values of multiple keys from the data store in a single request.
18711
+ *
18620
18712
  * - **ThreadSafety**: Unsafe
18621
18713
  * - **Tags**: Yields
18622
18714
  *
18623
18715
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GlobalDataStore#BatchGetAsync)
18716
+ * @param this An object that exposes methods to access a single data store.
18717
+ * @param keys An array of key name strings to retrieve. The maximum number of keys per request is determined by a server-side limit (default 100).
18718
+ * @param options
18719
+ * @returns A dictionary mapping each requested key (string) to a table containing a `value` field with the key's current value. Keys that don't exist or have no value are omitted from the result.
18624
18720
  */
18625
18721
  BatchGetAsync(this: GlobalDataStore, keys: Array<unknown>, options?: object): object;
18626
18722
  /**
@@ -20494,6 +20590,8 @@ interface TextLabel extends GuiLabel {
20494
20590
  TextYAlignment: Enum.TextYAlignment;
20495
20591
  }
20496
20592
  /**
20593
+ * A `GuiObject` that automatically displays the keybinding for an action as text or an image.
20594
+ *
20497
20595
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel)
20498
20596
  */
20499
20597
  interface InputActionLabel extends GuiObject {
@@ -20506,30 +20604,40 @@ interface InputActionLabel extends GuiObject {
20506
20604
  */
20507
20605
  readonly _nominal_InputActionLabel: unique symbol;
20508
20606
  /**
20607
+ * Determines the font used to render text.
20608
+ *
20509
20609
  * - **ThreadSafety**: ReadSafe
20510
20610
  *
20511
20611
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#FontFace)
20512
20612
  */
20513
20613
  FontFace: Font;
20514
20614
  /**
20615
+ * Determines how rendered label images will be colorized.
20616
+ *
20515
20617
  * - **ThreadSafety**: ReadSafe
20516
20618
  *
20517
20619
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#ImageColor3)
20518
20620
  */
20519
20621
  ImageColor3: Color3;
20520
20622
  /**
20623
+ * Determines the transparency of rendered label images.
20624
+ *
20521
20625
  * - **ThreadSafety**: ReadSafe
20522
20626
  *
20523
20627
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#ImageTransparency)
20524
20628
  */
20525
20629
  ImageTransparency: number;
20526
20630
  /**
20631
+ * The `InputAction` whose preferred binding this label displays.
20632
+ *
20527
20633
  * - **ThreadSafety**: ReadSafe
20528
20634
  *
20529
20635
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#InputAction)
20530
20636
  */
20531
20637
  InputAction: InputAction | undefined;
20532
20638
  /**
20639
+ * Read-only. The resolved image content currently being displayed.
20640
+ *
20533
20641
  * - **ThreadSafety**: ReadSafe
20534
20642
  * - **Tags**: NotReplicated
20535
20643
  *
@@ -20537,6 +20645,8 @@ interface InputActionLabel extends GuiObject {
20537
20645
  */
20538
20646
  readonly ResolvedImageContent: Content;
20539
20647
  /**
20648
+ * The resolved key name string currently being displayed.
20649
+ *
20540
20650
  * - **ThreadSafety**: ReadSafe
20541
20651
  * - **Tags**: NotReplicated
20542
20652
  *
@@ -20544,36 +20654,48 @@ interface InputActionLabel extends GuiObject {
20544
20654
  */
20545
20655
  readonly ResolvedText: string;
20546
20656
  /**
20657
+ * Determines the color of rendered text.
20658
+ *
20547
20659
  * - **ThreadSafety**: ReadSafe
20548
20660
  *
20549
20661
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextColor3)
20550
20662
  */
20551
20663
  TextColor3: Color3;
20552
20664
  /**
20665
+ * Determines the line height of text in offsets.
20666
+ *
20553
20667
  * - **ThreadSafety**: ReadSafe
20554
20668
  *
20555
20669
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextSize)
20556
20670
  */
20557
20671
  TextSize: number;
20558
20672
  /**
20673
+ * Determines the transparency of rendered text.
20674
+ *
20559
20675
  * - **ThreadSafety**: ReadSafe
20560
20676
  *
20561
20677
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextTransparency)
20562
20678
  */
20563
20679
  TextTransparency: number;
20564
20680
  /**
20681
+ * Determines if text wraps to multiple lines within the label's space.
20682
+ *
20565
20683
  * - **ThreadSafety**: ReadSafe
20566
20684
  *
20567
20685
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextWrapped)
20568
20686
  */
20569
20687
  TextWrapped: boolean;
20570
20688
  /**
20689
+ * Determines the horizontal alignment of rendered text.
20690
+ *
20571
20691
  * - **ThreadSafety**: ReadSafe
20572
20692
  *
20573
20693
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextXAlignment)
20574
20694
  */
20575
20695
  TextXAlignment: Enum.TextXAlignment;
20576
20696
  /**
20697
+ * Determines the vertical alignment of rendered text.
20698
+ *
20577
20699
  * - **ThreadSafety**: ReadSafe
20578
20700
  *
20579
20701
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InputActionLabel#TextYAlignment)
@@ -21854,6 +21976,7 @@ interface AdGui extends SurfaceGuiBase {
21854
21976
  * Used to react to the AdGui events.
21855
21977
  *
21856
21978
  * - **ThreadSafety**: Unsafe
21979
+ * - **Tags**:
21857
21980
  *
21858
21981
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AdGui#OnAdEvent)
21859
21982
  * @param eventInfo Options table for the method: - `PlayerId` – The user ID of the player related to the ad event.
@@ -21861,6 +21984,8 @@ interface AdGui extends SurfaceGuiBase {
21861
21984
  *
21862
21985
  *
21863
21986
  * @returns Whether the callback has successfully reacted to the event.
21987
+ *
21988
+ * @deprecated
21864
21989
  */
21865
21990
  OnAdEvent: ((eventInfo: object) => boolean) | undefined;
21866
21991
  }
@@ -23674,6 +23799,8 @@ interface HarmonyService extends Instance {
23674
23799
  readonly _nominal_HarmonyService: unique symbol;
23675
23800
  }
23676
23801
  /**
23802
+ * Provides methods which return Luau heap memory usage summaries on client and server.
23803
+ *
23677
23804
  * - **Tags**: NotCreatable, Service
23678
23805
  *
23679
23806
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HeapProfilerService)
@@ -28749,6 +28876,13 @@ interface LogService extends Instance {
28749
28876
  * @param this A service that allows you to read outputted text.
28750
28877
  */
28751
28878
  GetLogHistory(this: LogService): Array<LogInfo>;
28879
+ /**
28880
+ * - **ThreadSafety**: Unsafe
28881
+ * - **Tags**: CustomLuaState
28882
+ *
28883
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/LogService#GetLogger)
28884
+ */
28885
+ GetLogger(this: LogService, name: string): Logger;
28752
28886
  /**
28753
28887
  * Logs a message at the `MessageType.MessageInfo` level with optional structured context.
28754
28888
  *
@@ -28912,7 +29046,7 @@ interface BaseScript extends LuaSourceContainer {
28912
29046
  */
28913
29047
  readonly _nominal_BaseScript: unique symbol;
28914
29048
  /**
28915
- * Determines whether a `BaseScript` will run or not.
29049
+ * Determines whether a `BaseScript` runs or not.
28916
29050
  *
28917
29051
  * - **ThreadSafety**: ReadSafe
28918
29052
  *
@@ -28920,7 +29054,7 @@ interface BaseScript extends LuaSourceContainer {
28920
29054
  */
28921
29055
  Disabled: boolean;
28922
29056
  /**
28923
- * Determines whether a `BaseScript` will run or not.
29057
+ * Determines whether a `BaseScript` runs or not.
28924
29058
  *
28925
29059
  * - **ThreadSafety**: ReadSafe
28926
29060
  * - **Tags**: NotReplicated
@@ -28942,7 +29076,7 @@ interface BaseScript extends LuaSourceContainer {
28942
29076
  */
28943
29077
  LinkedSource: ContentId;
28944
29078
  /**
28945
- * Determines the context under which the script will run.
29079
+ * Determines the context under which the script runs.
28946
29080
  *
28947
29081
  * - **ThreadSafety**: ReadSafe
28948
29082
  *
@@ -29904,6 +30038,35 @@ interface MaterialVariant extends Instance {
29904
30038
  */
29905
30039
  StudsPerTile: number;
29906
30040
  }
30041
+ /**
30042
+ * - **Tags**: NotCreatable, NotReplicated
30043
+ *
30044
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreDistributedCounter)
30045
+ */
30046
+ interface MemoryStoreDistributedCounter extends Instance {
30047
+ /**
30048
+ * **DO NOT USE!**
30049
+ *
30050
+ * This field exists to force TypeScript to recognize this as a nominal type
30051
+ * @hidden
30052
+ * @deprecated
30053
+ */
30054
+ readonly _nominal_MemoryStoreDistributedCounter: unique symbol;
30055
+ /**
30056
+ * - **ThreadSafety**: Unsafe
30057
+ * - **Tags**: Yields
30058
+ *
30059
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreDistributedCounter#GetAsync)
30060
+ */
30061
+ GetAsync(this: MemoryStoreDistributedCounter): number;
30062
+ /**
30063
+ * - **ThreadSafety**: Unsafe
30064
+ * - **Tags**: Yields
30065
+ *
30066
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreDistributedCounter#IncrementAsync)
30067
+ */
30068
+ IncrementAsync(this: MemoryStoreDistributedCounter, delta: number, expiration: number): number;
30069
+ }
29907
30070
  /**
29908
30071
  * Provides access to a hash map within `MemoryStoreService`.
29909
30072
  *
@@ -30068,6 +30231,12 @@ interface MemoryStoreService extends Instance {
30068
30231
  * @deprecated
30069
30232
  */
30070
30233
  readonly _nominal_MemoryStoreService: unique symbol;
30234
+ /**
30235
+ * - **ThreadSafety**: Unsafe
30236
+ *
30237
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreService#GetDistributedCounter)
30238
+ */
30239
+ GetDistributedCounter(this: MemoryStoreService, name: string): MemoryStoreDistributedCounter;
30071
30240
  /**
30072
30241
  * Returns a `MemoryStoreHashMap` instance for the provided name.
30073
30242
  *
@@ -31631,6 +31800,12 @@ interface BasePart extends PVInstance {
31631
31800
  * @param position The position, in world space, to apply the impulse.
31632
31801
  */
31633
31802
  ApplyImpulseAtPosition(this: BasePart, impulse: Vector3, position: Vector3): void;
31803
+ /**
31804
+ * - **ThreadSafety**: Unsafe
31805
+ *
31806
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BasePart#BindToCollisionSummaries)
31807
+ */
31808
+ BindToCollisionSummaries(this: BasePart, callback: Callback): RBXScriptConnection;
31634
31809
  /**
31635
31810
  * **Deprecated:** This method is deprecated. To break specific joints, iterate over the part's connections using `BasePart:GetJoints()` and call `Instance:Destroy()` on the joints you want to remove.
31636
31811
  *
@@ -33570,6 +33745,19 @@ interface Camera extends PVInstance {
33570
33745
  */
33571
33746
  readonly InterpolationFinished: RBXScriptSignal<() => void>;
33572
33747
  }
33748
+ /**
33749
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ViewportCamera)
33750
+ */
33751
+ interface ViewportCamera extends Camera {
33752
+ /**
33753
+ * **DO NOT USE!**
33754
+ *
33755
+ * This field exists to force TypeScript to recognize this as a nominal type
33756
+ * @hidden
33757
+ * @deprecated
33758
+ */
33759
+ readonly _nominal_ViewportCamera: unique symbol;
33760
+ }
33573
33761
  /**
33574
33762
  * 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.
33575
33763
  *
@@ -34160,6 +34348,18 @@ interface WorldRoot extends Model {
34160
34348
  * @param eventMode
34161
34349
  */
34162
34350
  BulkMoveTo(this: WorldRoot, partList: Array<Instance>, cframeList: Array<unknown>, eventMode?: CastsToEnum<Enum.BulkMoveMode>): void;
34351
+ /**
34352
+ * - **ThreadSafety**: Unsafe
34353
+ *
34354
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#CollisionGroupSetCollidable)
34355
+ */
34356
+ CollisionGroupSetCollidable(this: WorldRoot, name1: string, name2: string, collidable: boolean): void;
34357
+ /**
34358
+ * - **ThreadSafety**: Unsafe
34359
+ *
34360
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#CollisionGroupsAreCollidable)
34361
+ */
34362
+ CollisionGroupsAreCollidable(this: WorldRoot, name1: string, name2: string): boolean;
34163
34363
  /**
34164
34364
  * **Deprecated:** This function has been deprecated. Use `WorldRoot:Raycast()` along with `RaycastParams` for new work.
34165
34365
  *
@@ -34285,6 +34485,12 @@ interface WorldRoot extends Model {
34285
34485
  * @deprecated GetPartBoundsInBox
34286
34486
  */
34287
34487
  FindPartsInRegion3WithWhiteList(this: WorldRoot, region: Region3, whitelistDescendantsTable: Array<Instance>, maxParts?: number): Array<BasePart>;
34488
+ /**
34489
+ * - **ThreadSafety**: Unsafe
34490
+ *
34491
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#GetMaxCollisionGroups)
34492
+ */
34493
+ GetMaxCollisionGroups(this: WorldRoot): number;
34288
34494
  /**
34289
34495
  * Returns an array of parts whose **bounding boxes** overlap a given box.
34290
34496
  *
@@ -34326,6 +34532,18 @@ interface WorldRoot extends Model {
34326
34532
  * @returns An array of `BaseParts` which matched the spatial query.
34327
34533
  */
34328
34534
  GetPartsInPart(this: WorldRoot, part: BasePart, overlapParams?: OverlapParams): Array<BasePart>;
34535
+ /**
34536
+ * - **ThreadSafety**: Unsafe
34537
+ *
34538
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#GetRegisteredCollisionGroups)
34539
+ */
34540
+ GetRegisteredCollisionGroups(this: WorldRoot): Array<unknown>;
34541
+ /**
34542
+ * - **ThreadSafety**: Unsafe
34543
+ *
34544
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#IsCollisionGroupRegistered)
34545
+ */
34546
+ IsCollisionGroupRegistered(this: WorldRoot, name: string): boolean;
34329
34547
  /**
34330
34548
  * **Deprecated:** This function has been deprecated. Use `WorldRoot:GetPartBoundsInBox()` along with `OverlapParams` for new work.
34331
34549
  *
@@ -34373,6 +34591,18 @@ interface WorldRoot extends Model {
34373
34591
  * @returns Contains the results of a raycast operation, or `nil` if no eligible `BasePart` or `Terrain` cell was hit.
34374
34592
  */
34375
34593
  Raycast(this: WorldRoot, origin: Vector3, direction: Vector3, raycastParams?: RaycastParams): RaycastResult | undefined;
34594
+ /**
34595
+ * - **ThreadSafety**: Unsafe
34596
+ *
34597
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#RegisterCollisionGroup)
34598
+ */
34599
+ RegisterCollisionGroup(this: WorldRoot, name: string): void;
34600
+ /**
34601
+ * - **ThreadSafety**: Unsafe
34602
+ *
34603
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#RenameCollisionGroup)
34604
+ */
34605
+ RenameCollisionGroup(this: WorldRoot, from: string, to: string): void;
34376
34606
  /**
34377
34607
  * - **ThreadSafety**: Unsafe
34378
34608
  *
@@ -34397,6 +34627,12 @@ interface WorldRoot extends Model {
34397
34627
  * @returns Contains the result of the shapecast operation, or `nil` if no eligible `BasePart` or `Terrain` cell was hit.
34398
34628
  */
34399
34629
  Spherecast(this: WorldRoot, position: Vector3, radius: number, direction: Vector3, raycastParams?: RaycastParams): RaycastResult | undefined;
34630
+ /**
34631
+ * - **ThreadSafety**: Unsafe
34632
+ *
34633
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldRoot#UnregisterCollisionGroup)
34634
+ */
34635
+ UnregisterCollisionGroup(this: WorldRoot, name: string): void;
34400
34636
  }
34401
34637
  /**
34402
34638
  * `Workspace` houses 3D objects which are rendered to the 3D world. Objects not descending from it will not be rendered or physically interact with the world.
@@ -34636,6 +34872,12 @@ interface WorldModel extends WorldRoot {
34636
34872
  * @deprecated
34637
34873
  */
34638
34874
  readonly _nominal_WorldModel: unique symbol;
34875
+ /**
34876
+ * - **ThreadSafety**: ReadSafe
34877
+ *
34878
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WorldModel#UseWorkspaceCollisionGroups)
34879
+ */
34880
+ UseWorkspaceCollisionGroups: boolean;
34639
34881
  }
34640
34882
  /**
34641
34883
  * Links a `DataModel` instance to a corresponding asset in the cloud.
@@ -36273,6 +36515,12 @@ interface Player extends Instance {
36273
36515
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#FollowUserId)
36274
36516
  */
36275
36517
  readonly FollowUserId: number;
36518
+ /**
36519
+ * - **ThreadSafety**: ReadSafe
36520
+ *
36521
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#FrustumStreaming)
36522
+ */
36523
+ FrustumStreaming: Enum.FrustumStreamingMode;
36276
36524
  /**
36277
36525
  * Whether player client-side gameplay is currently paused.
36278
36526
  *
@@ -36494,15 +36742,16 @@ interface Player extends Instance {
36494
36742
  */
36495
36743
  HasAppearanceLoaded(this: Player): boolean;
36496
36744
  /**
36497
- * Returns whether the player is verified with concrete, real-world signals.
36745
+ * Returns whether the player meets the specified verification level.
36498
36746
  *
36499
36747
  * - **ThreadSafety**: Unsafe
36500
36748
  *
36501
36749
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#IsVerified)
36502
36750
  * @param this An object that represents a presently connected client to the experience.
36503
- * @returns A boolean indicating whether the player is verified.
36751
+ * @param level The verification level to check. Defaults to `VerifiedLevel.Low`.
36752
+ * @returns A boolean indicating whether the player meets the specified verification level.
36504
36753
  */
36505
- IsVerified(this: Player): boolean;
36754
+ IsVerified(this: Player, level?: CastsToEnum<Enum.VerifiedLevel>): boolean;
36506
36755
  /**
36507
36756
  * Forcibly disconnect a player from the experience, optionally providing a message.
36508
36757
  *
@@ -37450,7 +37699,7 @@ interface Players extends Instance {
37450
37699
  */
37451
37700
  RespawnTime: number;
37452
37701
  /**
37453
- * Returns the `Player` with the given `UserId` if they are in-experience.
37702
+ * Returns the `Player` with the given `UserId` if they are in-game.
37454
37703
  *
37455
37704
  * - **ThreadSafety**: Safe
37456
37705
  *
@@ -37480,7 +37729,7 @@ interface Players extends Instance {
37480
37729
  */
37481
37730
  GetPlayers(this: Players): Array<Player>;
37482
37731
  /**
37483
- * Bans users from your experience, with options to specify duration, reason, whether the ban applies to the entire universe or just the current place, and more. This method is enabled and disabled by the `Players.BanningEnabled` property, which you can toggle in Studio.
37732
+ * Bans users from your game, with options to specify duration, reason, whether the ban applies to the entire universe or just the current place, and more. This method is enabled and disabled by the `Players.BanningEnabled` property, which you can toggle in Studio.
37484
37733
  *
37485
37734
  * - **ThreadSafety**: Unsafe
37486
37735
  * - **Tags**: Yields
@@ -37488,12 +37737,12 @@ interface Players extends Instance {
37488
37737
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Players#BanAsync)
37489
37738
  * @param this A service that contains presently connected `Player` objects.
37490
37739
  * @param config - `UserIds` (required; array) — Array of `UserIds` of players to be banned. Max size is `50`.
37491
- * - `ApplyToUniverse` (optional; boolean) — Whether ban propagates to all places within the experience universe. Default is `true`.
37740
+ * - `ApplyToUniverse` (optional; boolean) — Whether ban propagates to all places within the game universe. Default is `true`.
37492
37741
  * - `Duration` (required; integer) — Duration of the ban, in seconds. Permanent bans should have a value of `-1`. `0` and all other negative values are invalid.
37493
- * - `DisplayReason` (required; string) — The message that will be displayed to users when they attempt to and fail to join an experience. Maximum string length is `400`.
37742
+ * - `DisplayReason` (required; string) — The message that will be displayed to users when they attempt to and fail to join a game. Maximum string length is `400`.
37494
37743
  * - `PrivateReason` (required; string) — Internal messaging that will be returned when querying the user's ban history. Maximum string length is `1000`.
37495
37744
  * - `ExcludeAltAccounts` (optional; boolean) — When `true`, Roblox does not attempt to ban alternate accounts. Default is `false`.
37496
- * - `ApplyDeviceBlock` (optional; boolean) — When `true`, Roblox will block banned users' devices from rejoining the experience for 24 hours after the ban is applied. Default is `false`. The block can be overridden by unbanning a user via a call to `Players:UnbanAsync()`. Note that unbanning a user through any other method will not lift the device block.
37745
+ * - `ApplyDeviceBlock` (optional; boolean) — When `true`, Roblox will block banned users' devices from rejoining the game for 24 hours after the ban is applied. Default is `false`. The block can be overridden by unbanning a user via a call to `Players:UnbanAsync()`. Note that unbanning a user through any other method will not lift the device block.
37497
37746
  */
37498
37747
  BanAsync(this: Players, config: BanAsyncConfig): void;
37499
37748
  /**
@@ -37515,7 +37764,7 @@ interface Players extends Instance {
37515
37764
  */
37516
37765
  CreateHumanoidModelFromDescription(this: Players, description: HumanoidDescription, rigType: CastsToEnum<Enum.HumanoidRigType>, assetTypeVerification?: CastsToEnum<Enum.AssetTypeVerification>): Model;
37517
37766
  /**
37518
- * Returns a character `Model` equipped with everything specified in the passed in `HumanoidDescription`. If `UseAvatarSettings` is set to true, Avatar Settings in the experience will be applied to the returned model.
37767
+ * Returns a character `Model` equipped with everything specified in the passed in `HumanoidDescription`. If `UseAvatarSettings` is set to true, Avatar Settings in the game will be applied to the returned model.
37519
37768
  *
37520
37769
  * - **ThreadSafety**: Unsafe
37521
37770
  * - **Tags**: Yields
@@ -37557,7 +37806,7 @@ interface Players extends Instance {
37557
37806
  */
37558
37807
  CreateHumanoidModelFromUserIdAsync(this: Players, userId: User): Model;
37559
37808
  /**
37560
- * Retrieves the ban and unban history of any user within the experience's universe. This method is enabled and disabled by the `Players.BanningEnabled` property, which you can toggle in Studio.
37809
+ * Retrieves the ban and unban history of any user within the game's universe. This method is enabled and disabled by the `Players.BanningEnabled` property, which you can toggle in Studio.
37561
37810
  *
37562
37811
  * - **ThreadSafety**: Unsafe
37563
37812
  * - **Tags**: Yields
@@ -37718,18 +37967,18 @@ interface Players extends Instance {
37718
37967
  *
37719
37968
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Players#UnbanAsync)
37720
37969
  * @param this A service that contains presently connected `Player` objects.
37721
- * @param config | Name | Type | Description |
37722
- * | ----------------- | ------- | -------------------------------------------------------------------------- |
37723
- * | `UserIds` | array | UserIDs to be force allowed into the experience(s).
37970
+ * @param config | Name | Type | Description |
37971
+ * | ----------------- | ------- | -------------------------------------------------------------------- |
37972
+ * | `UserIds` | array | UserIDs to be force allowed into the game(s).
37724
37973
  *
37725
37974
  *
37726
37975
  *
37727
37976
  * Max size is `50`. |
37728
- * | `ApplyToUniverse` | boolean | Propagates the unban to all places within this universe. |
37977
+ * | `ApplyToUniverse` | boolean | Propagates the unban to all places within this universe. |
37729
37978
  */
37730
37979
  UnbanAsync(this: Players, config: UnbanAsyncConfig): void;
37731
37980
  /**
37732
- * Fires when a player enters the experience.
37981
+ * Fires when a player enters the game.
37733
37982
  *
37734
37983
  * - **ThreadSafety**: Unsafe
37735
37984
  *
@@ -37737,7 +37986,7 @@ interface Players extends Instance {
37737
37986
  */
37738
37987
  readonly PlayerAdded: RBXScriptSignal<(player: Player) => void>;
37739
37988
  /**
37740
- * Fires when the experience server recognizes that a player's membership has changed.
37989
+ * Fires when the game server recognizes that a player's membership has changed.
37741
37990
  *
37742
37991
  * - **ThreadSafety**: Unsafe
37743
37992
  *
@@ -37745,7 +37994,7 @@ interface Players extends Instance {
37745
37994
  */
37746
37995
  readonly PlayerMembershipChanged: RBXScriptSignal<(player: Player) => void>;
37747
37996
  /**
37748
- * Fires when a player is about to leave the experience.
37997
+ * Fires when a player is about to leave the game.
37749
37998
  *
37750
37999
  * - **ThreadSafety**: Unsafe
37751
38000
  *
@@ -37753,7 +38002,7 @@ interface Players extends Instance {
37753
38002
  */
37754
38003
  readonly PlayerRemoving: RBXScriptSignal<(player: Player, reason: Enum.PlayerExitReason) => void>;
37755
38004
  /**
37756
- * Fires when the experience server recognizes that the user's status for a certain subscription has changed.
38005
+ * Fires when the game server recognizes that the user's status for a certain subscription has changed.
37757
38006
  *
37758
38007
  * - **ThreadSafety**: Unsafe
37759
38008
  *
@@ -40624,21 +40873,21 @@ interface DataModel extends ServiceProvider<Services> {
40624
40873
  */
40625
40874
  readonly VIPServerOwnerId: number;
40626
40875
  /**
40627
- * A reference to the `Workspace` service.
40628
- *
40629
40876
  * - **ThreadSafety**: ReadSafe
40630
40877
  * - **Tags**: NotReplicated
40631
40878
  *
40632
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#Workspace)
40879
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#RunService)
40633
40880
  */
40634
- readonly Workspace: Workspace;
40881
+ readonly RunService: RunService | undefined;
40635
40882
  /**
40883
+ * A reference to the `Workspace` service.
40884
+ *
40636
40885
  * - **ThreadSafety**: ReadSafe
40637
40886
  * - **Tags**: NotReplicated
40638
40887
  *
40639
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#RunService)
40888
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DataModel#Workspace)
40640
40889
  */
40641
- readonly RunService: RunService | undefined;
40890
+ readonly Workspace: Workspace;
40642
40891
  /**
40643
40892
  * Binds a function to be called before the server shuts down.
40644
40893
  *
@@ -48170,6 +48419,12 @@ interface UIShadow extends UIComponent {
48170
48419
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Enabled)
48171
48420
  */
48172
48421
  Enabled: boolean;
48422
+ /**
48423
+ * - **ThreadSafety**: ReadSafe
48424
+ *
48425
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Inset)
48426
+ */
48427
+ Inset: boolean;
48173
48428
  /**
48174
48429
  * - **ThreadSafety**: ReadSafe
48175
48430
  *
@@ -48184,6 +48439,12 @@ interface UIShadow extends UIComponent {
48184
48439
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#Offset)
48185
48440
  */
48186
48441
  Offset: UDim2;
48442
+ /**
48443
+ * - **ThreadSafety**: ReadSafe
48444
+ *
48445
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UIShadow#ShowBehindParent)
48446
+ */
48447
+ ShowBehindParent: boolean;
48187
48448
  /**
48188
48449
  * Expands or shrinks the shadow relative to the parent's size.
48189
48450
  *
@@ -48358,7 +48619,7 @@ interface UnvalidatedAssetService extends Instance {
48358
48619
  readonly _nominal_UnvalidatedAssetService: unique symbol;
48359
48620
  }
48360
48621
  /**
48361
- * The 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.
48622
+ * `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.
48362
48623
  *
48363
48624
  * - **Tags**: NotCreatable, Service, NotReplicated
48364
48625
  *
@@ -48483,7 +48744,7 @@ interface UserGameSettings extends Instance {
48483
48744
  * - **ThreadSafety**: Unsafe
48484
48745
  *
48485
48746
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#GetCameraYInvertValue)
48486
- * @param this The 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.
48747
+ * @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.
48487
48748
  */
48488
48749
  GetCameraYInvertValue(this: UserGameSettings): number;
48489
48750
  /**
@@ -48492,7 +48753,7 @@ interface UserGameSettings extends Instance {
48492
48753
  * - **ThreadSafety**: Unsafe
48493
48754
  *
48494
48755
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#GetOnboardingCompleted)
48495
- * @param this The 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.
48756
+ * @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.
48496
48757
  * @param onboardingId The onboarding ID to inquire about.
48497
48758
  * @returns Whether or not the onboarding in particular has been completed yet.
48498
48759
  */
@@ -48503,7 +48764,7 @@ interface UserGameSettings extends Instance {
48503
48764
  * - **ThreadSafety**: Unsafe
48504
48765
  *
48505
48766
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#InFullScreen)
48506
- * @param this The 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.
48767
+ * @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.
48507
48768
  */
48508
48769
  InFullScreen(this: UserGameSettings): boolean;
48509
48770
  /**
@@ -48512,7 +48773,7 @@ interface UserGameSettings extends Instance {
48512
48773
  * - **ThreadSafety**: Unsafe
48513
48774
  *
48514
48775
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#InStudioMode)
48515
- * @param this The 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.
48776
+ * @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.
48516
48777
  */
48517
48778
  InStudioMode(this: UserGameSettings): boolean;
48518
48779
  /**
@@ -48521,7 +48782,7 @@ interface UserGameSettings extends Instance {
48521
48782
  * - **ThreadSafety**: Unsafe
48522
48783
  *
48523
48784
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#SetCameraYInvertVisible)
48524
- * @param this The 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.
48785
+ * @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.
48525
48786
  */
48526
48787
  SetCameraYInvertVisible(this: UserGameSettings): void;
48527
48788
  /**
@@ -48530,7 +48791,7 @@ interface UserGameSettings extends Instance {
48530
48791
  * - **ThreadSafety**: Unsafe
48531
48792
  *
48532
48793
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#SetGamepadCameraSensitivityVisible)
48533
- * @param this The 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.
48794
+ * @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.
48534
48795
  */
48535
48796
  SetGamepadCameraSensitivityVisible(this: UserGameSettings): void;
48536
48797
  /**
@@ -48539,7 +48800,7 @@ interface UserGameSettings extends Instance {
48539
48800
  * - **ThreadSafety**: Unsafe
48540
48801
  *
48541
48802
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/UserGameSettings#SetOnboardingCompleted)
48542
- * @param this The 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.
48803
+ * @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.
48543
48804
  * @param onboardingId The onboarding ID to set as completed.
48544
48805
  */
48545
48806
  SetOnboardingCompleted(this: UserGameSettings, onboardingId: string): void;
@@ -50925,6 +51186,83 @@ interface WrapTextureTransfer extends Instance {
50925
51186
  */
50926
51187
  UVMinBound: Vector2;
50927
51188
  }
51189
+ /**
51190
+ * - **Tags**: NotCreatable, NotReplicated
51191
+ *
51192
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger)
51193
+ */
51194
+ interface Logger extends RBXObject {
51195
+ /**
51196
+ * **DO NOT USE!**
51197
+ *
51198
+ * This field exists to force TypeScript to recognize this as a nominal type
51199
+ * @hidden
51200
+ * @deprecated
51201
+ */
51202
+ readonly _nominal_Logger: unique symbol;
51203
+ /**
51204
+ * - **ThreadSafety**: ReadSafe
51205
+ * - **Tags**: NotReplicated
51206
+ *
51207
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#FullPath)
51208
+ */
51209
+ readonly FullPath: string;
51210
+ /**
51211
+ * - **ThreadSafety**: ReadSafe
51212
+ * - **Tags**: NotReplicated
51213
+ *
51214
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#Name)
51215
+ */
51216
+ readonly Name: string;
51217
+ /**
51218
+ * - **ThreadSafety**: Unsafe
51219
+ * - **Tags**: CustomLuaState
51220
+ *
51221
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#Error)
51222
+ */
51223
+ Error(this: Logger, message: string, context?: object): void;
51224
+ /**
51225
+ * - **ThreadSafety**: Unsafe
51226
+ * - **Tags**: CustomLuaState
51227
+ *
51228
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#GetLogger)
51229
+ */
51230
+ GetLogger(this: Logger, name: string): Logger;
51231
+ /**
51232
+ * - **ThreadSafety**: Unsafe
51233
+ * - **Tags**: CustomLuaState
51234
+ *
51235
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#Info)
51236
+ */
51237
+ Info(this: Logger, message: string, context?: object): void;
51238
+ /**
51239
+ * - **ThreadSafety**: Unsafe
51240
+ * - **Tags**: CustomLuaState
51241
+ *
51242
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#Log)
51243
+ */
51244
+ Log(this: Logger, messageType: CastsToEnum<Enum.MessageType>, message: string, context?: object): void;
51245
+ /**
51246
+ * - **ThreadSafety**: Unsafe
51247
+ * - **Tags**: CustomLuaState
51248
+ *
51249
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#Output)
51250
+ */
51251
+ Output(this: Logger, message: string, context?: object): void;
51252
+ /**
51253
+ * - **ThreadSafety**: Unsafe
51254
+ * - **Tags**: CustomLuaState
51255
+ *
51256
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#Warn)
51257
+ */
51258
+ Warn(this: Logger, message: string, context?: object): void;
51259
+ /**
51260
+ * - **ThreadSafety**: Unsafe
51261
+ *
51262
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Logger#MessageOut)
51263
+ */
51264
+ readonly MessageOut: RBXScriptSignal<(message: string, messageType: Enum.MessageType, context: object) => void>;
51265
+ }
50928
51266
  /**
50929
51267
  * - **Tags**: NotCreatable
50930
51268
  *