@rbxts/types 1.0.839 → 1.0.841

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.
@@ -100,6 +100,7 @@ interface Services {
100
100
  LSPFileSyncService: LSPFileSyncService;
101
101
  LuauScriptAnalyzerService: LuauScriptAnalyzerService;
102
102
  MarketplaceService: MarketplaceService;
103
+ MatchmakingService: MatchmakingService;
103
104
  MaterialGenerationService: MaterialGenerationService;
104
105
  MaterialService: MaterialService;
105
106
  MemoryStoreService: MemoryStoreService;
@@ -1443,7 +1444,7 @@ interface EditableMesh extends RBXObject {
1443
1444
  Triangulate(this: EditableMesh): void;
1444
1445
  }
1445
1446
  /**
1446
- * Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1447
+ * `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1447
1448
  *
1448
1449
  * - **Tags**: NotCreatable, NotBrowsable
1449
1450
  *
@@ -1489,7 +1490,7 @@ interface Instance extends RBXObject {
1489
1490
  * - **ThreadSafety**: Unsafe
1490
1491
  *
1491
1492
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#AddTag)
1492
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1493
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1493
1494
  * @param tag
1494
1495
  */
1495
1496
  AddTag(this: Instance, tag: string): void;
@@ -1499,7 +1500,7 @@ interface Instance extends RBXObject {
1499
1500
  * - **ThreadSafety**: Unsafe
1500
1501
  *
1501
1502
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#ClearAllChildren)
1502
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1503
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1503
1504
  */
1504
1505
  ClearAllChildren(this: Instance): void;
1505
1506
  /**
@@ -1508,7 +1509,7 @@ interface Instance extends RBXObject {
1508
1509
  * - **ThreadSafety**: Unsafe
1509
1510
  *
1510
1511
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#Clone)
1511
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1512
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1512
1513
  */
1513
1514
  Clone<T extends Instance>(this: T): T;
1514
1515
  /**
@@ -1517,7 +1518,7 @@ interface Instance extends RBXObject {
1517
1518
  * - **ThreadSafety**: Unsafe
1518
1519
  *
1519
1520
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#Destroy)
1520
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1521
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1521
1522
  */
1522
1523
  Destroy(this: Instance): void;
1523
1524
  /**
@@ -1526,7 +1527,7 @@ interface Instance extends RBXObject {
1526
1527
  * - **ThreadSafety**: Safe
1527
1528
  *
1528
1529
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#FindFirstAncestor)
1529
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1530
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1530
1531
  * @param name The `Instance.Name` to be looked for.
1531
1532
  * @returns The `Instance` found.
1532
1533
  */
@@ -1537,7 +1538,7 @@ interface Instance extends RBXObject {
1537
1538
  * - **ThreadSafety**: Safe
1538
1539
  *
1539
1540
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#FindFirstAncestorOfClass)
1540
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1541
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1541
1542
  * @param className The `Object.ClassName` to be looked for.
1542
1543
  * @returns The `Instance` found.
1543
1544
  */
@@ -1548,7 +1549,7 @@ interface Instance extends RBXObject {
1548
1549
  * - **ThreadSafety**: Safe
1549
1550
  *
1550
1551
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#FindFirstAncestorWhichIsA)
1551
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1552
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1552
1553
  * @param className The `Object.ClassName` to be looked for.
1553
1554
  * @returns The `Instance` found.
1554
1555
  */
@@ -1559,19 +1560,19 @@ interface Instance extends RBXObject {
1559
1560
  * - **ThreadSafety**: Safe
1560
1561
  *
1561
1562
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#FindFirstChild)
1562
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1563
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1563
1564
  * @param name The `Instance.Name` to be searched for.
1564
1565
  * @param recursive Whether or not the search should be conducted recursively.
1565
1566
  * @returns The `Instance` found.
1566
1567
  */
1567
1568
  FindFirstChild(this: Instance, childName: string | number, recursive?: boolean): Instance | undefined;
1568
1569
  /**
1569
- * Returns the first child of the `Instance` whose `ClassName` is equal to the given className.
1570
+ * Returns the first child of the `Instance` whose `ClassName` is equal to the given class name.
1570
1571
  *
1571
1572
  * - **ThreadSafety**: Safe
1572
1573
  *
1573
1574
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#FindFirstChildOfClass)
1574
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1575
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1575
1576
  * @param className The `Object.ClassName` to be looked for.
1576
1577
  * @returns The `Instance` found.
1577
1578
  */
@@ -1582,7 +1583,7 @@ interface Instance extends RBXObject {
1582
1583
  * - **ThreadSafety**: Safe
1583
1584
  *
1584
1585
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#FindFirstChildWhichIsA)
1585
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1586
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1586
1587
  * @param className The `Object.ClassName` to be searched for.
1587
1588
  * @param recursive Whether or not the search should be conducted recursively.
1588
1589
  * @returns The `Instance` found.
@@ -1594,7 +1595,7 @@ interface Instance extends RBXObject {
1594
1595
  * - **ThreadSafety**: Safe
1595
1596
  *
1596
1597
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#FindFirstDescendant)
1597
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1598
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1598
1599
  * @param name The `Instance.Name` to search for.
1599
1600
  * @returns The `Instance` found.
1600
1601
  */
@@ -1605,7 +1606,7 @@ interface Instance extends RBXObject {
1605
1606
  * - **ThreadSafety**: Safe
1606
1607
  *
1607
1608
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetActor)
1608
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1609
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1609
1610
  * @returns The `Actor` found.
1610
1611
  */
1611
1612
  GetActor(this: Instance): Actor | undefined;
@@ -1615,7 +1616,7 @@ interface Instance extends RBXObject {
1615
1616
  * - **ThreadSafety**: Safe
1616
1617
  *
1617
1618
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetAttribute)
1618
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1619
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1619
1620
  * @param attribute The name of the attribute being retrieved.
1620
1621
  * @returns The value which has been assigned to the given attribute name. If no attribute has been assigned, `nil` is returned.
1621
1622
  */
@@ -1626,7 +1627,7 @@ interface Instance extends RBXObject {
1626
1627
  * - **ThreadSafety**: Unsafe
1627
1628
  *
1628
1629
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetAttributeChangedSignal)
1629
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1630
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1630
1631
  * @param attribute The name of the specified attribute for which the change signal is being returned.
1631
1632
  * @returns An event that fires when the given attribute changes.
1632
1633
  */
@@ -1638,7 +1639,7 @@ interface Instance extends RBXObject {
1638
1639
  * - **Tags**: CustomLuaState
1639
1640
  *
1640
1641
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetAttributes)
1641
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1642
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1642
1643
  * @returns A dictionary of string → variant pairs for each attribute where the string is the name of the attribute and the variant is a non-nil value.
1643
1644
  */
1644
1645
  GetAttributes(this: Instance): Map<string, AttributeValue>;
@@ -1648,7 +1649,7 @@ interface Instance extends RBXObject {
1648
1649
  * - **ThreadSafety**: Safe
1649
1650
  *
1650
1651
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetChildren)
1651
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1652
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1652
1653
  * @returns An array containing the instance's children.
1653
1654
  */
1654
1655
  GetChildren(this: Instance): Array<Instance>;
@@ -1659,7 +1660,7 @@ interface Instance extends RBXObject {
1659
1660
  * - **Tags**: CustomLuaState
1660
1661
  *
1661
1662
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetDescendants)
1662
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1663
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1663
1664
  * @returns An array containing the instance's descendants.
1664
1665
  */
1665
1666
  GetDescendants(this: Instance): Array<Instance>;
@@ -1669,7 +1670,7 @@ interface Instance extends RBXObject {
1669
1670
  * - **ThreadSafety**: Safe
1670
1671
  *
1671
1672
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetFullName)
1672
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1673
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1673
1674
  * @returns The full name of the `Instance`.
1674
1675
  */
1675
1676
  GetFullName(this: Instance): string;
@@ -1677,7 +1678,7 @@ interface Instance extends RBXObject {
1677
1678
  * - **ThreadSafety**: Unsafe
1678
1679
  *
1679
1680
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetStyled)
1680
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1681
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1681
1682
  * @param name
1682
1683
  */
1683
1684
  GetStyled(this: Instance, name: string): unknown;
@@ -1685,7 +1686,7 @@ interface Instance extends RBXObject {
1685
1686
  * - **ThreadSafety**: Unsafe
1686
1687
  *
1687
1688
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetStyledPropertyChangedSignal)
1688
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1689
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1689
1690
  * @param property
1690
1691
  */
1691
1692
  GetStyledPropertyChangedSignal(this: Instance, property: string): RBXScriptSignal;
@@ -1695,7 +1696,7 @@ interface Instance extends RBXObject {
1695
1696
  * - **ThreadSafety**: Safe
1696
1697
  *
1697
1698
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetTags)
1698
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1699
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1699
1700
  */
1700
1701
  GetTags(this: Instance): Array<string>;
1701
1702
  /**
@@ -1704,7 +1705,7 @@ interface Instance extends RBXObject {
1704
1705
  * - **ThreadSafety**: Safe
1705
1706
  *
1706
1707
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#HasTag)
1707
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1708
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1708
1709
  * @param tag
1709
1710
  */
1710
1711
  HasTag(this: Instance, tag: string): boolean;
@@ -1714,35 +1715,40 @@ interface Instance extends RBXObject {
1714
1715
  * - **ThreadSafety**: Safe
1715
1716
  *
1716
1717
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#IsAncestorOf)
1717
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1718
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1718
1719
  * @param descendant The descendant `Instance`.
1719
1720
  * @returns True if the `Instance` is an ancestor of the given descendant.
1720
1721
  */
1721
1722
  IsAncestorOf(this: Instance, descendant: Instance): boolean;
1722
1723
  /**
1723
- * Returns true if an `Instance` is a descendant of the given ancestor.
1724
+ * Returns `true` if an `Instance` is a descendant of the given ancestor.
1724
1725
  *
1725
1726
  * - **ThreadSafety**: Safe
1726
1727
  *
1727
1728
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#IsDescendantOf)
1728
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1729
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1729
1730
  * @param ancestor The ancestor `Instance`.
1730
1731
  * @returns True if the `Instance` is a descendant of the given ancestor.
1731
1732
  */
1732
1733
  IsDescendantOf(this: Instance, ancestor: Instance): boolean;
1733
1734
  /**
1735
+ * Returns `true` if the value stored in the specified property is non-default.
1736
+ *
1734
1737
  * - **ThreadSafety**: Unsafe
1735
1738
  *
1736
1739
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#IsPropertyModified)
1740
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1741
+ * @param name Name of the property to query.
1742
+ * @returns Boolean indicating whether the property is modified.
1737
1743
  */
1738
- IsPropertyModified(this: Instance, name: string): boolean;
1744
+ IsPropertyModified(this: Instance, property: string): boolean;
1739
1745
  /**
1740
1746
  * Removes a tag from the instance.
1741
1747
  *
1742
1748
  * - **ThreadSafety**: Unsafe
1743
1749
  *
1744
1750
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#RemoveTag)
1745
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1751
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1746
1752
  * @param tag
1747
1753
  */
1748
1754
  RemoveTag(this: Instance, tag: string): void;
@@ -1750,15 +1756,17 @@ interface Instance extends RBXObject {
1750
1756
  * - **ThreadSafety**: Unsafe
1751
1757
  *
1752
1758
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#ResetPropertyToDefault)
1759
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1760
+ * @param name Name of the property to reset.
1753
1761
  */
1754
- ResetPropertyToDefault(this: Instance, name: string): void;
1762
+ ResetPropertyToDefault(this: Instance, property: string): void;
1755
1763
  /**
1756
1764
  * Sets the attribute with the given name to the given value.
1757
1765
  *
1758
1766
  * - **ThreadSafety**: Unsafe
1759
1767
  *
1760
1768
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#SetAttribute)
1761
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1769
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1762
1770
  * @param attribute The name of the attribute being set.
1763
1771
  * @param value The value to set the specified attribute to.
1764
1772
  */
@@ -1770,7 +1778,7 @@ interface Instance extends RBXObject {
1770
1778
  * - **Tags**: CustomLuaState, CanYield
1771
1779
  *
1772
1780
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#WaitForChild)
1773
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
1781
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
1774
1782
  * @param childName The `Instance.Name` to be looked for.
1775
1783
  * @param timeOut An optional time out parameter.
1776
1784
  * @returns The `Instance` found.
@@ -2856,7 +2864,7 @@ interface AnimationTrack extends Instance {
2856
2864
  */
2857
2865
  Play(this: AnimationTrack, fadeTime?: number, weight?: number, speed?: number): void;
2858
2866
  /**
2859
- * Stops the `AnimationTrack`. Once called playback of the `AnimationTrack` will stop and the weight of the animation will move towards zero over a length of time specified by the optional fadeTime parameter.
2867
+ * Stops the `AnimationTrack`.
2860
2868
  *
2861
2869
  * - **ThreadSafety**: Unsafe
2862
2870
  * - **Tags**: CustomLuaState
@@ -3026,12 +3034,6 @@ interface AnnotationsService extends Instance {
3026
3034
  * @deprecated
3027
3035
  */
3028
3036
  readonly _nominal_AnnotationsService: unique symbol;
3029
- /**
3030
- * - **ThreadSafety**: Unsafe
3031
- *
3032
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnnotationsService#DEPRECATED_EditAnnotation)
3033
- */
3034
- DEPRECATED_EditAnnotation(this: AnnotationsService, uniqueId: string, contents: string): void;
3035
3037
  }
3036
3038
  /**
3037
3039
  * - **Tags**: NotCreatable, Service, NotReplicated
@@ -3912,12 +3914,14 @@ interface AudioChannelMixer extends Instance {
3912
3914
  * - **ThreadSafety**: Unsafe
3913
3915
  *
3914
3916
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelMixer#GetInputPins)
3917
+ * @param this
3915
3918
  */
3916
3919
  GetInputPins(this: AudioChannelMixer): Array<unknown>;
3917
3920
  /**
3918
3921
  * - **ThreadSafety**: Unsafe
3919
3922
  *
3920
3923
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelMixer#GetOutputPins)
3924
+ * @param this
3921
3925
  */
3922
3926
  GetOutputPins(this: AudioChannelMixer): Array<unknown>;
3923
3927
  /**
@@ -3959,12 +3963,14 @@ interface AudioChannelSplitter extends Instance {
3959
3963
  * - **ThreadSafety**: Unsafe
3960
3964
  *
3961
3965
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelSplitter#GetInputPins)
3966
+ * @param this
3962
3967
  */
3963
3968
  GetInputPins(this: AudioChannelSplitter): Array<unknown>;
3964
3969
  /**
3965
3970
  * - **ThreadSafety**: Unsafe
3966
3971
  *
3967
3972
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioChannelSplitter#GetOutputPins)
3973
+ * @param this
3968
3974
  */
3969
3975
  GetOutputPins(this: AudioChannelSplitter): Array<unknown>;
3970
3976
  /**
@@ -5634,6 +5640,130 @@ interface AudioTextToSpeech extends Instance {
5634
5640
  * @deprecated
5635
5641
  */
5636
5642
  readonly _nominal_AudioTextToSpeech: unique symbol;
5643
+ /**
5644
+ * - **ThreadSafety**: ReadSafe
5645
+ * - **Tags**: NotReplicated
5646
+ *
5647
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#IsLoaded)
5648
+ */
5649
+ readonly IsLoaded: boolean;
5650
+ /**
5651
+ * - **ThreadSafety**: ReadSafe
5652
+ *
5653
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#IsPlaying)
5654
+ */
5655
+ get IsPlaying(): boolean;
5656
+ /**
5657
+ * - **ThreadSafety**: ReadSafe
5658
+ *
5659
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Looping)
5660
+ */
5661
+ Looping: boolean;
5662
+ /**
5663
+ * - **ThreadSafety**: ReadSafe
5664
+ *
5665
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Pitch)
5666
+ */
5667
+ Pitch: number;
5668
+ /**
5669
+ * - **ThreadSafety**: ReadSafe
5670
+ *
5671
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#PlaybackSpeed)
5672
+ */
5673
+ PlaybackSpeed: number;
5674
+ /**
5675
+ * - **ThreadSafety**: ReadSafe
5676
+ *
5677
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Speed)
5678
+ */
5679
+ Speed: number;
5680
+ /**
5681
+ * - **ThreadSafety**: ReadSafe
5682
+ *
5683
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Text)
5684
+ */
5685
+ Text: string;
5686
+ /**
5687
+ * - **ThreadSafety**: ReadSafe
5688
+ * - **Tags**: NotReplicated
5689
+ *
5690
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#TimeLength)
5691
+ */
5692
+ readonly TimeLength: number;
5693
+ /**
5694
+ * - **ThreadSafety**: ReadSafe
5695
+ *
5696
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#TimePosition)
5697
+ */
5698
+ TimePosition: number;
5699
+ /**
5700
+ * - **ThreadSafety**: ReadSafe
5701
+ *
5702
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#VoiceId)
5703
+ */
5704
+ VoiceId: string;
5705
+ /**
5706
+ * - **ThreadSafety**: ReadSafe
5707
+ *
5708
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Volume)
5709
+ */
5710
+ Volume: number;
5711
+ /**
5712
+ * - **ThreadSafety**: Unsafe
5713
+ *
5714
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#GetConnectedWires)
5715
+ */
5716
+ GetConnectedWires(this: AudioTextToSpeech, pin: string): Array<Instance>;
5717
+ /**
5718
+ * - **ThreadSafety**: Unsafe
5719
+ *
5720
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Pause)
5721
+ */
5722
+ Pause(this: AudioTextToSpeech): void;
5723
+ /**
5724
+ * - **ThreadSafety**: Unsafe
5725
+ *
5726
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Play)
5727
+ */
5728
+ Play(this: AudioTextToSpeech): void;
5729
+ /**
5730
+ * - **ThreadSafety**: Unsafe
5731
+ *
5732
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Unload)
5733
+ */
5734
+ Unload(this: AudioTextToSpeech): void;
5735
+ /**
5736
+ * - **ThreadSafety**: Unsafe
5737
+ * - **Tags**: Yields
5738
+ *
5739
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#GetWaveformAsync)
5740
+ */
5741
+ GetWaveformAsync(this: AudioTextToSpeech, timeRange: NumberRange, samples: number): Array<unknown>;
5742
+ /**
5743
+ * - **ThreadSafety**: Unsafe
5744
+ * - **Tags**: Yields
5745
+ *
5746
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#LoadAsync)
5747
+ */
5748
+ LoadAsync(this: AudioTextToSpeech): Enum.AssetFetchStatus;
5749
+ /**
5750
+ * - **ThreadSafety**: Unsafe
5751
+ *
5752
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Ended)
5753
+ */
5754
+ readonly Ended: RBXScriptSignal<() => void>;
5755
+ /**
5756
+ * - **ThreadSafety**: Unsafe
5757
+ *
5758
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#Looped)
5759
+ */
5760
+ readonly Looped: RBXScriptSignal<() => void>;
5761
+ /**
5762
+ * - **ThreadSafety**: Unsafe
5763
+ *
5764
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioTextToSpeech#WiringChanged)
5765
+ */
5766
+ readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
5637
5767
  }
5638
5768
  /**
5639
5769
  * - **Tags**: NotCreatable, Service
@@ -5765,6 +5895,12 @@ interface AuroraService extends Instance {
5765
5895
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#SetIncomingReplicationLag)
5766
5896
  */
5767
5897
  SetIncomingReplicationLag(this: AuroraService, seconds: number): void;
5898
+ /**
5899
+ * - **ThreadSafety**: Unsafe
5900
+ *
5901
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#SetPropertyIsInput)
5902
+ */
5903
+ SetPropertyIsInput(this: AuroraService, target: Instance, propertyName: string, isInput: boolean): void;
5768
5904
  /**
5769
5905
  * - **ThreadSafety**: Unsafe
5770
5906
  *
@@ -5921,6 +6057,15 @@ interface AvatarCreationService extends Instance {
5921
6057
  * @param generationId
5922
6058
  */
5923
6059
  LoadGeneratedAvatarAsync(this: AvatarCreationService, generationId: string): HumanoidDescription;
6060
+ /**
6061
+ * - **ThreadSafety**: Unsafe
6062
+ * - **Tags**: Yields
6063
+ *
6064
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#PrepareAvatarForPreviewAsync)
6065
+ * @param this A service to support developer avatar creators.
6066
+ * @param humanoidModel
6067
+ */
6068
+ PrepareAvatarForPreviewAsync(this: AvatarCreationService, humanoidModel: Model): void;
5924
6069
  /**
5925
6070
  * Prompts a `Player` to purchase and create an avatar from a `HumanoidDescription`.
5926
6071
  *
@@ -5995,6 +6140,12 @@ interface AvatarCreationService extends Instance {
5995
6140
  * - An optional table of strings. This includes failure reasons if validation was unsuccessful; otherwise `nil` if validation was successful.
5996
6141
  */
5997
6142
  ValidateUGCFullBodyAsync(this: AvatarCreationService, player: Player, humanoidDescription: HumanoidDescription): unknown;
6143
+ /**
6144
+ * - **ThreadSafety**: Unsafe
6145
+ *
6146
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarCreationService#AvatarModerationCompleted)
6147
+ */
6148
+ readonly AvatarModerationCompleted: RBXScriptSignal<(outfitId: number, moderationStatus: Enum.ModerationStatus) => void>;
5998
6149
  }
5999
6150
  /**
6000
6151
  * A service to support developer Avatar Editors.
@@ -7307,7 +7458,6 @@ interface BaseWrap extends Instance {
7307
7458
  readonly _nominal_BaseWrap: unique symbol;
7308
7459
  /**
7309
7460
  * - **ThreadSafety**: ReadSafe
7310
- * - **Tags**: Hidden
7311
7461
  *
7312
7462
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BaseWrap#CageMeshContent)
7313
7463
  */
@@ -7456,7 +7606,6 @@ interface WrapLayer extends BaseWrap {
7456
7606
  Puffiness: number;
7457
7607
  /**
7458
7608
  * - **ThreadSafety**: ReadSafe
7459
- * - **Tags**: Hidden
7460
7609
  *
7461
7610
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapLayer#ReferenceMeshContent)
7462
7611
  */
@@ -8735,7 +8884,7 @@ interface CaptureService extends Instance {
8735
8884
  *
8736
8885
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#PromptSaveCapturesToGallery)
8737
8886
  * @param this A service which provides control over screenshot capture features.
8738
- * @param contentIds An array of `contentId` strings identifying the screenshots to save.
8887
+ * @param captures
8739
8888
  * @param resultCallback A callback function that will be invoked with a dictionary mapping each `contentId` to a boolean indicating if the user accepted saving that capture.
8740
8889
  */
8741
8890
  PromptSaveCapturesToGallery<T extends string>(this: CaptureService, contentIds: Array<T>, resultCallback: (results: Record<T, boolean>) => void): void;
@@ -8746,7 +8895,7 @@ interface CaptureService extends Instance {
8746
8895
  *
8747
8896
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#PromptShareCapture)
8748
8897
  * @param this A service which provides control over screenshot capture features.
8749
- * @param contentId The `contentId` identifying the screenshot to share.
8898
+ * @param captureContent
8750
8899
  * @param launchData An optional string to include as launch data in the invite link.
8751
8900
  * @param onAcceptedCallback An optional callback function invoked if the user accepts sharing.
8752
8901
  * @param onDeniedCallback An optional callback function invoked if the user denies sharing.
@@ -8756,6 +8905,9 @@ interface CaptureService extends Instance {
8756
8905
  * - **ThreadSafety**: Unsafe
8757
8906
  *
8758
8907
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/CaptureService#TakeCapture)
8908
+ * @param this A service which provides control over screenshot capture features.
8909
+ * @param onCaptureReady
8910
+ * @param captureParams
8759
8911
  */
8760
8912
  TakeCapture(this: CaptureService, onCaptureReady: Callback, captureParams?: object): void;
8761
8913
  /**
@@ -9623,6 +9775,13 @@ interface DragDetector extends ClickDetector {
9623
9775
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DragDetector#DragStartReplicate)
9624
9776
  */
9625
9777
  readonly DragStartReplicate: RBXScriptSignal<(playerWhoDragged: Player, cursorRay: Ray, viewFrame: CFrame, hitFrame: CFrame, clickedPart: BasePart, vrInputFrame: CFrame | undefined, isModeSwitchKeyDown: boolean) => void>;
9778
+ /**
9779
+ * - **ThreadSafety**: Unsafe
9780
+ * - **Tags**: Hidden
9781
+ *
9782
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DragDetector#RestartPhysicalDragReplicate)
9783
+ */
9784
+ readonly RestartPhysicalDragReplicate: RBXScriptSignal<(hitPoint: Vector3) => void>;
9626
9785
  }
9627
9786
  /**
9628
9787
  * - **Tags**: NotCreatable, Service, NotReplicated
@@ -14291,7 +14450,6 @@ interface Decal extends FaceInstance {
14291
14450
  Texture: ContentId;
14292
14451
  /**
14293
14452
  * - **ThreadSafety**: ReadSafe
14294
- * - **Tags**: Hidden
14295
14453
  *
14296
14454
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Decal#TextureContent)
14297
14455
  */
@@ -16147,7 +16305,6 @@ interface ImageButton extends GuiButton {
16147
16305
  * The image content displayed by the UI element. Supports asset URIs and `EditableImage` objects.
16148
16306
  *
16149
16307
  * - **ThreadSafety**: ReadSafe
16150
- * - **Tags**: Hidden
16151
16308
  *
16152
16309
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageButton#ImageContent)
16153
16310
  */
@@ -16525,7 +16682,6 @@ interface ImageLabel extends GuiLabel {
16525
16682
  * The image content displayed by the UI element. Supports [asset URIs](../../../projects/assets/index.md#asset-uris) and `EditableImage` objects.
16526
16683
  *
16527
16684
  * - **ThreadSafety**: ReadSafe
16528
- * - **Tags**: Hidden
16529
16685
  *
16530
16686
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageLabel#ImageContent)
16531
16687
  */
@@ -21878,24 +22034,29 @@ interface HumanoidRigDescription extends Instance {
21878
22034
  * - **ThreadSafety**: Safe
21879
22035
  *
21880
22036
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#Automap)
22037
+ * @param this
22038
+ * @param character
21881
22039
  */
21882
22040
  Automap(this: HumanoidRigDescription, character: Instance): void;
21883
22041
  /**
21884
22042
  * - **ThreadSafety**: Safe
21885
22043
  *
21886
22044
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#GetJointNames)
22045
+ * @param this
21887
22046
  */
21888
22047
  GetJointNames(this: HumanoidRigDescription): Array<unknown>;
21889
22048
  /**
21890
22049
  * - **ThreadSafety**: Safe
21891
22050
  *
21892
22051
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#GetR15JointNames)
22052
+ * @param this
21893
22053
  */
21894
22054
  GetR15JointNames(this: HumanoidRigDescription): Array<unknown>;
21895
22055
  /**
21896
22056
  * - **ThreadSafety**: Safe
21897
22057
  *
21898
22058
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidRigDescription#GetR6JointNames)
22059
+ * @param this
21899
22060
  */
21900
22061
  GetR6JointNames(this: HumanoidRigDescription): Array<unknown>;
21901
22062
  }
@@ -24747,7 +24908,7 @@ interface MarketplaceService extends Instance {
24747
24908
  * - `PlaceIdWherePurchased` — The place ID in which the purchase was made. Depending on where the user is during gameplay, the purchase place's ID can be the same as or different from the current place's ID.
24748
24909
  * - `CurrencySpent` — The amount of currency spent in the transaction.
24749
24910
  * - `CurrencyType` — The type of currency spent in the purchase; always `CurrencyType.Robux`.
24750
- * - `ProductPurchaseChannel` — An enum that represents how the user acquired the developer product.
24911
+ * - `ProductPurchaseChannel` — How the user acquired the developer product. One of `ProductPurchaseChannel`.
24751
24912
  *
24752
24913
  *
24753
24914
  * @returns An enum that represents how the developer product receipt was processed. - `PurchaseGranted`:
@@ -24758,6 +24919,39 @@ interface MarketplaceService extends Instance {
24758
24919
  */
24759
24920
  ProcessReceipt: ((receiptInfo: ReceiptInfo) => Enum.ProductPurchaseDecision) | undefined;
24760
24921
  }
24922
+ /**
24923
+ * - **Tags**: NotCreatable, Service, NotReplicated
24924
+ *
24925
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService)
24926
+ */
24927
+ interface MatchmakingService extends Instance {
24928
+ /**
24929
+ * **DO NOT USE!**
24930
+ *
24931
+ * This field exists to force TypeScript to recognize this as a nominal type
24932
+ * @hidden
24933
+ * @deprecated
24934
+ */
24935
+ readonly _nominal_MatchmakingService: unique symbol;
24936
+ /**
24937
+ * - **ThreadSafety**: Unsafe
24938
+ *
24939
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService#GetServerAttribute)
24940
+ */
24941
+ GetServerAttribute(this: MatchmakingService, name: string): unknown;
24942
+ /**
24943
+ * - **ThreadSafety**: Unsafe
24944
+ *
24945
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService#InitializeServerAttributesForStudio)
24946
+ */
24947
+ InitializeServerAttributesForStudio(this: MatchmakingService, serverAttributes: object): unknown;
24948
+ /**
24949
+ * - **ThreadSafety**: Unsafe
24950
+ *
24951
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService#SetServerAttribute)
24952
+ */
24953
+ SetServerAttribute(this: MatchmakingService, name: string, value: unknown): unknown;
24954
+ }
24761
24955
  /**
24762
24956
  * - **Tags**: NotCreatable, Service, NotReplicated
24763
24957
  *
@@ -27643,7 +27837,6 @@ interface MeshPart extends TriangleMeshPart {
27643
27837
  * The mesh that is displayed on the `MeshPart`. Supports [asset URIs](../../../projects/assets/index.md#asset-uris) and `EditableMesh` objects.
27644
27838
  *
27645
27839
  * - **ThreadSafety**: ReadSafe
27646
- * - **Tags**: Hidden
27647
27840
  *
27648
27841
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MeshPart#MeshContent)
27649
27842
  */
@@ -27669,7 +27862,6 @@ interface MeshPart extends TriangleMeshPart {
27669
27862
  * The texture applied to the `MeshPart`. Supports [asset URIs](../../../projects/assets/index.md#asset-uris) and `EditableImage` objects.
27670
27863
  *
27671
27864
  * - **ThreadSafety**: ReadSafe
27672
- * - **Tags**: Hidden
27673
27865
  *
27674
27866
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MeshPart#TextureContent)
27675
27867
  */
@@ -30477,6 +30669,13 @@ interface Player extends Instance {
30477
30669
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#Neutral)
30478
30670
  */
30479
30671
  Neutral: boolean;
30672
+ /**
30673
+ * - **ThreadSafety**: ReadSafe
30674
+ * - **Tags**: Hidden, NotReplicated
30675
+ *
30676
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#PartyId)
30677
+ */
30678
+ get PartyId(): string;
30480
30679
  /**
30481
30680
  * Sets the part to focus replication around.
30482
30681
  *
@@ -30546,6 +30745,12 @@ interface Player extends Instance {
30546
30745
  * @returns The distance in studs between the player and the location.
30547
30746
  */
30548
30747
  DistanceFromCharacter(this: Player, point: Vector3): number;
30748
+ /**
30749
+ * - **ThreadSafety**: Unsafe
30750
+ *
30751
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Player#GetData)
30752
+ */
30753
+ GetData(this: Player): PlayerData;
30549
30754
  /**
30550
30755
  * Returns a dictionary containing information describing how the `Player` joins the experience.
30551
30756
  *
@@ -30953,17 +31158,15 @@ interface PlayerData extends Instance {
30953
31158
  * - **ThreadSafety**: Unsafe
30954
31159
  *
30955
31160
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerData#GetPlayer)
30956
- * @param this
30957
31161
  */
30958
31162
  GetPlayer(this: PlayerData): Player;
30959
31163
  /**
30960
31164
  * - **ThreadSafety**: Unsafe
31165
+ * - **Tags**: Yields
30961
31166
  *
30962
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerData#GetRecord)
30963
- * @param this
30964
- * @param recordName
31167
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerData#GetRecordAsync)
30965
31168
  */
30966
- GetRecord(this: PlayerData, recordName?: string): PlayerDataRecord;
31169
+ GetRecordAsync(this: PlayerData, recordName?: string): PlayerDataRecord;
30967
31170
  }
30968
31171
  /**
30969
31172
  * - **Tags**: NotCreatable, NotReplicated
@@ -31060,47 +31263,36 @@ interface PlayerDataRecord extends Instance {
31060
31263
  * - **ThreadSafety**: Unsafe
31061
31264
  *
31062
31265
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#GetPlayer)
31063
- * @param this
31064
31266
  */
31065
31267
  GetPlayer(this: PlayerDataRecord): Player;
31066
31268
  /**
31067
31269
  * - **ThreadSafety**: Unsafe
31068
31270
  *
31069
31271
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#GetValue)
31070
- * @param this
31071
- * @param key
31072
31272
  */
31073
31273
  GetValue(this: PlayerDataRecord, key: string): unknown;
31074
31274
  /**
31075
31275
  * - **ThreadSafety**: Unsafe
31076
31276
  *
31077
31277
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#GetValueChangedSignal)
31078
- * @param this
31079
- * @param key
31080
31278
  */
31081
31279
  GetValueChangedSignal(this: PlayerDataRecord, key: string): RBXScriptSignal;
31082
31280
  /**
31083
31281
  * - **ThreadSafety**: Unsafe
31084
31282
  *
31085
31283
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#Release)
31086
- * @param this
31087
31284
  */
31088
31285
  Release(this: PlayerDataRecord): void;
31089
31286
  /**
31090
31287
  * - **ThreadSafety**: Unsafe
31091
31288
  *
31092
31289
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#RemoveValue)
31093
- * @param this
31094
- * @param key
31095
31290
  */
31096
31291
  RemoveValue(this: PlayerDataRecord, key: string): void;
31097
31292
  /**
31098
31293
  * - **ThreadSafety**: Unsafe
31099
31294
  *
31100
31295
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#SetValue)
31101
- * @param this
31102
- * @param key
31103
- * @param value
31104
31296
  */
31105
31297
  SetValue(this: PlayerDataRecord, key: string, value: unknown): void;
31106
31298
  /**
@@ -31108,17 +31300,8 @@ interface PlayerDataRecord extends Instance {
31108
31300
  * - **Tags**: Yields
31109
31301
  *
31110
31302
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#RequestFlushAsync)
31111
- * @param this
31112
31303
  */
31113
31304
  RequestFlushAsync(this: PlayerDataRecord): void;
31114
- /**
31115
- * - **ThreadSafety**: Unsafe
31116
- * - **Tags**: Yields
31117
- *
31118
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecord#WaitForLoadAsync)
31119
- * @param this
31120
- */
31121
- WaitForLoadAsync(this: PlayerDataRecord): void;
31122
31305
  /**
31123
31306
  * - **ThreadSafety**: Unsafe
31124
31307
  *
@@ -31163,17 +31346,12 @@ interface PlayerDataRecordConfig extends Instance {
31163
31346
  * - **ThreadSafety**: Unsafe
31164
31347
  *
31165
31348
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecordConfig#GetDefaultValue)
31166
- * @param this
31167
- * @param key
31168
31349
  */
31169
31350
  GetDefaultValue(this: PlayerDataRecordConfig, key: string): unknown;
31170
31351
  /**
31171
31352
  * - **ThreadSafety**: Unsafe
31172
31353
  *
31173
31354
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataRecordConfig#SetDefaultValue)
31174
- * @param this
31175
- * @param key
31176
- * @param value
31177
31355
  */
31178
31356
  SetDefaultValue(this: PlayerDataRecordConfig, key: string, value: unknown): void;
31179
31357
  }
@@ -31201,8 +31379,6 @@ interface PlayerDataService extends Instance {
31201
31379
  * - **ThreadSafety**: Unsafe
31202
31380
  *
31203
31381
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PlayerDataService#GetRecordConfig)
31204
- * @param this
31205
- * @param recordName
31206
31382
  */
31207
31383
  GetRecordConfig(this: PlayerDataService, recordName?: string): PlayerDataRecordConfig;
31208
31384
  }
@@ -36196,7 +36372,7 @@ interface StyleBase extends Instance {
36196
36372
  * @param rule
36197
36373
  * @param index
36198
36374
  */
36199
- InsertStyleRule(this: StyleBase, rule: StyleRule, index?: number): void;
36375
+ InsertStyleRule(this: StyleBase, rule: StyleRule, priority?: number): void;
36200
36376
  /**
36201
36377
  * - **ThreadSafety**: Unsafe
36202
36378
  *
@@ -36265,7 +36441,7 @@ interface StyleRule extends StyleBase {
36265
36441
  * @param this
36266
36442
  * @param table
36267
36443
  */
36268
- SetProperties(this: StyleRule, table: object): void;
36444
+ SetProperties(this: StyleRule, styleProperties: object): void;
36269
36445
  /**
36270
36446
  * - **ThreadSafety**: Unsafe
36271
36447
  *
@@ -103,6 +103,7 @@ interface Services {
103
103
  LSPFileSyncService: LSPFileSyncService;
104
104
  LuauScriptAnalyzerService: LuauScriptAnalyzerService;
105
105
  MarketplaceService: MarketplaceService;
106
+ MatchmakingService: MatchmakingService;
106
107
  MaterialGenerationService: MaterialGenerationService;
107
108
  MaterialService: MaterialService;
108
109
  MemoryStoreService: MemoryStoreService;
@@ -807,7 +808,7 @@ interface EditableMesh extends RBXObject {
807
808
  readonly _nominal_EditableMesh: unique symbol;
808
809
  }
809
810
  /**
810
- * Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
811
+ * `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
811
812
  *
812
813
  * - **Tags**: NotCreatable, NotBrowsable
813
814
  *
@@ -838,7 +839,7 @@ interface Instance extends RBXObject {
838
839
  * - **Tags**: NotBrowsable
839
840
  *
840
841
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/Instance#GetDebugId)
841
- * @param this Instance is the base class for all classes in the Roblox class hierarchy which can be part of the DataModel tree.
842
+ * @param this `Instance` is the base class for all classes in the Roblox class hierarchy which can be part of the `DataModel` tree.
842
843
  * @param scopeLength The scope length.
843
844
  * @returns The Debug ID string.
844
845
  */
@@ -2183,7 +2184,6 @@ interface BaseWrap extends Instance {
2183
2184
  readonly _nominal_BaseWrap: unique symbol;
2184
2185
  /**
2185
2186
  * - **ThreadSafety**: ReadSafe
2186
- * - **Tags**: Hidden
2187
2187
  *
2188
2188
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BaseWrap#CageMeshContent)
2189
2189
  */
@@ -2252,7 +2252,6 @@ interface WrapLayer extends BaseWrap {
2252
2252
  set BindOffset(value: CFrame);
2253
2253
  /**
2254
2254
  * - **ThreadSafety**: ReadSafe
2255
- * - **Tags**: Hidden
2256
2255
  *
2257
2256
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/WrapLayer#ReferenceMeshContent)
2258
2257
  */
@@ -7529,6 +7528,21 @@ interface MarketplaceService extends Instance {
7529
7528
  */
7530
7529
  readonly _nominal_MarketplaceService: unique symbol;
7531
7530
  }
7531
+ /**
7532
+ * - **Tags**: NotCreatable, Service, NotReplicated
7533
+ *
7534
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService)
7535
+ */
7536
+ interface MatchmakingService extends Instance {
7537
+ /**
7538
+ * **DO NOT USE!**
7539
+ *
7540
+ * This field exists to force TypeScript to recognize this as a nominal type
7541
+ * @hidden
7542
+ * @deprecated
7543
+ */
7544
+ readonly _nominal_MatchmakingService: unique symbol;
7545
+ }
7532
7546
  /**
7533
7547
  * - **Tags**: NotCreatable, Service, NotReplicated
7534
7548
  *
@@ -1672,11 +1672,20 @@ declare namespace Enum {
1672
1672
  EnumType: typeof globalThis.Enum.AnnotationRequestResult;
1673
1673
  }
1674
1674
  export const ErrorNotFound: ErrorNotFound;
1675
+ /**
1676
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestResult#ErrorModerated)
1677
+ */
1678
+ export interface ErrorModerated extends globalThis.EnumItem {
1679
+ Name: "ErrorModerated";
1680
+ Value: 3;
1681
+ EnumType: typeof globalThis.Enum.AnnotationRequestResult;
1682
+ }
1683
+ export const ErrorModerated: ErrorModerated;
1675
1684
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.AnnotationRequestResult>;
1676
1685
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.AnnotationRequestResult | undefined;
1677
1686
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.AnnotationRequestResult | undefined;
1678
1687
  }
1679
- export type AnnotationRequestResult = AnnotationRequestResult.Success | AnnotationRequestResult.ErrorInternalFailure | AnnotationRequestResult.ErrorNotFound;
1688
+ export type AnnotationRequestResult = AnnotationRequestResult.Success | AnnotationRequestResult.ErrorInternalFailure | AnnotationRequestResult.ErrorNotFound | AnnotationRequestResult.ErrorModerated;
1680
1689
  /**
1681
1690
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/AnnotationRequestType)
1682
1691
  */
@@ -7781,6 +7790,8 @@ declare namespace Enum {
7781
7790
  }
7782
7791
  export const EmotesMenu: EmotesMenu;
7783
7792
  /**
7793
+ * A player's perspective or view of their own character.
7794
+ *
7784
7795
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/CoreGuiType#SelfView)
7785
7796
  */
7786
7797
  export interface SelfView extends globalThis.EnumItem {
@@ -14300,7 +14311,7 @@ declare namespace Enum {
14300
14311
  }
14301
14312
  export type JointCreationMode = JointCreationMode.All | JointCreationMode.Surface | JointCreationMode.None;
14302
14313
  /**
14303
- * A physical button that a user is pressing.
14314
+ * Byte keycodes that represent the key or button involved in user input.
14304
14315
  *
14305
14316
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode)
14306
14317
  */
@@ -14350,7 +14361,7 @@ declare namespace Enum {
14350
14361
  }
14351
14362
  export const Clear: Clear;
14352
14363
  /**
14353
- * Better known as enter.
14364
+ * Frequently known as **Enter**.
14354
14365
  *
14355
14366
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#Return)
14356
14367
  */
@@ -16902,7 +16913,7 @@ declare namespace Enum {
16902
16913
  }
16903
16914
  export const Undo: Undo;
16904
16915
  /**
16905
- * Gamepad X button.
16916
+ * Gamepad `X` button.
16906
16917
  *
16907
16918
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonX)
16908
16919
  */
@@ -16913,7 +16924,7 @@ declare namespace Enum {
16913
16924
  }
16914
16925
  export const ButtonX: ButtonX;
16915
16926
  /**
16916
- * Gamepad Y button.
16927
+ * Gamepad `Y` button.
16917
16928
  *
16918
16929
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonY)
16919
16930
  */
@@ -16924,7 +16935,7 @@ declare namespace Enum {
16924
16935
  }
16925
16936
  export const ButtonY: ButtonY;
16926
16937
  /**
16927
- * Gamepad A button.
16938
+ * Gamepad `A` button.
16928
16939
  *
16929
16940
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonA)
16930
16941
  */
@@ -16935,7 +16946,7 @@ declare namespace Enum {
16935
16946
  }
16936
16947
  export const ButtonA: ButtonA;
16937
16948
  /**
16938
- * Gamepad B button.
16949
+ * Gamepad `B` button.
16939
16950
  *
16940
16951
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonB)
16941
16952
  */
@@ -16946,7 +16957,7 @@ declare namespace Enum {
16946
16957
  }
16947
16958
  export const ButtonB: ButtonB;
16948
16959
  /**
16949
- * Gamepad R1 button.
16960
+ * Gamepad `R1` button.
16950
16961
  *
16951
16962
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonR1)
16952
16963
  */
@@ -16957,7 +16968,7 @@ declare namespace Enum {
16957
16968
  }
16958
16969
  export const ButtonR1: ButtonR1;
16959
16970
  /**
16960
- * Gamepad L1 button.
16971
+ * Gamepad `L1` button.
16961
16972
  *
16962
16973
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonL1)
16963
16974
  */
@@ -16968,7 +16979,7 @@ declare namespace Enum {
16968
16979
  }
16969
16980
  export const ButtonL1: ButtonL1;
16970
16981
  /**
16971
- * Gamepad R2 button.
16982
+ * Gamepad `R2` button.
16972
16983
  *
16973
16984
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonR2)
16974
16985
  */
@@ -16979,7 +16990,7 @@ declare namespace Enum {
16979
16990
  }
16980
16991
  export const ButtonR2: ButtonR2;
16981
16992
  /**
16982
- * Gamepad L2 button.
16993
+ * Gamepad `L2` button.
16983
16994
  *
16984
16995
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonL2)
16985
16996
  */
@@ -16990,7 +17001,7 @@ declare namespace Enum {
16990
17001
  }
16991
17002
  export const ButtonL2: ButtonL2;
16992
17003
  /**
16993
- * Gamepad R3 button.
17004
+ * Gamepad `R3` button.
16994
17005
  *
16995
17006
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonR3)
16996
17007
  */
@@ -17001,7 +17012,7 @@ declare namespace Enum {
17001
17012
  }
17002
17013
  export const ButtonR3: ButtonR3;
17003
17014
  /**
17004
- * Gamepad L3 button.
17015
+ * Gamepad `L3` button.
17005
17016
  *
17006
17017
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonL3)
17007
17018
  */
@@ -17012,7 +17023,7 @@ declare namespace Enum {
17012
17023
  }
17013
17024
  export const ButtonL3: ButtonL3;
17014
17025
  /**
17015
- * Gamepad Start button.
17026
+ * Gamepad `Start` button.
17016
17027
  *
17017
17028
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonStart)
17018
17029
  */
@@ -17023,7 +17034,7 @@ declare namespace Enum {
17023
17034
  }
17024
17035
  export const ButtonStart: ButtonStart;
17025
17036
  /**
17026
- * Gamepad Select button.
17037
+ * Gamepad `Select` button.
17027
17038
  *
17028
17039
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#ButtonSelect)
17029
17040
  */
@@ -17100,6 +17111,8 @@ declare namespace Enum {
17100
17111
  }
17101
17112
  export const Thumbstick2: Thumbstick2;
17102
17113
  /**
17114
+ * **Deprecated:** This enum is deprecated and flagged for removal.
17115
+ *
17103
17116
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseLeftButton)
17104
17117
  */
17105
17118
  export interface MouseLeftButton extends globalThis.EnumItem {
@@ -17109,6 +17122,8 @@ declare namespace Enum {
17109
17122
  }
17110
17123
  export const MouseLeftButton: MouseLeftButton;
17111
17124
  /**
17125
+ * **Deprecated:** This enum is deprecated and flagged for removal.
17126
+ *
17112
17127
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseRightButton)
17113
17128
  */
17114
17129
  export interface MouseRightButton extends globalThis.EnumItem {
@@ -17118,6 +17133,8 @@ declare namespace Enum {
17118
17133
  }
17119
17134
  export const MouseRightButton: MouseRightButton;
17120
17135
  /**
17136
+ * **Deprecated:** This enum is deprecated and flagged for removal.
17137
+ *
17121
17138
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseMiddleButton)
17122
17139
  */
17123
17140
  export interface MouseMiddleButton extends globalThis.EnumItem {
@@ -17127,6 +17144,8 @@ declare namespace Enum {
17127
17144
  }
17128
17145
  export const MouseMiddleButton: MouseMiddleButton;
17129
17146
  /**
17147
+ * **Deprecated:** This enum is deprecated and flagged for removal.
17148
+ *
17130
17149
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseBackButton)
17131
17150
  */
17132
17151
  export interface MouseBackButton extends globalThis.EnumItem {
@@ -17136,6 +17155,8 @@ declare namespace Enum {
17136
17155
  }
17137
17156
  export const MouseBackButton: MouseBackButton;
17138
17157
  /**
17158
+ * **Deprecated:** This enum is deprecated and flagged for removal.
17159
+ *
17139
17160
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseNoButton)
17140
17161
  */
17141
17162
  export interface MouseNoButton extends globalThis.EnumItem {
@@ -17145,6 +17166,8 @@ declare namespace Enum {
17145
17166
  }
17146
17167
  export const MouseNoButton: MouseNoButton;
17147
17168
  /**
17169
+ * **Deprecated:** This enum is deprecated and flagged for removal.
17170
+ *
17148
17171
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseX)
17149
17172
  */
17150
17173
  export interface MouseX extends globalThis.EnumItem {
@@ -17154,6 +17177,8 @@ declare namespace Enum {
17154
17177
  }
17155
17178
  export const MouseX: MouseX;
17156
17179
  /**
17180
+ * **Deprecated:** This enum is deprecated and flagged for removal.
17181
+ *
17157
17182
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/KeyCode#MouseY)
17158
17183
  */
17159
17184
  export interface MouseY extends globalThis.EnumItem {
@@ -24789,11 +24814,20 @@ declare namespace Enum {
24789
24814
  EnumType: typeof globalThis.Enum.SecurityCapability;
24790
24815
  }
24791
24816
  export const LegacySound: LegacySound;
24817
+ /**
24818
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/enums/SecurityCapability#Players)
24819
+ */
24820
+ export interface Players extends globalThis.EnumItem {
24821
+ Name: "Players";
24822
+ Value: 21;
24823
+ EnumType: typeof globalThis.Enum.SecurityCapability;
24824
+ }
24825
+ export const Players: Players;
24792
24826
  export function GetEnumItems(this: globalThis.Enum): Array<globalThis.Enum.SecurityCapability>;
24793
24827
  export function FromName(this: globalThis.Enum, name: string): globalThis.Enum.SecurityCapability | undefined;
24794
24828
  export function FromValue(this: globalThis.Enum, value: number): globalThis.Enum.SecurityCapability | undefined;
24795
24829
  }
24796
- export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound;
24830
+ export type SecurityCapability = SecurityCapability.RunClientScript | SecurityCapability.RunServerScript | SecurityCapability.AccessOutsideWrite | SecurityCapability.AssetRequire | SecurityCapability.LoadString | SecurityCapability.ScriptGlobals | SecurityCapability.CreateInstances | SecurityCapability.Basic | SecurityCapability.Audio | SecurityCapability.DataStore | SecurityCapability.Network | SecurityCapability.Physics | SecurityCapability.UI | SecurityCapability.CSG | SecurityCapability.Chat | SecurityCapability.Animation | SecurityCapability.Avatar | SecurityCapability.Input | SecurityCapability.Environment | SecurityCapability.RemoteEvent | SecurityCapability.LegacySound | SecurityCapability.Players;
24797
24831
  /**
24798
24832
  * Customization options for gamepad selection when `GuiBase2d.SelectionGroup` is true.
24799
24833
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rbxts/types",
3
- "version": "1.0.839",
3
+ "version": "1.0.841",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },