@rbxts/types 1.0.845 → 1.0.847

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.
@@ -66,6 +66,7 @@ interface Services {
66
66
  ExperienceStateCaptureService: ExperienceStateCaptureService;
67
67
  ExplorerServiceVisibilityService: ExplorerServiceVisibilityService;
68
68
  FaceAnimatorService: FaceAnimatorService;
69
+ FacialAgeEstimationService: FacialAgeEstimationService;
69
70
  FacialAnimationRecordingService: FacialAnimationRecordingService;
70
71
  FacialAnimationStreamingServiceV2: FacialAnimationStreamingServiceV2;
71
72
  FeatureRestrictionManager: FeatureRestrictionManager;
@@ -150,12 +151,12 @@ interface Services {
150
151
  ScriptProfilerService: ScriptProfilerService;
151
152
  ScriptRegistrationService: ScriptRegistrationService;
152
153
  SelectionHighlightManager: SelectionHighlightManager;
154
+ SerializationService: SerializationService;
153
155
  ServerScriptService: ServerScriptService;
154
156
  ServerStorage: ServerStorage;
155
157
  ServiceVisibilityService: ServiceVisibilityService;
156
158
  SessionService: SessionService;
157
159
  SharedTableRegistry: SharedTableRegistry;
158
- ShorelineUpgraderService: ShorelineUpgraderService;
159
160
  SmoothVoxelsUpgraderService: SmoothVoxelsUpgraderService;
160
161
  SnippetService: SnippetService;
161
162
  SocialService: SocialService;
@@ -176,6 +177,7 @@ interface Services {
176
177
  StudioUserService: StudioUserService;
177
178
  StudioWidgetsService: StudioWidgetsService;
178
179
  StylingService: StylingService;
180
+ SystemThemeService: SystemThemeService;
179
181
  TeamCreateData: TeamCreateData;
180
182
  TeamCreatePublishService: TeamCreatePublishService;
181
183
  TeamCreateService: TeamCreateService;
@@ -574,6 +576,7 @@ interface Instances extends Services, CreatableInstances {
574
576
  GuiObject: GuiObject;
575
577
  HandleAdornment: HandleAdornment;
576
578
  HandlesBase: HandlesBase;
579
+ ImportSession: ImportSession;
577
580
  InputObject: InputObject;
578
581
  Instance: Instance;
579
582
  InstanceAdornment: InstanceAdornment;
@@ -1233,6 +1236,8 @@ interface EditableMesh extends RBXObject {
1233
1236
  */
1234
1237
  GetFaces(this: EditableMesh): Array<unknown>;
1235
1238
  /**
1239
+ * **Deprecated:**
1240
+ *
1236
1241
  * Returns a list of faces that use a given attribute ID.
1237
1242
  *
1238
1243
  * - **ThreadSafety**: Unsafe
@@ -1251,6 +1256,8 @@ interface EditableMesh extends RBXObject {
1251
1256
  * - **Tags**: CustomLuaState
1252
1257
  *
1253
1258
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithColor)
1259
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1260
+ * @param colorId
1254
1261
  */
1255
1262
  GetFacesWithColor(this: EditableMesh, colorId: number): Array<unknown>;
1256
1263
  /**
@@ -1258,6 +1265,8 @@ interface EditableMesh extends RBXObject {
1258
1265
  * - **Tags**: CustomLuaState
1259
1266
  *
1260
1267
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithNormal)
1268
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1269
+ * @param normalId
1261
1270
  */
1262
1271
  GetFacesWithNormal(this: EditableMesh, normalId: number): Array<unknown>;
1263
1272
  /**
@@ -1265,6 +1274,8 @@ interface EditableMesh extends RBXObject {
1265
1274
  * - **Tags**: CustomLuaState
1266
1275
  *
1267
1276
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetFacesWithUV)
1277
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1278
+ * @param uvId
1268
1279
  */
1269
1280
  GetFacesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
1270
1281
  /**
@@ -1335,24 +1346,35 @@ interface EditableMesh extends RBXObject {
1335
1346
  * - **Tags**: CustomLuaState
1336
1347
  *
1337
1348
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexColors)
1349
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1350
+ * @param vertexId
1338
1351
  */
1339
1352
  GetVertexColors(this: EditableMesh, vertexId: number): Array<unknown>;
1340
1353
  /**
1341
1354
  * - **ThreadSafety**: Unsafe
1342
1355
  *
1343
1356
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceColor)
1357
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1358
+ * @param vertexId
1359
+ * @param faceId
1344
1360
  */
1345
1361
  GetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number): number;
1346
1362
  /**
1347
1363
  * - **ThreadSafety**: Unsafe
1348
1364
  *
1349
1365
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceNormal)
1366
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1367
+ * @param vertexId
1368
+ * @param faceId
1350
1369
  */
1351
1370
  GetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number): number;
1352
1371
  /**
1353
1372
  * - **ThreadSafety**: Unsafe
1354
1373
  *
1355
1374
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaceUV)
1375
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1376
+ * @param vertexId
1377
+ * @param faceId
1356
1378
  */
1357
1379
  GetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number): number;
1358
1380
  /**
@@ -1360,6 +1382,8 @@ interface EditableMesh extends RBXObject {
1360
1382
  * - **Tags**: CustomLuaState
1361
1383
  *
1362
1384
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexFaces)
1385
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1386
+ * @param vertexId
1363
1387
  */
1364
1388
  GetVertexFaces(this: EditableMesh, vertexId: number): Array<unknown>;
1365
1389
  /**
@@ -1367,6 +1391,8 @@ interface EditableMesh extends RBXObject {
1367
1391
  * - **Tags**: CustomLuaState
1368
1392
  *
1369
1393
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexNormals)
1394
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1395
+ * @param vertexId
1370
1396
  */
1371
1397
  GetVertexNormals(this: EditableMesh, vertexId: number): Array<unknown>;
1372
1398
  /**
@@ -1374,6 +1400,8 @@ interface EditableMesh extends RBXObject {
1374
1400
  * - **Tags**: CustomLuaState
1375
1401
  *
1376
1402
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVertexUVs)
1403
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1404
+ * @param vertexId
1377
1405
  */
1378
1406
  GetVertexUVs(this: EditableMesh, vertexId: number): Array<unknown>;
1379
1407
  /**
@@ -1387,6 +1415,8 @@ interface EditableMesh extends RBXObject {
1387
1415
  */
1388
1416
  GetVertices(this: EditableMesh): Array<number>;
1389
1417
  /**
1418
+ * **Deprecated:**
1419
+ *
1390
1420
  * Returns a list of vertices that use a given attribute ID.
1391
1421
  *
1392
1422
  * - **ThreadSafety**: Unsafe
@@ -1405,6 +1435,8 @@ interface EditableMesh extends RBXObject {
1405
1435
  * - **Tags**: CustomLuaState
1406
1436
  *
1407
1437
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithColor)
1438
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1439
+ * @param colorId
1408
1440
  */
1409
1441
  GetVerticesWithColor(this: EditableMesh, colorId: number): Array<unknown>;
1410
1442
  /**
@@ -1412,6 +1444,8 @@ interface EditableMesh extends RBXObject {
1412
1444
  * - **Tags**: CustomLuaState
1413
1445
  *
1414
1446
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithNormal)
1447
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1448
+ * @param normalId
1415
1449
  */
1416
1450
  GetVerticesWithNormal(this: EditableMesh, normalId: number): Array<unknown>;
1417
1451
  /**
@@ -1419,6 +1453,8 @@ interface EditableMesh extends RBXObject {
1419
1453
  * - **Tags**: CustomLuaState
1420
1454
  *
1421
1455
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#GetVerticesWithUV)
1456
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1457
+ * @param uvId
1422
1458
  */
1423
1459
  GetVerticesWithUV(this: EditableMesh, uvId: number): Array<unknown>;
1424
1460
  /**
@@ -1594,18 +1630,30 @@ interface EditableMesh extends RBXObject {
1594
1630
  * - **ThreadSafety**: Unsafe
1595
1631
  *
1596
1632
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceColor)
1633
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1634
+ * @param vertexId
1635
+ * @param faceId
1636
+ * @param colorId
1597
1637
  */
1598
1638
  SetVertexFaceColor(this: EditableMesh, vertexId: number, faceId: number, colorId: number): void;
1599
1639
  /**
1600
1640
  * - **ThreadSafety**: Unsafe
1601
1641
  *
1602
1642
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceNormal)
1643
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1644
+ * @param vertexId
1645
+ * @param faceId
1646
+ * @param normalId
1603
1647
  */
1604
1648
  SetVertexFaceNormal(this: EditableMesh, vertexId: number, faceId: number, normalId: number): void;
1605
1649
  /**
1606
1650
  * - **ThreadSafety**: Unsafe
1607
1651
  *
1608
1652
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/EditableMesh#SetVertexFaceUV)
1653
+ * @param this Instance which allows for the runtime creation and manipulation of meshes.
1654
+ * @param vertexId
1655
+ * @param faceId
1656
+ * @param uvId
1609
1657
  */
1610
1658
  SetVertexFaceUV(this: EditableMesh, vertexId: number, faceId: number, uvId: number): void;
1611
1659
  /**
@@ -2311,7 +2359,7 @@ interface AnalyticsService extends Instance {
2311
2359
  *
2312
2360
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireCustomEvent)
2313
2361
  * @param this Collection of methods that allows developers to track how users interact with their experiences.
2314
- * @param player The player who triggered the custom event. nil if not player related.
2362
+ * @param player The player who triggered the custom event. `nil` if not player related.
2315
2363
  * @param eventCategory User defined category. This should be the name of the event.
2316
2364
  * @param customData Optional. User defined data, could be a string, a number or a table.
2317
2365
  *
@@ -2376,7 +2424,7 @@ interface AnalyticsService extends Instance {
2376
2424
  *
2377
2425
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AnalyticsService#FireLogEvent)
2378
2426
  * @param this Collection of methods that allows developers to track how users interact with their experiences.
2379
- * @param player The player who triggered the error event, nil if not player related.
2427
+ * @param player The player who triggered the error event, `nil` if not player related.
2380
2428
  * @param logLevel The specified log level (e.g. Debug, Error).
2381
2429
  * @param message User defined message.
2382
2430
  * @param debugInfo Optional. A dictionary which contains predefined keys including "errorCode" and "stackTrace". Both keys values are strings. stackTrace is a traceback of the current function call stack.
@@ -2643,7 +2691,7 @@ interface KeyframeSequence extends AnimationClip {
2643
2691
  */
2644
2692
  GetKeyframes(this: KeyframeSequence): Array<Keyframe>;
2645
2693
  /**
2646
- * This function removes a `Keyframe` from the `KeyframeSequence` by setting its parent to nil.
2694
+ * This function removes a `Keyframe` from the `KeyframeSequence` by setting its parent to `nil`.
2647
2695
  *
2648
2696
  * - **ThreadSafety**: Unsafe
2649
2697
  *
@@ -3327,33 +3375,6 @@ interface AssetImportService extends Instance {
3327
3375
  */
3328
3376
  readonly _nominal_AssetImportService: unique symbol;
3329
3377
  }
3330
- /**
3331
- * - **Tags**: NotCreatable, NotReplicated
3332
- *
3333
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetImportSession)
3334
- */
3335
- interface AssetImportSession extends Instance {
3336
- /**
3337
- * **DO NOT USE!**
3338
- *
3339
- * This field exists to force TypeScript to recognize this as a nominal type
3340
- * @hidden
3341
- * @deprecated
3342
- */
3343
- readonly _nominal_AssetImportSession: unique symbol;
3344
- /**
3345
- * - **ThreadSafety**: Unsafe
3346
- *
3347
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetImportSession#UploadComplete)
3348
- */
3349
- readonly UploadComplete: RBXScriptSignal<(results: object) => void>;
3350
- /**
3351
- * - **ThreadSafety**: Unsafe
3352
- *
3353
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetImportSession#UploadProgress)
3354
- */
3355
- readonly UploadProgress: RBXScriptSignal<(progressRatio: number) => void>;
3356
- }
3357
3378
  /**
3358
3379
  * - **Tags**: NotCreatable, Service, NotReplicated
3359
3380
  *
@@ -3438,6 +3459,12 @@ interface AssetService extends Instance {
3438
3459
  * @param editableMeshOptions Table containing options for the created `EditableMesh`. Currently no options are available since `FixedSize` will always be `false` for empty editable meshes.
3439
3460
  */
3440
3461
  CreateEditableMesh(this: AssetService, editableMeshOptions?: object): EditableMesh;
3462
+ /**
3463
+ * - **ThreadSafety**: Unsafe
3464
+ *
3465
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetService#CreateSurfaceAppearance)
3466
+ */
3467
+ CreateSurfaceAppearance(this: AssetService, content: object): SurfaceAppearance;
3441
3468
  /**
3442
3469
  * Uploads a new asset to Roblox from the given object.
3443
3470
  *
@@ -6448,7 +6475,7 @@ interface AvatarEditorService extends Instance {
6448
6475
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AvatarEditorService#CheckApplyDefaultClothing)
6449
6476
  * @param this A service to support developer Avatar Editors.
6450
6477
  * @param humanoidDescription The HumanoidDescription to check if default clothing is required.
6451
- * @returns Returns a HumanoidDescription if default clothing was necessary. Otherwise returns nil.
6478
+ * @returns Returns a HumanoidDescription if default clothing was necessary. Otherwise returns `nil`.
6452
6479
  */
6453
6480
  CheckApplyDefaultClothing(this: AvatarEditorService, humanoidDescription: HumanoidDescription): HumanoidDescription;
6454
6481
  /**
@@ -7256,12 +7283,6 @@ interface RootImportData extends BaseImportData {
7256
7283
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#ScaleUnit)
7257
7284
  */
7258
7285
  ScaleUnit: Enum.MeshScaleUnit;
7259
- /**
7260
- * - **ThreadSafety**: ReadSafe
7261
- *
7262
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/RootImportData#UseSceneOriginAsCFrame)
7263
- */
7264
- UseSceneOriginAsCFrame: boolean;
7265
7286
  /**
7266
7287
  * - **ThreadSafety**: ReadSafe
7267
7288
  *
@@ -12026,7 +12047,7 @@ interface ContextActionService extends Instance {
12026
12047
  *
12027
12048
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ContextActionService#GetCurrentLocalToolIcon)
12028
12049
  * @param this A service used to bind user input to contextual actions.
12029
- * @returns A content string from the Tool's TextureId, or nil if one could not be found.
12050
+ * @returns A content string from the Tool's TextureId, or `nil` if one could not be found.
12030
12051
  */
12031
12052
  GetCurrentLocalToolIcon(this: ContextActionService): string;
12032
12053
  /**
@@ -14383,6 +14404,21 @@ interface Texture extends Decal {
14383
14404
  */
14384
14405
  StudsPerTileV: number;
14385
14406
  }
