@rbxts/types 1.0.912 → 1.0.914

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.
@@ -48,7 +48,6 @@ interface Services {
48
48
  ContentProvider: ContentProvider;
49
49
  ContextActionService: ContextActionService;
50
50
  ControllerService: ControllerService;
51
- ConversationalAIAcceptanceService: ConversationalAIAcceptanceService;
52
51
  CoreGuiConfiguration: CoreGuiConfiguration;
53
52
  CoreScriptDebuggingManagerHelper: CoreScriptDebuggingManagerHelper;
54
53
  CreationDBService: CreationDBService;
@@ -60,6 +59,7 @@ interface Services {
60
59
  DebuggablePluginWatcher: DebuggablePluginWatcher;
61
60
  DebuggerConnectionManager: DebuggerConnectionManager;
62
61
  DebuggerUIService: DebuggerUIService;
62
+ DeferredAssetManagerService: DeferredAssetManagerService;
63
63
  DeviceIdService: DeviceIdService;
64
64
  DraggerService: DraggerService;
65
65
  EditableService: EditableService;
@@ -93,10 +93,12 @@ interface Services {
93
93
  HeightmapImporterService: HeightmapImporterService;
94
94
  HttpService: HttpService;
95
95
  ILegacyStudioBridge: ILegacyStudioBridge;
96
+ ImageScreenCaptureService: ImageScreenCaptureService;
96
97
  IncrementalPatchBuilder: IncrementalPatchBuilder;
97
98
  InsertService: InsertService;
98
99
  InstanceExtensionsService: InstanceExtensionsService;
99
100
  InstanceFileSyncService: InstanceFileSyncService;
101
+ InternalMessagingService: InternalMessagingService;
100
102
  InternalSyncService: InternalSyncService;
101
103
  IXPService: IXPService;
102
104
  JointsService: JointsService;
@@ -143,9 +145,11 @@ interface Services {
143
145
  PlayerHydrationService: PlayerHydrationService;
144
146
  Players: Players;
145
147
  PlayerViewService: PlayerViewService;
148
+ PluginConnectionService: PluginConnectionService;
146
149
  PluginManagementService: PluginManagementService;
147
150
  PluginPolicyService: PluginPolicyService;
148
151
  PolicyService: PolicyService;
152
+ ProceduralBehaviorSchedulerService: ProceduralBehaviorSchedulerService;
149
153
  ProcessInstancePhysicsService: ProcessInstancePhysicsService;
150
154
  ProximityPromptService: ProximityPromptService;
151
155
  PublishService: PublishService;
@@ -197,6 +201,7 @@ interface Services {
197
201
  Stats: Stats;
198
202
  StudioAssetService: StudioAssetService;
199
203
  StudioCameraService: StudioCameraService;
204
+ StudioCaptureService: StudioCaptureService;
200
205
  StudioDeviceEmulatorService: StudioDeviceEmulatorService;
201
206
  StudioPublishService: StudioPublishService;
202
207
  StudioScriptDebugEventListener: StudioScriptDebugEventListener;
@@ -377,6 +382,7 @@ interface CreatableInstances {
377
382
  Folder: Folder;
378
383
  ForceField: ForceField;
379
384
  Frame: Frame;
385
+ GeneratedFolder: GeneratedFolder;
380
386
  GetTextBoundsParams: GetTextBoundsParams;
381
387
  Glue: Glue;
382
388
  GroundController: GroundController;
@@ -442,9 +448,11 @@ interface CreatableInstances {
442
448
  PointLight: PointLight;
443
449
  Pose: Pose;
444
450
  PrismaticConstraint: PrismaticConstraint;
451
+ ProceduralModel: ProceduralModel;
445
452
  ProximityPrompt: ProximityPrompt;
446
453
  PyramidHandleAdornment: PyramidHandleAdornment;
447
454
  RayValue: RayValue;
455
+ RealtimeMedia: RealtimeMedia;
448
456
  RelativeGui: RelativeGui;
449
457
  RemoteEvent: RemoteEvent;
450
458
  RemoteFunction: RemoteFunction;
@@ -702,6 +710,7 @@ interface Instances extends Services, CreatableInstances {
702
710
  StarterCharacterScripts: StarterCharacterScripts;
703
711
  StarterPlayerScripts: StarterPlayerScripts;
704
712
  StudioObjectBase: StudioObjectBase;
713
+ StudioScreenshotCapture: StudioScreenshotCapture;
705
714
  StudioWidget: StudioWidget;
706
715
  StyleBase: StyleBase;
707
716
  SurfaceGuiBase: SurfaceGuiBase;
@@ -743,6 +752,7 @@ interface Objects extends Instances {
743
752
  MLSession: MLSession;
744
753
  Object: RBXObject;
745
754
  OutputLink: OutputLink;
755
+ PluginConnection: PluginConnection;
746
756
  ScreenshotCapture: ScreenshotCapture;
747
757
  TerrainIterateOperation: TerrainIterateOperation;
748
758
  TerrainModifyOperation: TerrainModifyOperation;
@@ -750,6 +760,7 @@ interface Objects extends Instances {
750
760
  TerrainWriteOperation: TerrainWriteOperation;
751
761
  VideoCapture: VideoCapture;
752
762
  VideoSampler: VideoSampler;
763
+ VirtualInput: VirtualInput;
753
764
  VoxelBuffer: VoxelBuffer;
754
765
  WebStreamClient: WebStreamClient;
755
766
  }
@@ -3242,10 +3253,15 @@ interface AnalyticsService extends Instance {
3242
3253
  */
3243
3254
  LogProgressionStartEvent(this: AnalyticsService, player: Player, progressionPathName: string, level: number, levelName?: string, customFields?: object): void;
3244
3255
  /**
3256
+ * Returns coarse player segment buckets for the current experience.
3257
+ *
3245
3258
  * - **ThreadSafety**: Unsafe
3246
3259
  * - **Tags**: Yields
3247
3260
  *
3248
3261
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#GetPlayerSegmentsAsync)
3262
+ * @param this Collection of methods that allows you to track how users interact with your experiences.
3263
+ * @param player The player whose segment buckets should be returned.
3264
+ * @returns A dictionary containing coarse player segment buckets for the current experience.
3249
3265
  */
3250
3266
  GetPlayerSegmentsAsync(this: AnalyticsService, player: Player): object;
3251
3267
  }
@@ -4304,10 +4320,16 @@ interface AssetService extends Instance {
4304
4320
  */
4305
4321
  CreateAssetVersionAsync(this: AssetService, object: RBXObject, assetType: CastsToEnum<Enum.AssetType>, assetId: number, requestParameters?: object): unknown;
4306
4322
  /**
4323
+ * Creates ephemeral, `DataModel`-scoped content from the provided content input.
4324
+ *
4307
4325
  * - **ThreadSafety**: Unsafe
4308
4326
  * - **Tags**: Yields
4309
4327
  *
4310
4328
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateDataModelContentAsync)
4329
+ * @param this A non-replicated service that handles asset-related queries to the Roblox web API.
4330
+ * @param content Reference to the input content. Currently, this only supports `Content` wrapping a `EditableMesh` or `EditableImage`.
4331
+ * @param options Optional dictionary containing configuration controls for the created `DataModel` content. Currently no controls are surfaced and this parameter exists for future functionality.
4332
+ * @returns A tuple containing an `CreateContentResult` indicating the success or failure of the request, and the resulting `DataModel`-scoped `Opaque` `Content`.
4311
4333
  */
4312
4334
  CreateDataModelContentAsync(this: AssetService, content: Content, options?: object): unknown;
4313
4335
  /**
@@ -4460,7 +4482,9 @@ interface AssetService extends Instance {
4460
4482
  * - `Items` — Array of items in the bundle, each with details represented through the following keys:
4461
4483
  * - `Id` — Item ID
4462
4484
  * - `Name` — Item name
4463
- * - `Type` — Item type such as `"Asset"` .
4485
+ * - `Type` — Item type such as `"Asset"`
4486
+ * - `AssetType` — String representing the `AvatarAssetType`
4487
+ * - `SupportsHeadShapes` — Whether the asset supports head shape swapping. Only present if `AssetType` is `"DynamicHead"`.
4464
4488
  */
4465
4489
  GetBundleDetailsAsync(this: AssetService, bundleId: number): BundleInfo;
4466
4490
  /**
@@ -6596,7 +6620,7 @@ interface AudioPlayer extends Instance {
6596
6620
  */
6597
6621
  AutoPlay: boolean;
6598
6622
  /**
6599
- * Denotes whether this `AudioPlayer` is currently playing.
6623
+ * Denotes whether this `AudioPlayer` is currently playing or planning to play.
6600
6624
  *
6601
6625
  * - **ThreadSafety**: ReadSafe
6602
6626
  *
@@ -6669,6 +6693,12 @@ interface AudioPlayer extends Instance {
6669
6693
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Volume)
6670
6694
  */
6671
6695
  Volume: number;
6696
+ /**
6697
+ * - **ThreadSafety**: Unsafe
6698
+ *
6699
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Cancel)
6700
+ */
6701
+ Cancel(this: AudioPlayer, actionId?: number): boolean;
6672
6702
  /**
6673
6703
  * Returns an array of `Wires` that are connected to the specified pin.
6674
6704
  *
@@ -6707,8 +6737,10 @@ interface AudioPlayer extends Instance {
6707
6737
  *
6708
6738
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Play)
6709
6739
  * @param this Used to play audio assets.
6740
+ * @param atTime A specific time, based on `GetMixerTime`, that this `AudioPlayer` should begin playing at.
6741
+ * @returns If `atTime` was provided, a unique ID, which can be passed to `Cancel()`.
6710
6742
  */
6711
- Play(this: AudioPlayer): void;
6743
+ Play(this: AudioPlayer, atTime?: number): number | undefined;
6712
6744
  /**
6713
6745
  * Stops the `AudioPlayer` wherever its `TimePosition` is.
6714
6746
  *
@@ -6716,8 +6748,10 @@ interface AudioPlayer extends Instance {
6716
6748
  *
6717
6749
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AudioPlayer#Stop)
6718
6750
  * @param this Used to play audio assets.
6751
+ * @param atTime A specific time, based on `GetMixerTime`, that this `AudioPlayer` should stop playing at.
6752
+ * @returns If `atTime` was provided, a unique ID, which can be passed to `Cancel()`.
6719
6753
  */
6720
- Stop(this: AudioPlayer): void;
6754
+ Stop(this: AudioPlayer, atTime?: number): number | undefined;
6721
6755
  /**
6722
6756
  * Returns a sampling of the waveform data for the loaded `Asset`.
6723
6757
  *
@@ -7571,6 +7605,12 @@ interface AuroraScriptService extends Instance {
7571
7605
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#FindBindings)
7572
7606
  */
7573
7607
  FindBindings(this: AuroraScriptService, instance: Instance): object;
7608
+ /**
7609
+ * - **ThreadSafety**: Unsafe
7610
+ *
7611
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraScriptService#GetAllCollections)
7612
+ */
7613
+ GetAllCollections(this: AuroraScriptService): Array<unknown>;
7574
7614
  /**
7575
7615
  * - **ThreadSafety**: Safe
7576
7616
  *
@@ -7681,9 +7721,9 @@ interface AuroraService extends Instance {
7681
7721
  /**
7682
7722
  * - **ThreadSafety**: Unsafe
7683
7723
  *
7684
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#SetIncomingReplicationLag)
7724
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#SetReplicationLag)
7685
7725
  */
7686
- SetIncomingReplicationLag(this: AuroraService, seconds: number): void;
7726
+ SetReplicationLag(this: AuroraService, seconds: number): void;
7687
7727
  /**
7688
7728
  * - **ThreadSafety**: Unsafe
7689
7729
  *
@@ -7732,12 +7772,6 @@ interface AuroraService extends Instance {
7732
7772
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#FixedRateTick)
7733
7773
  */
7734
7774
  readonly FixedRateTick: RBXScriptSignal<(deltaTime: number, worldStepId: number) => void>;
7735
- /**
7736
- * - **ThreadSafety**: Unsafe
7737
- *
7738
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AuroraService#Misprediction)
7739
- */
7740
- readonly Misprediction: RBXScriptSignal<(remoteWorldStepId: number, mispredictedInstances: Array<unknown>) => void>;
7741
7775
  /**
7742
7776
  * - **ThreadSafety**: Unsafe
7743
7777
  *
@@ -8209,12 +8243,15 @@ interface AvatarEditorService extends Instance {
8209
8243
  */
8210
8244
  ConformToAvatarRules(this: AvatarEditorService, humanoidDescription: HumanoidDescription): HumanoidDescription;
8211
8245
  /**
8246
+ * Returns a copy of the given `HumanoidDescription` that conforms to the platform Avatar rules.
8247
+ *
8212
8248
  * - **ThreadSafety**: Unsafe
8213
8249
  * - **Tags**: Yields
8214
8250
  *
8215
8251
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#ConformToAvatarRulesAsync)
8216
8252
  * @param this A service to support developer Avatar Editors.
8217
- * @param humanoidDescription
8253
+ * @param humanoidDescription The `HumanoidDescription` to conform.
8254
+ * @returns A new `HumanoidDescription` that conforms to the platform Avatar rules.
8218
8255
  */
8219
8256
  ConformToAvatarRulesAsync(this: AvatarEditorService, humanoidDescription: HumanoidDescription): HumanoidDescription;
8220
8257
  /**
@@ -8306,10 +8343,14 @@ interface AvatarEditorService extends Instance {
8306
8343
  */
8307
8344
  GetFavoriteAsync(this: AvatarEditorService, itemId: number, itemType: CastsToEnum<Enum.AvatarItemType>): boolean;
8308
8345
  /**
8346
+ * Returns an array of head shape names that the `Players.LocalPlayer` owns.
8347
+ *
8309
8348
  * - **ThreadSafety**: Unsafe
8310
8349
  * - **Tags**: Yields
8311
8350
  *
8312
8351
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#GetHeadShapesAsync)
8352
+ * @param this A service to support developer Avatar Editors.
8353
+ * @returns An array of strings, each identifying a head shape owned by `Players.LocalPlayer`. Possible values include: `"RobloxClassic"`, `"Blockhead"`, `"Cheeks"`, `"Chiseled"`, `"CoolThing"`, `"EraserHead"`, `"FatHead"`, `"FlatTop"`, `"GoldenKorbloxGeneral"`, `"GoldenMrRobot"`, `"KnightOfChivalry"`, `"KnightOfCourage"`, `"ManHead"`, `"MercilessNinja"`, `"Narrow"`, `"Paragon"`, `"Peabrain"`, `"Perfection"`, `"Roll"`, `"Roundy"`, `"RoxBox"`, `"TheEngineer"`, `"Trim"`, `"WomanHead"`.
8313
8354
  */
8314
8355
  GetHeadShapesAsync(this: AvatarEditorService): Array<unknown>;
8315
8356
  /**
@@ -8687,7 +8728,7 @@ interface BadgeService extends Instance {
8687
8728
  * @param this Provides information on badges and awards them.
8688
8729
  * @param userId The `UserId` of the player to check for ownership of the specified badges.
8689
8730
  * @param badgeIds The list of IDs of the badges to check ownership of. Maximum length of 10.
8690
- * @returns The list of badge IDs the given user owns out of the provided badge IDs. Empty if none of the provided badges are owned by the given user. Not guaranteed to be in the same order as the input list.
8731
+ * @returns The list of badge IDs the given user owns out of the provided badge IDs. Empty if none of the provided badges are owned by the given user. Not guaranteed to be in the same order as the input list. Some badge IDs may be omitted if the user with the target `userId` has not recently been in the server and the badge IDs are not associated with the requesting experience.
8691
8732
  */
8692
8733
  CheckUserBadgesAsync(this: BadgeService, userId: number, badgeIds: Array<unknown>): Array<unknown>;
8693
8734
  /**
@@ -9256,6 +9297,12 @@ interface RootImportData extends BaseImportData {
9256
9297
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#MergeMeshes)
9257
9298
  */
9258
9299
  MergeMeshes: boolean;
9300
+ /**
9301
+ * - **ThreadSafety**: ReadSafe
9302
+ *
9303
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#PhysicalConstraintType)
9304
+ */
9305
+ PhysicalConstraintType: Enum.PhysicalConstraintType;
9259
9306
  /**
9260
9307
  * - **ThreadSafety**: ReadSafe
9261
9308
  * - **Tags**: NotReplicated
@@ -12714,8 +12761,6 @@ interface AnimationConstraint extends Constraint {
12714
12761
  */
12715
12762
  readonly _nominal_AnimationConstraint: unique symbol;
12716
12763
  /**
12717
- * **Deprecated:**
12718
- *
12719
12764
  * - **ThreadSafety**: ReadSafe
12720
12765
  * - **Tags**: Hidden, NotReplicated
12721
12766
  *
@@ -12725,8 +12770,6 @@ interface AnimationConstraint extends Constraint {
12725
12770
  */
12726
12771
  readonly C0: CFrame;
12727
12772
  /**
12728
- * **Deprecated:**
12729
- *
12730
12773
  * - **ThreadSafety**: ReadSafe
12731
12774
  * - **Tags**: Hidden, NotReplicated
12732
12775
  *
@@ -12760,8 +12803,6 @@ interface AnimationConstraint extends Constraint {
12760
12803
  */
12761
12804
  MaxTorque: number;
12762
12805
  /**
12763
- * **Deprecated:**
12764
- *
12765
12806
  * - **ThreadSafety**: ReadSafe
12766
12807
  * - **Tags**: Hidden, NotReplicated
12767
12808
  *
@@ -12771,8 +12812,6 @@ interface AnimationConstraint extends Constraint {
12771
12812
  */
12772
12813
  readonly Part0: BasePart | undefined;
12773
12814
  /**
12774
- * **Deprecated:**
12775
- *
12776
12815
  * - **ThreadSafety**: ReadSafe
12777
12816
  * - **Tags**: Hidden, NotReplicated
12778
12817
  *
@@ -14898,21 +14937,6 @@ interface ControllerService extends Instance {
14898
14937
  */
14899
14938
  readonly _nominal_ControllerService: unique symbol;
14900
14939
  }
14901
- /**
14902
- * - **Tags**: NotCreatable, Service, NotReplicated
14903
- *
14904
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ConversationalAIAcceptanceService)
14905
- */
14906
- interface ConversationalAIAcceptanceService extends Instance {
14907
- /**
14908
- * **DO NOT USE!**
14909
- *
14910
- * This field exists to force TypeScript to recognize this as a nominal type
14911
- * @hidden
14912
- * @deprecated
14913
- */
14914
- readonly _nominal_ConversationalAIAcceptanceService: unique symbol;
14915
- }
14916
14940
  /**
14917
14941
  * - **Tags**: NotCreatable, Service, NotReplicated
14918
14942
  *
@@ -15746,6 +15770,21 @@ interface DebuggerVariable extends Instance {
15746
15770
  */
15747
15771
  readonly _nominal_DebuggerVariable: unique symbol;
15748
15772
  }
15773
+ /**
15774
+ * - **Tags**: NotCreatable, Service, NotReplicated
15775
+ *
15776
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/DeferredAssetManagerService)
15777
+ */
15778
+ interface DeferredAssetManagerService extends Instance {
15779
+ /**
15780
+ * **DO NOT USE!**
15781
+ *
15782
+ * This field exists to force TypeScript to recognize this as a nominal type
15783
+ * @hidden
15784
+ * @deprecated
15785
+ */
15786
+ readonly _nominal_DeferredAssetManagerService: unique symbol;
15787
+ }
15749
15788
  /**
15750
15789
  * - **Tags**: NotCreatable, Service, NotReplicated
15751
15790
  *
@@ -17513,6 +17552,25 @@ interface Folder extends Instance {
17513
17552
  */
17514
17553
  readonly _nominal_Folder: unique symbol;
17515
17554
  }
17555
+ /**
17556
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeneratedFolder)
17557
+ */
17558
+ interface GeneratedFolder extends Folder {
17559
+ /**
17560
+ * **DO NOT USE!**
17561
+ *
17562
+ * This field exists to force TypeScript to recognize this as a nominal type
17563
+ * @hidden
17564
+ * @deprecated
17565
+ */
17566
+ readonly _nominal_GeneratedFolder: unique symbol;
17567
+ /**
17568
+ * - **ThreadSafety**: Unsafe
17569
+ *
17570
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/GeneratedFolder#SetPrimaryPart)
17571
+ */
17572
+ SetPrimaryPart(this: GeneratedFolder, part: BasePart): void;
17573
+ }
17516
17574
  /**
17517
17575
  * Protects a `Humanoid` from taking damage dealt through the `Humanoid:TakeDamage()` method and protects `BaseParts` from having their joints broken due to an `Explosion`.
17518
17576
  *
@@ -18092,6 +18150,8 @@ interface DataStore extends GlobalDataStore {
18092
18150
  */
18093
18151
  ListVersionsAsync(this: DataStore, key: string, sortDirection?: CastsToEnum<Enum.SortDirection>, minDate?: number, maxDate?: number, pageSize?: number): DataStoreVersionPages;
18094
18152
  /**
18153
+ * **Deprecated:**
18154
+ *
18095
18155
  * Permanently deletes the specified version of a key.
18096
18156
  *
18097
18157
  * - **ThreadSafety**: Unsafe
@@ -20054,7 +20114,7 @@ interface TextBox extends GuiObject {
20054
20114
  */
20055
20115
  Font: Enum.Font;
20056
20116
  /**
20057
- * Determines the font used to render text.
20117
+ * Determines the font face used to render text.
20058
20118
  *
20059
20119
  * - **ThreadSafety**: ReadSafe
20060
20120
  *
@@ -20091,7 +20151,7 @@ interface TextBox extends GuiObject {
20091
20151
  */
20092
20152
  MaxVisibleGraphemes: number;
20093
20153
  /**
20094
- * When set to `true`, text inside a `TextBox` is able to move onto multiple lines. This also enables players to use the enter key to move onto a new line.
20154
+ * When set to `true`, text inside a `TextBox` is able to move onto multiple lines.
20095
20155
  *
20096
20156
  * - **ThreadSafety**: ReadSafe
20097
20157
  *
@@ -20112,7 +20172,7 @@ interface TextBox extends GuiObject {
20112
20172
  */
20113
20173
  readonly OpenTypeFeaturesError: string;
20114
20174
  /**
20115
- * Sets the text color that gets used when no text has been entered into the `TextBox` yet.
20175
+ * Sets the text color that gets used when no text has been entered into the `TextBox`.
20116
20176
  *
20117
20177
  * - **ThreadSafety**: ReadSafe
20118
20178
  *
@@ -20120,7 +20180,7 @@ interface TextBox extends GuiObject {
20120
20180
  */
20121
20181
  PlaceholderColor3: Color3;
20122
20182
  /**
20123
- * Sets the text that gets displayed when no text has been entered into the `TextBox` yet.
20183
+ * Sets the text that gets displayed when no text has been entered into the `TextBox`.
20124
20184
  *
20125
20185
  * - **ThreadSafety**: ReadSafe
20126
20186
  *
@@ -20128,7 +20188,7 @@ interface TextBox extends GuiObject {
20128
20188
  */
20129
20189
  PlaceholderText: string;
20130
20190
  /**
20131
- * Determines whether the `TextBox` renders the `TextBox.Text` string using rich text formatting.
20191
+ * Determines whether the `TextBox` renders the `Text` string using rich text formatting.
20132
20192
  *
20133
20193
  * - **ThreadSafety**: ReadSafe
20134
20194
  *
@@ -20136,7 +20196,7 @@ interface TextBox extends GuiObject {
20136
20196
  */
20137
20197
  RichText: boolean;
20138
20198
  /**
20139
- * Determines the starting position of a text selection, or -1 if no text is selected.
20199
+ * Determines the starting position of a text selection.
20140
20200
  *
20141
20201
  * - **ThreadSafety**: ReadSafe
20142
20202
  *
@@ -20144,7 +20204,7 @@ interface TextBox extends GuiObject {
20144
20204
  */
20145
20205
  SelectionStart: number;
20146
20206
  /**
20147
- * If set to true, input native to the platform is used instead of Roblox's built-in keyboard.
20207
+ * If set to `true`, input native to the platform is used instead of Roblox's built-in keyboard.
20148
20208
  *
20149
20209
  * - **ThreadSafety**: ReadSafe
20150
20210
  *
@@ -20152,7 +20212,7 @@ interface TextBox extends GuiObject {
20152
20212
  */
20153
20213
  ShowNativeInput: boolean;
20154
20214
  /**
20155
- * Determines the string rendered by the UI element.
20215
+ * Determines the string rendered by the `TextBox` element.
20156
20216
  *
20157
20217
  * - **ThreadSafety**: ReadSafe
20158
20218
  *
@@ -20160,7 +20220,7 @@ interface TextBox extends GuiObject {
20160
20220
  */
20161
20221
  Text: string;
20162
20222
  /**
20163
- * The size of a UI element's text in offsets.
20223
+ * The size of a `TextBox` element's text in offsets.
20164
20224
  *
20165
20225
  * - **ThreadSafety**: ReadSafe
20166
20226
  * - **Tags**: NotReplicated
@@ -20180,7 +20240,7 @@ interface TextBox extends GuiObject {
20180
20240
  */
20181
20241
  TextColor: BrickColor;
20182
20242
  /**
20183
- * Determines the color of rendered text.
20243
+ * Determines the color of non-placeholder rendered text.
20184
20244
  *
20185
20245
  * - **ThreadSafety**: ReadSafe
20186
20246
  *
@@ -20202,7 +20262,7 @@ interface TextBox extends GuiObject {
20202
20262
  */
20203
20263
  TextEditable: boolean;
20204
20264
  /**
20205
- * Whether the text fits within the constraints of the TextBox.
20265
+ * Whether the text fits within the constraints of the `TextBox`.
20206
20266
  *
20207
20267
  * - **ThreadSafety**: ReadSafe
20208
20268
  * - **Tags**: NotReplicated
@@ -20211,7 +20271,7 @@ interface TextBox extends GuiObject {
20211
20271
  */
20212
20272
  readonly TextFits: boolean;
20213
20273
  /**
20214
- * Changes whether text is resized to fit the GUI object that renders it.
20274
+ * Changes whether text is resized to fit within the `TextBox`.
20215
20275
  *
20216
20276
  * - **ThreadSafety**: ReadSafe
20217
20277
  *
@@ -20243,7 +20303,7 @@ interface TextBox extends GuiObject {
20243
20303
  */
20244
20304
  TextStrokeTransparency: number;
20245
20305
  /**
20246
- * Determines the transparency of rendered text.
20306
+ * Determines the transparency of the rendered text.
20247
20307
  *
20248
20308
  * - **ThreadSafety**: ReadSafe
20249
20309
  *
@@ -20251,7 +20311,7 @@ interface TextBox extends GuiObject {
20251
20311
  */
20252
20312
  TextTransparency: number;
20253
20313
  /**
20254
- * Controls the truncation of the text displayed in this TextBox.
20314
+ * Controls the truncation of the text displayed in the `TextBox`.
20255
20315
  *
20256
20316
  * - **ThreadSafety**: ReadSafe
20257
20317
  *
@@ -20270,7 +20330,7 @@ interface TextBox extends GuiObject {
20270
20330
  */
20271
20331
  TextWrap: boolean;
20272
20332
  /**
20273
- * Determines if text wraps to multiple lines within the `GuiObject` element space, truncating excess text.
20333
+ * Determines if text wraps to multiple lines within the `TextBox` element space, truncating excess text.
20274
20334
  *
20275
20335
  * - **ThreadSafety**: ReadSafe
20276
20336
  *
@@ -20278,7 +20338,7 @@ interface TextBox extends GuiObject {
20278
20338
  */
20279
20339
  TextWrapped: boolean;
20280
20340
  /**
20281
- * Determines the horizontal alignment of rendered text.
20341
+ * Determines the horizontal alignment of the rendered text.
20282
20342
  *
20283
20343
  * - **ThreadSafety**: ReadSafe
20284
20344
  *
@@ -20286,7 +20346,7 @@ interface TextBox extends GuiObject {
20286
20346
  */
20287
20347
  TextXAlignment: Enum.TextXAlignment;
20288
20348
  /**
20289
- * Determines the vertical alignment of rendered text.
20349
+ * Determines the vertical alignment of the rendered text.
20290
20350
  *
20291
20351
  * - **ThreadSafety**: ReadSafe
20292
20352
  *
@@ -20294,7 +20354,7 @@ interface TextBox extends GuiObject {
20294
20354
  */
20295
20355
  TextYAlignment: Enum.TextYAlignment;
20296
20356
  /**
20297
- * Forces the client to focus on the TextBox.
20357
+ * Forces the client to focus on the `TextBox`.
20298
20358
  *
20299
20359
  * - **ThreadSafety**: Unsafe
20300
20360
  *
@@ -20322,7 +20382,7 @@ interface TextBox extends GuiObject {
20322
20382
  */
20323
20383
  ReleaseFocus(this: TextBox, submitted?: boolean): void;
20324
20384
  /**
20325
- * Fires when the client lets their focus leave the `TextBox`.
20385
+ * Fires when the `TextBox` loses its focus.
20326
20386
  *
20327
20387
  * - **ThreadSafety**: Unsafe
20328
20388
  *
@@ -24328,6 +24388,8 @@ interface HumanoidDescription extends Instance {
24328
24388
  */
24329
24389
  ShouldersAccessory: string;
24330
24390
  /**
24391
+ * When `true`, disables facial animations on a Dynamic Head, displaying a static mood pose instead. Defaults to `false`.
24392
+ *
24331
24393
  * - **ThreadSafety**: ReadSafe
24332
24394
  *
24333
24395
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/HumanoidDescription#StaticFacialAnimation)
@@ -25400,6 +25462,21 @@ interface IXPService extends Instance {
25400
25462
  */
25401
25463
  readonly _nominal_IXPService: unique symbol;
25402
25464
  }
25465
+ /**
25466
+ * - **Tags**: NotCreatable, Service
25467
+ *
25468
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImageScreenCaptureService)
25469
+ */
25470
+ interface ImageScreenCaptureService extends Instance {
25471
+ /**
25472
+ * **DO NOT USE!**
25473
+ *
25474
+ * This field exists to force TypeScript to recognize this as a nominal type
25475
+ * @hidden
25476
+ * @deprecated
25477
+ */
25478
+ readonly _nominal_ImageScreenCaptureService: unique symbol;
25479
+ }
25403
25480
  /**
25404
25481
  * - **Tags**: NotCreatable, NotReplicated
25405
25482
  *
@@ -26119,6 +26196,21 @@ interface InstanceFileSyncService extends Instance {
26119
26196
  */
26120
26197
  readonly _nominal_InstanceFileSyncService: unique symbol;
26121
26198
  }
26199
+ /**
26200
+ * - **Tags**: NotCreatable, Service, NotReplicated
26201
+ *
26202
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/InternalMessagingService)
26203
+ */
26204
+ interface InternalMessagingService extends Instance {
26205
+ /**
26206
+ * **DO NOT USE!**
26207
+ *
26208
+ * This field exists to force TypeScript to recognize this as a nominal type
26209
+ * @hidden
26210
+ * @deprecated
26211
+ */
26212
+ readonly _nominal_InternalMessagingService: unique symbol;
26213
+ }
26122
26214
  /**
26123
26215
  * - **Tags**: NotReplicated
26124
26216
  *
@@ -28034,6 +28126,8 @@ interface MLService extends Instance {
28034
28126
  CreateSessionAsync(this: MLService, assetId: string): MLSession;
28035
28127
  }
28036
28128
  /**
28129
+ * Describes the appearance of a makeup item for the `HumanoidDescription`.
28130
+ *
28037
28131
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription)
28038
28132
  */
28039
28133
  interface MakeupDescription extends Instance {
@@ -28046,34 +28140,44 @@ interface MakeupDescription extends Instance {
28046
28140
  */
28047
28141
  readonly _nominal_MakeupDescription: unique symbol;
28048
28142
  /**
28143
+ * The asset ID that should be applied when applying this `MakeupDescription`.
28144
+ *
28049
28145
  * - **ThreadSafety**: ReadSafe
28050
28146
  *
28051
28147
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#AssetId)
28052
28148
  */
28053
28149
  AssetId: number;
28054
28150
  /**
28151
+ * A reference to the `Instance` that should be used when applying this `MakeupDescription`.
28152
+ *
28055
28153
  * - **ThreadSafety**: ReadSafe
28056
28154
  *
28057
28155
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#Instance)
28058
28156
  */
28059
28157
  Instance: Instance | undefined;
28060
28158
  /**
28159
+ * The `MakeupType` of the makeup item referred to by this description.
28160
+ *
28061
28161
  * - **ThreadSafety**: ReadSafe
28062
28162
  *
28063
28163
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#MakeupType)
28064
28164
  */
28065
28165
  MakeupType: Enum.MakeupType;
28066
28166
  /**
28167
+ * The layering sort order for the makeup item.
28168
+ *
28067
28169
  * - **ThreadSafety**: ReadSafe
28068
28170
  *
28069
28171
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#Order)
28070
28172
  */
28071
28173
  Order: number;
28072
28174
  /**
28175
+ * Returns the applied makeup `Instance`.
28176
+ *
28073
28177
  * - **ThreadSafety**: Unsafe
28074
28178
  *
28075
28179
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MakeupDescription#GetAppliedInstance)
28076
- * @param this
28180
+ * @param this Describes the appearance of a makeup item for the `HumanoidDescription`.
28077
28181
  */
28078
28182
  GetAppliedInstance(this: MakeupDescription): Instance | undefined;
28079
28183
  }
@@ -28249,6 +28353,12 @@ interface MarketplaceService extends Instance {
28249
28353
  * @param currencyType Ignored.
28250
28354
  */
28251
28355
  PromptPurchase(this: MarketplaceService, player: Player, assetId: number, equipIfPurchased?: boolean, currencyType?: CastsToEnum<Enum.CurrencyType>): void;
28356
+ /**
28357
+ * - **ThreadSafety**: Unsafe
28358
+ *
28359
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptRobloxSubscriptionPurchase)
28360
+ */
28361
+ PromptRobloxSubscriptionPurchase(this: MarketplaceService, user: Player): void;
28252
28362
  /**
28253
28363
  * Prompts a user to purchase a subscription for the given `subscriptionId`.
28254
28364
  *
@@ -28536,6 +28646,12 @@ interface MarketplaceService extends Instance {
28536
28646
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptPurchaseFinished)
28537
28647
  */
28538
28648
  readonly PromptPurchaseFinished: RBXScriptSignal<(player: Player, assetId: number, isPurchased: boolean) => void>;
28649
+ /**
28650
+ * - **ThreadSafety**: Unsafe
28651
+ *
28652
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MarketplaceService#PromptRobloxSubscriptionPurchaseFinished)
28653
+ */
28654
+ readonly PromptRobloxSubscriptionPurchaseFinished: RBXScriptSignal<(user: Player, didTryPurchasing: boolean) => void>;
28539
28655
  /**
28540
28656
  * Fires when a purchase prompt for a subscription is closed.
28541
28657
  *
@@ -32856,6 +32972,51 @@ interface Tool extends BackpackItem {
32856
32972
  */
32857
32973
  readonly Unequipped: RBXScriptSignal<() => void>;
32858
32974
  }
32975
+ /**
32976
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel)
32977
+ */
32978
+ interface ProceduralModel extends Model {
32979
+ /**
32980
+ * **DO NOT USE!**
32981
+ *
32982
+ * This field exists to force TypeScript to recognize this as a nominal type
32983
+ * @hidden
32984
+ * @deprecated
32985
+ */
32986
+ readonly _nominal_ProceduralModel: unique symbol;
32987
+ /**
32988
+ * - **ThreadSafety**: ReadSafe
32989
+ * - **Tags**: NotReplicated
32990
+ *
32991
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel#GenerationError)
32992
+ */
32993
+ readonly GenerationError: string;
32994
+ /**
32995
+ * - **ThreadSafety**: ReadSafe
32996
+ *
32997
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel#Generator)
32998
+ */
32999
+ Generator: ModuleScript | undefined;
33000
+ /**
33001
+ * - **ThreadSafety**: ReadSafe
33002
+ *
33003
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel#Size)
33004
+ */
33005
+ Size: Vector3;
33006
+ /**
33007
+ * - **ThreadSafety**: Unsafe
33008
+ *
33009
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel#ForceGeneration)
33010
+ */
33011
+ ForceGeneration(this: ProceduralModel): boolean;
33012
+ /**
33013
+ * - **ThreadSafety**: Unsafe
33014
+ * - **Tags**: Yields
33015
+ *
33016
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralModel#WaitForGenerationAsync)
33017
+ */
33018
+ WaitForGenerationAsync(this: ProceduralModel): boolean;
33019
+ }
32859
33020
  /**
32860
33021
  * Base class for handling physics simulation and 3D spatial queries.
32861
33022
  *
@@ -36408,6 +36569,21 @@ interface PluginCapabilities extends Instance {
36408
36569
  */
36409
36570
  readonly _nominal_PluginCapabilities: unique symbol;
36410
36571
  }
36572
+ /**
36573
+ * - **Tags**: NotCreatable, Service, NotReplicated
36574
+ *
36575
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnectionService)
36576
+ */
36577
+ interface PluginConnectionService extends Instance {
36578
+ /**
36579
+ * **DO NOT USE!**
36580
+ *
36581
+ * This field exists to force TypeScript to recognize this as a nominal type
36582
+ * @hidden
36583
+ * @deprecated
36584
+ */
36585
+ readonly _nominal_PluginConnectionService: unique symbol;
36586
+ }
36411
36587
  /**
36412
36588
  * - **Tags**: NotCreatable, Service, NotReplicated
36413
36589
  *
@@ -36856,6 +37032,21 @@ interface SunRaysEffect extends PostEffect {
36856
37032
  */
36857
37033
  Spread: number;
36858
37034
  }
37035
+ /**
37036
+ * - **Tags**: NotCreatable, Service, NotReplicated
37037
+ *
37038
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ProceduralBehaviorSchedulerService)
37039
+ */
37040
+ interface ProceduralBehaviorSchedulerService extends Instance {
37041
+ /**
37042
+ * **DO NOT USE!**
37043
+ *
37044
+ * This field exists to force TypeScript to recognize this as a nominal type
37045
+ * @hidden
37046
+ * @deprecated
37047
+ */
37048
+ readonly _nominal_ProceduralBehaviorSchedulerService: unique symbol;
37049
+ }
36859
37050
  /**
36860
37051
  * - **Tags**: NotCreatable, Service
36861
37052
  *
@@ -37258,6 +37449,75 @@ interface RTAnimationTracker extends Instance {
37258
37449
  */
37259
37450
  readonly TrackerPrompt: RBXScriptSignal<(prompt: Enum.TrackerPromptEvent) => void>;
37260
37451
  }
37452
+ /**
37453
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia)
37454
+ */
37455
+ interface RealtimeMedia extends Instance {
37456
+ /**
37457
+ * **DO NOT USE!**
37458
+ *
37459
+ * This field exists to force TypeScript to recognize this as a nominal type
37460
+ * @hidden
37461
+ * @deprecated
37462
+ */
37463
+ readonly _nominal_RealtimeMedia: unique symbol;
37464
+ /**
37465
+ * - **ThreadSafety**: ReadSafe
37466
+ * - **Tags**: NotReplicated
37467
+ *
37468
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#IsConnected)
37469
+ */
37470
+ readonly IsConnected: boolean;
37471
+ /**
37472
+ * - **ThreadSafety**: Unsafe
37473
+ *
37474
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#Disconnect)
37475
+ */
37476
+ Disconnect(this: RealtimeMedia): void;
37477
+ /**
37478
+ * - **ThreadSafety**: Unsafe
37479
+ *
37480
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#GetConnectedWires)
37481
+ */
37482
+ GetConnectedWires(this: RealtimeMedia, pin: string): Array<Instance>;
37483
+ /**
37484
+ * - **ThreadSafety**: Unsafe
37485
+ *
37486
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#GetInputPins)
37487
+ */
37488
+ GetInputPins(this: RealtimeMedia): Array<unknown>;
37489
+ /**
37490
+ * - **ThreadSafety**: Unsafe
37491
+ *
37492
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#GetOutputPins)
37493
+ */
37494
+ GetOutputPins(this: RealtimeMedia): Array<unknown>;
37495
+ /**
37496
+ * - **ThreadSafety**: Unsafe
37497
+ *
37498
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#SendMessage)
37499
+ */
37500
+ SendMessage(this: RealtimeMedia, message: string, binary: boolean): boolean;
37501
+ /**
37502
+ * - **ThreadSafety**: Unsafe
37503
+ * - **Tags**: Yields
37504
+ *
37505
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#ConnectAsync)
37506
+ */
37507
+ ConnectAsync(this: RealtimeMedia, serverUrl: string, connectParams?: object): boolean;
37508
+ /**
37509
+ * - **ThreadSafety**: Unsafe
37510
+ *
37511
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#OnMessage)
37512
+ */
37513
+ readonly OnMessage: RBXScriptSignal<(message: string, binary: boolean) => void>;
37514
+ /**
37515
+ * - **ThreadSafety**: Unsafe
37516
+ *
37517
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RealtimeMedia#WiringChanged)
37518
+ */
37519
+ readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
37520
+ }
37261
37521
  /**
37262
37522
  * A service that provides an interface for you to manage and display personalized content recommendations.
37263
37523
  *
@@ -38024,7 +38284,7 @@ interface RunService extends Instance {
38024
38284
  *
38025
38285
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RunService#Misprediction)
38026
38286
  */
38027
- readonly Misprediction: RBXScriptSignal<(remoteWorldStepId: number, mispredictedInstances: Array<unknown>) => void>;
38287
+ readonly Misprediction: RBXScriptSignal<(time: number, instances: Array<unknown>, stats: object) => void>;
38028
38288
  /**
38029
38289
  * Fires every frame, after the physics simulation has completed.
38030
38290
  *
@@ -38381,6 +38641,18 @@ interface ScriptContext extends Instance {
38381
38641
  * @deprecated
38382
38642
  */
38383
38643
  readonly _nominal_ScriptContext: unique symbol;
38644
+ /**
38645
+ * - **ThreadSafety**: Unsafe
38646
+ *
38647
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScriptContext#EnableCoverage)
38648
+ */
38649
+ EnableCoverage(this: ScriptContext, instance: Instance): void;
38650
+ /**
38651
+ * - **ThreadSafety**: Unsafe
38652
+ *
38653
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ScriptContext#GetCoverageStats)
38654
+ */
38655
+ GetCoverageStats(this: ScriptContext): Array<unknown>;
38384
38656
  /**
38385
38657
  * Fired when an error occurs.
38386
38658
  *
@@ -38610,6 +38882,12 @@ interface ControllerPartSensor extends ControllerSensor {
38610
38882
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ControllerPartSensor#SearchDistance)
38611
38883
  */
38612
38884
  SearchDistance: number;
38885
+ /**
38886
+ * - **ThreadSafety**: ReadSafe
38887
+ *
38888
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ControllerPartSensor#SensedMaterial)
38889
+ */
38890
+ SensedMaterial: Enum.Material;
38613
38891
  /**
38614
38892
  * A reference to the `BasePart` hit by the sensor.
38615
38893
  *
@@ -40732,6 +41010,12 @@ interface SoundService extends Instance {
40732
41010
  Enum.ListenerType.ObjectPosition,
40733
41011
  BasePart
40734
41012
  ]>;
41013
+ /**
41014
+ * - **ThreadSafety**: Unsafe
41015
+ *
41016
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SoundService#GetMixerTime)
41017
+ */
41018
+ GetMixerTime(this: SoundService): number;
40735
41019
  /**
40736
41020
  * Plays a copy of a `Sound` locally, such that it will only be heard by the client calling this method.
40737
41021
  *
@@ -41522,6 +41806,21 @@ interface StudioCameraService extends Instance {
41522
41806
  */
41523
41807
  readonly _nominal_StudioCameraService: unique symbol;
41524
41808
  }
41809
+ /**
41810
+ * - **Tags**: NotCreatable, Service, NotReplicated
41811
+ *
41812
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioCaptureService)
41813
+ */
41814
+ interface StudioCaptureService extends Instance {
41815
+ /**
41816
+ * **DO NOT USE!**
41817
+ *
41818
+ * This field exists to force TypeScript to recognize this as a nominal type
41819
+ * @hidden
41820
+ * @deprecated
41821
+ */
41822
+ readonly _nominal_StudioCaptureService: unique symbol;
41823
+ }
41525
41824
  /**
41526
41825
  * - **Tags**: NotCreatable, Service, NotReplicated
41527
41826
  *
@@ -41582,6 +41881,21 @@ interface StudioPublishService extends Instance {
41582
41881
  */
41583
41882
  readonly _nominal_StudioPublishService: unique symbol;
41584
41883
  }
41884
+ /**
41885
+ * - **Tags**: NotCreatable, NotReplicated
41886
+ *
41887
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioScreenshotCapture)
41888
+ */
41889
+ interface StudioScreenshotCapture extends Instance {
41890
+ /**
41891
+ * **DO NOT USE!**
41892
+ *
41893
+ * This field exists to force TypeScript to recognize this as a nominal type
41894
+ * @hidden
41895
+ * @deprecated
41896
+ */
41897
+ readonly _nominal_StudioScreenshotCapture: unique symbol;
41898
+ }
41585
41899
  /**
41586
41900
  * - **Tags**: NotCreatable, Service, NotReplicated
41587
41901
  *
@@ -41628,6 +41942,18 @@ interface StudioTestService extends Instance {
41628
41942
  * @deprecated
41629
41943
  */
41630
41944
  readonly _nominal_StudioTestService: unique symbol;
41945
+ /**
41946
+ * - **ThreadSafety**: Unsafe
41947
+ *
41948
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#AddPlayers)
41949
+ */
41950
+ AddPlayers(this: StudioTestService, numPlayers: number): void;
41951
+ /**
41952
+ * - **ThreadSafety**: Unsafe
41953
+ *
41954
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#CanLeaveTest)
41955
+ */
41956
+ CanLeaveTest(this: StudioTestService): boolean;
41631
41957
  /**
41632
41958
  * - **ThreadSafety**: Unsafe
41633
41959
  *
@@ -41644,6 +41970,12 @@ interface StudioTestService extends Instance {
41644
41970
  * @returns Arguments passed to the test, or `nil`.
41645
41971
  */
41646
41972
  GetTestArgs(this: StudioTestService): unknown;
41973
+ /**
41974
+ * - **ThreadSafety**: Unsafe
41975
+ *
41976
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/StudioTestService#LeaveTest)
41977
+ */
41978
+ LeaveTest(this: StudioTestService): void;
41647
41979
  }