14407
+ /**
14408
+ * - **Tags**: NotCreatable, Service, NotReplicated
14409
+ *
14410
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/FacialAgeEstimationService)
14411
+ */
14412
+ interface FacialAgeEstimationService extends Instance {
14413
+ /**
14414
+ * **DO NOT USE!**
14415
+ *
14416
+ * This field exists to force TypeScript to recognize this as a nominal type
14417
+ * @hidden
14418
+ * @deprecated
14419
+ */
14420
+ readonly _nominal_FacialAgeEstimationService: unique symbol;
14421
+ }
14386
14422
  /**
14387
14423
  * - **Tags**: NotCreatable, Service, NotReplicated
14388
14424
  *
@@ -17455,6 +17491,20 @@ interface VideoDisplay extends GuiObject {
17455
17491
  * @param pin
17456
17492
  */
17457
17493
  GetConnectedWires(this: VideoDisplay, pin: string): Array<Instance>;
17494
+ /**
17495
+ * - **ThreadSafety**: Unsafe
17496
+ *
17497
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetInputPins)
17498
+ * @param this
17499
+ */
17500
+ GetInputPins(this: VideoDisplay): Array<unknown>;
17501
+ /**
17502
+ * - **ThreadSafety**: Unsafe
17503
+ *
17504
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoDisplay#GetOutputPins)
17505
+ * @param this
17506
+ */
17507
+ GetOutputPins(this: VideoDisplay): Array<unknown>;
17458
17508
  /**
17459
17509
  * - **ThreadSafety**: Unsafe
17460
17510
  *
@@ -22140,6 +22190,48 @@ interface IXPService extends Instance {
22140
22190
  */
22141
22191
  readonly _nominal_IXPService: unique symbol;
22142
22192
  }
22193
+ /**
22194
+ * - **Tags**: NotCreatable, NotReplicated
22195
+ *
22196
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImportSession)
22197
+ */
22198
+ interface ImportSession extends Instance {
22199
+ /**
22200
+ * **DO NOT USE!**
22201
+ *
22202
+ * This field exists to force TypeScript to recognize this as a nominal type
22203
+ * @hidden
22204
+ * @deprecated
22205
+ */
22206
+ readonly _nominal_ImportSession: unique symbol;
22207
+ /**
22208
+ * - **ThreadSafety**: Unsafe
22209
+ *
22210
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImportSession#UploadComplete)
22211
+ */
22212
+ readonly UploadComplete: RBXScriptSignal<(results: object) => void>;
22213
+ /**
22214
+ * - **ThreadSafety**: Unsafe
22215
+ *
22216
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ImportSession#UploadProgress)
22217
+ */
22218
+ readonly UploadProgress: RBXScriptSignal<(progressRatio: number) => void>;
22219
+ }
22220
+ /**
22221
+ * - **Tags**: NotCreatable, NotReplicated
22222
+ *
22223
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/AssetImportSession)
22224
+ */
22225
+ interface AssetImportSession extends ImportSession {
22226
+ /**
22227
+ * **DO NOT USE!**
22228
+ *
22229
+ * This field exists to force TypeScript to recognize this as a nominal type
22230
+ * @hidden
22231
+ * @deprecated
22232
+ */
22233
+ readonly _nominal_AssetImportSession: unique symbol;
22234
+ }
22143
22235
  /**
22144
22236
  * - **Tags**: NotCreatable, Service, NotReplicated
22145
22237
  *
@@ -23231,7 +23323,7 @@ interface Keyframe extends Instance {
23231
23323
  */