41648
41980
  /**
41649
41981
  * - **Tags**: NotCreatable, Service, NotReplicated
@@ -48912,6 +49244,21 @@ interface OutputLink extends RBXObject {
48912
49244
  */
48913
49245
  readonly _nominal_OutputLink: unique symbol;
48914
49246
  }
49247
+ /**
49248
+ * - **Tags**: NotCreatable, NotReplicated
49249
+ *
49250
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/PluginConnection)
49251
+ */
49252
+ interface PluginConnection extends RBXObject {
49253
+ /**
49254
+ * **DO NOT USE!**
49255
+ *
49256
+ * This field exists to force TypeScript to recognize this as a nominal type
49257
+ * @hidden
49258
+ * @deprecated
49259
+ */
49260
+ readonly _nominal_PluginConnection: unique symbol;
49261
+ }
48915
49262
  /**
48916
49263
  * - **Tags**: NotCreatable, NotReplicated
48917
49264
  *
@@ -49070,6 +49417,21 @@ interface VideoSampler extends RBXObject {
49070
49417
  */
49071
49418
  GetSamplesAtTimesAsync(this: VideoSampler, times: Array<unknown>): Array<unknown>;
49072
49419
  }
49420
+ /**
49421
+ * - **Tags**: NotCreatable, NotReplicated
49422
+ *
49423
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VirtualInput)
49424
+ */
49425
+ interface VirtualInput extends RBXObject {
49426
+ /**
49427
+ * **DO NOT USE!**
49428
+ *
49429
+ * This field exists to force TypeScript to recognize this as a nominal type
49430
+ * @hidden
49431
+ * @deprecated
49432
+ */
49433
+ readonly _nominal_VirtualInput: unique symbol;
49434
+ }
49073
49435
  /**
49074
49436
  * - **Tags**: NotCreatable, NotReplicated
49075
49437
  *