23232
23324
  GetPoses(this: Keyframe): Array<Pose>;
23233
23325
  /**
23234
- * Removes a `KeyframeMarker` from the `Keyframe` by settings its `Instance.Parent` to nil.
23326
+ * Removes a `KeyframeMarker` from the `Keyframe` by settings its `Instance.Parent` to `nil`.
23235
23327
  *
23236
23328
  * - **ThreadSafety**: Unsafe
23237
23329
  *
@@ -23241,7 +23333,7 @@ interface Keyframe extends Instance {
23241
23333
  */
23242
23334
  RemoveMarker(this: Keyframe, marker: KeyframeMarker): void;
23243
23335
  /**
23244
- * Removes a `Pose` from the `Keyframe` by setting its `Instance.Parent` to nil.
23336
+ * Removes a `Pose` from the `Keyframe` by setting its `Instance.Parent` to `nil`.
23245
23337
  *
23246
23338
  * - **ThreadSafety**: Unsafe
23247
23339
  *
@@ -24874,6 +24966,8 @@ interface MarketplaceService extends Instance {
24874
24966
  ProcessReceipt: ((receiptInfo: ReceiptInfo) => Enum.ProductPurchaseDecision) | undefined;
24875
24967
  }
24876
24968
  /**
24969
+ * The service responsible for managing custom matchmaking data.
24970
+ *
24877
24971
  * - **Tags**: NotCreatable, Service, NotReplicated
24878
24972
  *
24879
24973
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService)
@@ -24888,28 +24982,37 @@ interface MatchmakingService extends Instance {
24888
24982
  */
24889
24983
  readonly _nominal_MatchmakingService: unique symbol;
24890
24984
  /**
24985
+ * Retrieves the value of a specific server attribute.
24986
+ *
24891
24987
  * - **ThreadSafety**: Unsafe
24892
24988
  *
24893
24989
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService#GetServerAttribute)
24894
- * @param this
24895
- * @param name
24990
+ * @param this The service responsible for managing custom matchmaking data.
24991
+ * @param name The name of the server attribute. Limited to a maximum of 50 characters.
24992
+ * @returns Returns the server attribute value if the attribute is found and if the error is `nil`. Otherwise, returns `nil` for the attribute value and an error message.
24896
24993
  */
24897
24994
  GetServerAttribute(this: MatchmakingService, name: string): unknown;
24898
24995
  /**
24996
+ * Initiates the server attribute schema and its values to test in Studio.
24997
+ *
24899
24998
  * - **ThreadSafety**: Unsafe
24900
24999
  *
24901
25000
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService#InitializeServerAttributesForStudio)
24902
- * @param this
24903
- * @param serverAttributes
25001
+ * @param this The service responsible for managing custom matchmaking data.
25002
+ * @param serverAttributes An array of attribute name-value pairs.
25003
+ * @returns Returns `true` if the call succeeded. Otherwise, returns `false` and an error message.
24904
25004
  */
24905
25005
  InitializeServerAttributesForStudio(this: MatchmakingService, serverAttributes: object): unknown;
24906
25006
  /**
25007
+ * Assigns a value to a specific server attribute.
25008
+ *
24907
25009
  * - **ThreadSafety**: Unsafe
24908
25010
  *
24909
25011
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MatchmakingService#SetServerAttribute)
24910
- * @param this
24911
- * @param name
24912
- * @param value
25012
+ * @param this The service responsible for managing custom matchmaking data.
25013
+ * @param name The name of the server attribute. Limited to a maximum of 50 characters.
25014
+ * @param value The value of the server attribute. Limited to a maximum of 50 characters.
25015
+ * @returns Returns `true` if the call succeeded. Otherwise, returns `false` and an error message.
24913
25016
  */
24914
25017
  SetServerAttribute(this: MatchmakingService, name: string, value: unknown): unknown;
24915
25018
  }
@@ -25064,7 +25167,7 @@ interface MemoryStoreHashMap extends Instance {
25064
25167
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreHashMap#GetAsync)
25065
25168
  * @param this Provides access to a hash map within `MemoryStoreService`.
25066
25169
  * @param key The key whose value you want to retrieve.
25067
- * @returns The value, or nil if the key doesn't exist.
25170
+ * @returns The value, or `nil` if the key doesn't exist.
25068
25171
  */
25069
25172
  GetAsync(this: MemoryStoreHashMap, key: string): unknown;
25070
25173
  /**
@@ -25252,8 +25355,8 @@ interface MemoryStoreSortedMap extends Instance {
25252
25355
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/MemoryStoreSortedMap#GetAsync)
25253
25356
  * @param this Provides access to a sorted map within `MemoryStoreService`.
25254
25357
  * @param key Key whose value and sort key to retrieve.
25255
- * @returns A tuple of two values: - Key value, or nil -- if there's no item with the specified key.
25256
- * - Sort key, or nil -- if there's no sort key associated with the specified key.
25358
+ * @returns A tuple of two values: - Key value, or `nil` if there's no item with the specified key.
25359
+ * - Sort key, or `nil` if there's no sort key associated with the specified key.
25257
25360
  */
25258
25361
  GetAsync(this: MemoryStoreSortedMap, key: string): LuaTuple<[
25259
25362
  value?: unknown,
@@ -26693,13 +26796,13 @@ interface BasePart extends PVInstance {
26693
26796
  */
26694
26797
  GetMass(this: BasePart): number;
26695
26798
  /**
26696
- * Returns the current player who is the network owner of this part, or nil in case of the server.
26799
+ * Returns the current player who is the network owner of this part, or `nil` in case of the server.
26697
26800
  *
26698
26801
  * - **ThreadSafety**: Safe
26699
26802
  *
26700
26803
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/BasePart#GetNetworkOwner)
26701
26804
  * @param this The abstract base class for in-world objects that physically interact.
26702
- * @returns The current player who is the network owner of this part, or nil in case of the server.
26805
+ * @returns The current player who is the network owner of this part, or `nil` in case of the server.
26703
26806
  */
26704
26807
  GetNetworkOwner(this: BasePart): Player | undefined;
26705
26808
  /**
@@ -32385,7 +32488,7 @@ interface Pose extends PoseBase {
32385
32488
  */
32386
32489
  GetSubPoses(this: Pose): Array<Instance>;
32387
32490
  /**
32388
- * Removes a sub `Pose` from the `Pose` by parenting it to nil.
32491
+ * Removes a sub `Pose` from the `Pose` by parenting it to `nil`.
32389
32492
  *
32390
32493
  * - **ThreadSafety**: Unsafe
32391
32494
  *
@@ -34077,6 +34180,39 @@ interface FluidForceSensor extends SensorBase {
34077
34180
  */
34078
34181
  EvaluateAsync(this: FluidForceSensor, linearVelocity: Vector3, angularVelocity: Vector3, cframe: CFrame): unknown;
34079
34182
  }
34183
+ /**
34184
+ * - **Tags**: NotCreatable, Service
34185
+ *
34186
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SerializationService)
34187
+ */
34188
+ interface SerializationService extends Instance {
34189
+ /**
34190
+ * **DO NOT USE!**
34191
+ *
34192
+ * This field exists to force TypeScript to recognize this as a nominal type
34193
+ * @hidden
34194
+ * @deprecated
34195
+ */
34196
+ readonly _nominal_SerializationService: unique symbol;
34197
+ /**
34198
+ * - **ThreadSafety**: Unsafe
34199
+ * - **Tags**: Yields
34200
+ *
34201
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SerializationService#DeserializeInstancesAsync)
34202
+ * @param this
34203
+ * @param buffer
34204
+ */
34205
+ DeserializeInstancesAsync(this: SerializationService, buffer: buffer): Array<Instance>;
34206
+ /**
34207
+ * - **ThreadSafety**: Unsafe
34208
+ * - **Tags**: Yields
34209
+ *
34210
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SerializationService#SerializeInstancesAsync)
34211
+ * @param this
34212
+ * @param inputInstances
34213
+ */
34214
+ SerializeInstancesAsync(this: SerializationService, inputInstances: Array<Instance>): buffer;
34215
+ }
34080
34216
  /**
34081
34217
  * A container service for server-only `Script` objects.
34082
34218
  *
@@ -34586,21 +34722,6 @@ interface SharedTableRegistry extends Instance {
34586
34722
  */
34587
34723
  SetSharedTable(this: SharedTableRegistry, name: string, st?: SharedTable): void;
34588
34724
  }
34589
- /**
34590
- * - **Tags**: NotCreatable, Service, NotReplicated
34591
- *
34592
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/ShorelineUpgraderService)
34593
- */
34594
- interface ShorelineUpgraderService extends Instance {
34595
- /**
34596
- * **DO NOT USE!**
34597
- *
34598
- * This field exists to force TypeScript to recognize this as a nominal type
34599
- * @hidden
34600
- * @deprecated
34601
- */
34602
- readonly _nominal_ShorelineUpgraderService: unique symbol;
34603
- }
34604
34725
  /**
34605
34726
  * Changes the default appearance of the experience's sky.
34606
34727
  *
@@ -34905,6 +35026,13 @@ interface SocialService extends Instance {
34905
35026
  * @returns Whether the specified player can send an invite.
34906
35027
  */
34907
35028
  CanSendGameInviteAsync(this: SocialService, player: Player, recipientId?: number): boolean;
35029
+ /**
35030
+ * - **ThreadSafety**: Unsafe
35031
+ * - **Tags**: Yields
35032
+ *
35033
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SocialService#GetPartyAsync)
35034
+ */
35035
+ GetPartyAsync(this: SocialService, partyId: string): Array<unknown>;
34908
35036
  /**
34909
35037
  * Fires when a player's call invite state changes.
34910
35038
  *
@@ -36887,6 +37015,49 @@ interface SurfaceAppearance extends Instance {
36887
37015
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#Color)
36888
37016
  */
36889
37017
  Color: Color3;
37018
+ /**
37019
+ * - **ThreadSafety**: ReadSafe
37020
+ * - **Tags**: Hidden
37021
+ *
37022
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#ColorMapContent)
37023
+ */
37024
+ get ColorMapContent(): Content;
37025
+ /**
37026
+ * - **ThreadSafety**: ReadSafe
37027
+ * - **Tags**: Hidden
37028
+ *
37029
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#MetalnessMapContent)
37030
+ */
37031
+ get MetalnessMapContent(): Content;
37032
+ /**
37033
+ * - **ThreadSafety**: ReadSafe
37034
+ * - **Tags**: Hidden
37035
+ *
37036
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#NormalMapContent)
37037
+ */
37038
+ get NormalMapContent(): Content;
37039
+ /**
37040
+ * - **ThreadSafety**: ReadSafe
37041
+ * - **Tags**: Hidden
37042
+ *
37043
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SurfaceAppearance#RoughnessMapContent)
37044
+ */
37045
+ get RoughnessMapContent(): Content;
37046
+ }
37047
+ /**
37048
+ * - **Tags**: NotCreatable, Service, NotReplicated
37049
+ *
37050
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/SystemThemeService)
37051
+ */
37052
+ interface SystemThemeService extends Instance {
37053
+ /**
37054
+ * **DO NOT USE!**
37055
+ *
37056
+ * This field exists to force TypeScript to recognize this as a nominal type
37057
+ * @hidden
37058
+ * @deprecated
37059
+ */
37060
+ readonly _nominal_SystemThemeService: unique symbol;
36890
37061
  }
36891
37062
  /**
36892
37063
  * The `Team` class represents a faction in a Roblox place. The only valid parent for a Team is in the `Teams` service.
@@ -42446,23 +42617,18 @@ interface VideoPlayer extends Instance {
42446
42617
  Asset: ContentId;
42447
42618
  /**
42448
42619
  * - **ThreadSafety**: ReadSafe
42620
+ * - **Tags**: NotReplicated
42449
42621
  *
42450
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#AutoLoad)
42451
- */
42452
- AutoLoad: boolean;
42453
- /**
42454
- * - **ThreadSafety**: ReadSafe
42455
- *
42456
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#IsPlaying)
42622
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#IsLoaded)
42457
42623
  */
42458
- get IsPlaying(): boolean;
42624
+ readonly IsLoaded: boolean;
42459
42625
  /**
42460
42626
  * - **ThreadSafety**: ReadSafe
42461
42627
  * - **Tags**: NotReplicated
42462
42628
  *
42463
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#IsReady)
42629
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#IsPlaying)
42464
42630
  */
42465
- readonly IsReady: boolean;
42631
+ readonly IsPlaying: boolean;
42466
42632
  /**
42467
42633
  * - **ThreadSafety**: ReadSafe
42468
42634
  *
@@ -42482,12 +42648,6 @@ interface VideoPlayer extends Instance {
42482
42648
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Resolution)
42483
42649
  */
42484
42650
  readonly Resolution: Vector2;
42485
- /**
42486
- * - **ThreadSafety**: ReadSafe
42487
- *
42488
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Thumbnail)
42489
- */
42490
- Thumbnail: ContentId;
42491
42651
  /**
42492
42652
  * - **ThreadSafety**: ReadSafe
42493
42653
  * - **Tags**: NotReplicated
@@ -42515,6 +42675,27 @@ interface VideoPlayer extends Instance {
42515
42675
  * @param pin
42516
42676
  */
42517
42677
  GetConnectedWires(this: VideoPlayer, pin: string): Array<Instance>;
42678
+ /**
42679
+ * - **ThreadSafety**: Unsafe
42680
+ *
42681
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#GetInputPins)
42682
+ * @param this
42683
+ */
42684
+ GetInputPins(this: VideoPlayer): Array<unknown>;
42685
+ /**
42686
+ * - **ThreadSafety**: Unsafe
42687
+ *
42688
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#GetOutputPins)
42689
+ * @param this
42690
+ */
42691
+ GetOutputPins(this: VideoPlayer): Array<unknown>;
42692
+ /**
42693
+ * - **ThreadSafety**: Unsafe
42694
+ *
42695
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Pause)
42696
+ * @param this
42697
+ */
42698
+ Pause(this: VideoPlayer): void;
42518
42699
  /**
42519
42700
  * - **ThreadSafety**: Unsafe
42520
42701
  *
@@ -42525,10 +42706,18 @@ interface VideoPlayer extends Instance {
42525
42706
  /**
42526
42707
  * - **ThreadSafety**: Unsafe
42527
42708
  *
42528
- * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Stop)
42709
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#Unload)
42529
42710
  * @param this
42530
42711
  */
42531
- Stop(this: VideoPlayer): void;
42712
+ Unload(this: VideoPlayer): void;
42713
+ /**
42714
+ * - **ThreadSafety**: Unsafe
42715
+ * - **Tags**: Yields
42716
+ *
42717
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#LoadAsync)
42718
+ * @param this
42719
+ */
42720
+ LoadAsync(this: VideoPlayer): Enum.AssetFetchStatus;
42532
42721
  /**
42533
42722
  * - **ThreadSafety**: Unsafe
42534
42723
  *
@@ -42541,6 +42730,18 @@ interface VideoPlayer extends Instance {
42541
42730
  * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#DidLoop)
42542
42731
  */
42543
42732
  readonly DidLoop: RBXScriptSignal<() => void>;
42733
+ /**
42734
+ * - **ThreadSafety**: Unsafe
42735
+ *
42736
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#PlayFailed)
42737
+ */
42738
+ readonly PlayFailed: RBXScriptSignal<(error: Enum.AssetFetchStatus) => void>;
42739
+ /**
42740
+ * - **ThreadSafety**: Unsafe
42741
+ *
42742
+ * [Creator Hub](https://create.roblox.com/docs/reference/engine/classes/VideoPlayer#WiringChanged)
42743
+ */
42744
+ readonly WiringChanged: RBXScriptSignal<(connected: boolean, pin: string, wire: Wire, instance: Instance) => void>;
42544
42745
  }
42545
42746
  /**
42546
42747
  * An internal service that offers no functionality to developers.