From 5bd3c74db023c5588612bc73caace5f8d3a265b9 Mon Sep 17 00:00:00 2001 From: Micah Date: Thu, 22 Aug 2024 10:06:13 -0700 Subject: [PATCH] Release Rojo v7.4.4 (#964) --- CHANGELOG.md | 4 + Cargo.lock | 26 +- Cargo.toml | 12 +- plugin/Version.txt | 2 +- plugin/rbx_dom_lua/customProperties.lua | 54 +- plugin/rbx_dom_lua/database.json | 8874 +++++++++++++++++++++-- 6 files changed, 8343 insertions(+), 629 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 76b930a4a..c3b97ced8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased Changes +## [7.4.4] - August 22nd, 2024 +* Fixed issue with reading attributes from `Lighting` in new place files +* `Instance.Archivable` will now default to `true` when building a project into a binary (`rbxm`/`rbxl`) file rather than `false`. + ## [7.4.3] - August 6th, 2024 * Fixed issue with building binary files introduced in 7.4.2 * Fixed `value of type nil cannot be converted to number` warning spam in output. [#955] diff --git a/Cargo.lock b/Cargo.lock index 28ddb811b..fb00d14a9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1586,9 +1586,9 @@ dependencies = [ [[package]] name = "rbx_binary" -version = "0.7.6" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49ee5134b59834b17940d20dd2e057b6fe6902c1e566900e83106c50503b970e" +checksum = "7b85057e8ff75a1ce99248200c4b3c7b481a3d52f921f1053ecd67921dcc7930" dependencies = [ "log", "lz4", @@ -1601,9 +1601,9 @@ dependencies = [ [[package]] name = "rbx_dom_weak" -version = "2.8.0" +version = "2.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "34d35df0f09290d32976f655366342676a6645b87c39b6949473b9d28a969733" +checksum = "fcd2a17d09e46af0805f8b311a926402172b97e8d9388745c9adf8f448901841" dependencies = [ "rbx_types", "serde", @@ -1611,9 +1611,9 @@ dependencies = [ [[package]] name = "rbx_reflection" -version = "4.6.0" +version = "4.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "04ca5496737668378b17bacc9090ad361fc9c8b5f346bbd33162e083c98fa248" +checksum = "8118ac6021d700e8debe324af6b40ecfd2cef270a00247849dbdfeebb0802677" dependencies = [ "rbx_types", "serde", @@ -1622,9 +1622,9 @@ dependencies = [ [[package]] name = "rbx_reflection_database" -version = "0.2.11+roblox-634" +version = "0.2.12+roblox-638" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "399ab2e1fa27c8428fe43fc4148d8085d187881f1c59cefea3711a2112e9cccc" +checksum = "0e29381d675420e841f8c02db5755cbb2545ed3e13f56c539546dc58702b512a" dependencies = [ "lazy_static", "rbx_reflection", @@ -1634,9 +1634,9 @@ dependencies = [ [[package]] name = "rbx_types" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ed7bbc0e1864143546b12ee0cf64a1a6f447d8ce7baf4fae755e4581929d230" +checksum = "e30f49b2a3bb667e4074ba73c2dfb8ca0873f610b448ccf318a240acfdec6c73" dependencies = [ "base64 0.13.1", "bitflags 1.3.2", @@ -1649,9 +1649,9 @@ dependencies = [ [[package]] name = "rbx_xml" -version = "0.13.4" +version = "0.13.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c2abac6e71c97a56243f00c9c2def504fe4b698019d854dd8720da700a80d7c" +checksum = "2b14b3027bc9ccd82e2fc854c8bcd25ed58318e570c355bf2cf63df9cdbd5ba8" dependencies = [ "base64 0.13.1", "log", @@ -1831,7 +1831,7 @@ dependencies = [ [[package]] name = "rojo" -version = "7.4.3" +version = "7.4.4" dependencies = [ "anyhow", "backtrace", diff --git a/Cargo.toml b/Cargo.toml index 1fd02c60c..0f5dd83e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rojo" -version = "7.4.3" +version = "7.4.4" rust-version = "1.70.0" authors = ["Lucien Greathouse "] description = "Enables professional-grade development tools for Roblox developers" @@ -49,11 +49,11 @@ memofs = { version = "0.3.0", path = "crates/memofs" } # rbx_reflection_database = { path = "../rbx-dom/rbx_reflection_database" } # rbx_xml = { path = "../rbx-dom/rbx_xml" } -rbx_binary = "0.7.6" -rbx_dom_weak = "2.8.0" -rbx_reflection = "4.6.0" -rbx_reflection_database = "0.2.11" -rbx_xml = "0.13.4" +rbx_binary = "0.7.7" +rbx_dom_weak = "2.9.0" +rbx_reflection = "4.7.0" +rbx_reflection_database = "0.2.12" +rbx_xml = "0.13.5" anyhow = "1.0.44" backtrace = "0.3.61" diff --git a/plugin/Version.txt b/plugin/Version.txt index a263a9c3a..c74107f79 100644 --- a/plugin/Version.txt +++ b/plugin/Version.txt @@ -1 +1 @@ -7.4.3 \ No newline at end of file +7.4.4 \ No newline at end of file diff --git a/plugin/rbx_dom_lua/customProperties.lua b/plugin/rbx_dom_lua/customProperties.lua index 8653b1f8d..d8c12d5a1 100644 --- a/plugin/rbx_dom_lua/customProperties.lua +++ b/plugin/rbx_dom_lua/customProperties.lua @@ -26,6 +26,21 @@ local TERRAIN_MATERIAL_COLORS = { Enum.Material.Pavement, } +local function isAttributeNameValid(attributeName) + -- For SetAttribute to succeed, the attribute name must be less than or + -- equal to 100 characters... + return #attributeName <= 100 + -- ...and must only contain alphanumeric characters, periods, hyphens, + -- underscores, or forward slashes. + and attributeName:match("[^%w%.%-_/]") == nil +end + +local function isAttributeNameReserved(attributeName) + -- For SetAttribute to succeed, attribute names must not use the RBX + -- prefix, which is reserved by Roblox. + return attributeName:sub(1, 3) == "RBX" +end + -- Defines how to read and write properties that aren't directly scriptable. -- -- The reflection database refers to these as having scriptability = "Custom" @@ -40,26 +55,33 @@ return { local didAllWritesSucceed = true for attributeName, attributeValue in pairs(value) do - local isNameValid = - -- For our SetAttribute to succeed, the attribute name must be - -- less than or equal to 100 characters... - #attributeName <= 100 - -- ...must only contain alphanumeric characters, periods, hyphens, - -- underscores, or forward slashes... - and attributeName:match("[^%w%.%-_/]") == nil - -- ... and must not use the RBX prefix, which is reserved by Roblox. - and attributeName:sub(1, 3) ~= "RBX" - - if isNameValid then - instance:SetAttribute(attributeName, attributeValue) - else + if isAttributeNameReserved(attributeName) then + -- If the attribute name is reserved, then we don't + -- really care about reporting any failures about + -- it. + continue + end + + if not isAttributeNameValid(attributeName) then didAllWritesSucceed = false + continue end + + instance:SetAttribute(attributeName, attributeValue) end - for key in pairs(existing) do - if value[key] == nil then - instance:SetAttribute(key, nil) + for existingAttributeName in pairs(existing) do + if isAttributeNameReserved(existingAttributeName) then + continue + end + + if not isAttributeNameValid(existingAttributeName) then + didAllWritesSucceed = false + continue + end + + if value[existingAttributeName] == nil then + instance:SetAttribute(existingAttributeName, nil) end end diff --git a/plugin/rbx_dom_lua/database.json b/plugin/rbx_dom_lua/database.json index 4e36341b5..fa0a829ea 100644 --- a/plugin/rbx_dom_lua/database.json +++ b/plugin/rbx_dom_lua/database.json @@ -1,9 +1,9 @@ { "Version": [ 0, - 634, - 585, - 6340000 + 638, + 1, + 6380615 ], "Classes": { "Accessory": { @@ -29,6 +29,9 @@ "AccessoryType": { "Enum": 0 }, + "Archivable": { + "Bool": true + }, "AttachmentPoint": { "CFrame": { "position": [ @@ -64,11 +67,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -201,6 +210,9 @@ "AccessoryType": { "Enum": 0 }, + "Archivable": { + "Bool": true + }, "AssetId": { "Int64": 0 }, @@ -213,6 +225,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "IsLayered": { "Bool": false }, @@ -248,6 +263,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -260,7 +278,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Accoutrement": { "Name": "Accoutrement", @@ -362,6 +390,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "AttachmentPoint": { "CFrame": { "position": [ @@ -397,11 +428,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -414,7 +451,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Actor": { "Name": "Actor", @@ -422,6 +469,9 @@ "Superclass": "Model", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -431,6 +481,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LevelOfDetail": { "Enum": 0 }, @@ -482,6 +535,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "WorldPivotData": { "OptionalCFrame": { "position": [ @@ -571,7 +627,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AdPortal": { "Name": "AdPortal", @@ -629,7 +695,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AdService": { "Name": "AdService", @@ -639,14 +715,34 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AdvancedDragger": { "Name": "AdvancedDragger", "Tags": [], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AirController": { "Name": "AirController", @@ -762,6 +858,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -780,6 +879,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaintainAngularMomentum": { "Bool": true }, @@ -803,6 +905,9 @@ }, "TurnSpeedFactor": { "Float32": 1.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -978,6 +1083,9 @@ "AlignType": { "Enum": 5 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -1019,6 +1127,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxAngularVelocity": { "Float32": null }, @@ -1046,6 +1157,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -1204,6 +1318,9 @@ "ApplyAtCenterOfMass": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -1225,6 +1342,9 @@ "ForceRelativeTo": { "Enum": 2 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxAxesForce": { "Vector3": [ 10000.0, @@ -1263,6 +1383,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -1275,7 +1398,17 @@ ], "Superclass": "GenericSettings", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AnalyticsService": { "Name": "AnalyticsService", @@ -1302,7 +1435,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AngularVelocity": { "Name": "AngularVelocity", @@ -1370,6 +1513,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -1385,6 +1531,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxTorque": { "Float32": 0.0 }, @@ -1400,6 +1549,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -1428,6 +1580,9 @@ "AnimationId": { "Content": "" }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -1437,11 +1592,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -1511,7 +1672,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AnimationClipProvider": { "Name": "AnimationClipProvider", @@ -1522,7 +1693,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AnimationConstraint": { "Name": "AnimationConstraint", @@ -1657,6 +1838,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -1672,6 +1856,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "IsKinematic": { "Bool": false }, @@ -1713,6 +1900,9 @@ ] } }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -1724,6 +1914,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -1733,11 +1926,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -1750,6 +1949,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -1759,11 +1961,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -1776,7 +1984,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AnimationImportData": { "Name": "AnimationImportData", @@ -1786,29 +2004,23 @@ ], "Superclass": "BaseImportData", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AnimationRigData": { "Name": "AnimationRigData", "Tags": [], "Superclass": "Instance", "Properties": { - "articulatedJoint": { - "Name": "articulatedJoint", - "Scriptability": "None", - "DataType": { - "Value": "BinaryString" - }, - "Tags": [ - "Hidden", - "NotScriptable" - ], - "Kind": { - "Canonical": { - "Serialization": "Serializes" - } - } - }, "label": { "Name": "label", "Scriptability": "None", @@ -1907,6 +2119,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -1916,14 +2131,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, - "articulatedJoint": { - "BinaryString": "" + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" }, "label": { "BinaryString": "AQAAAAEAAAAAAAAA" @@ -2055,7 +2273,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AnimationTrack": { "Name": "AnimationTrack", @@ -2202,7 +2430,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Animator": { "Name": "Animator", @@ -2275,6 +2513,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -2284,6 +2525,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "PreferLodEnabled": { "Bool": true }, @@ -2292,6 +2536,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -2406,7 +2653,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AnnotationsService": { "Name": "AnnotationsService", @@ -2449,7 +2706,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AppLifecycleObserverService": { "Name": "AppLifecycleObserverService", @@ -2460,7 +2727,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AppStorageService": { "Name": "AppStorageService", @@ -2471,7 +2748,17 @@ ], "Superclass": "LocalStorageService", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AppUpdateService": { "Name": "AppUpdateService", @@ -2482,7 +2769,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ArcHandles": { "Name": "ArcHandles", @@ -2584,6 +2881,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -2607,6 +2907,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -2616,6 +2919,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true } @@ -2630,7 +2936,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AssetDeliveryProxy": { "Name": "AssetDeliveryProxy", @@ -2681,7 +2997,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AssetImportService": { "Name": "AssetImportService", @@ -2692,7 +3018,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AssetImportSession": { "Name": "AssetImportSession", @@ -2702,7 +3038,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AssetManagerService": { "Name": "AssetManagerService", @@ -2713,7 +3059,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AssetPatchSettings": { "Name": "AssetPatchSettings", @@ -2763,7 +3119,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AssetService": { "Name": "AssetService", @@ -2774,6 +3140,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -2783,11 +3152,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -2798,7 +3173,17 @@ ], "Superclass": "CustomSoundEffect", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Atmosphere": { "Name": "Atmosphere", @@ -2885,6 +3270,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -2917,6 +3305,9 @@ "Haze": { "Float32": 0.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Offset": { "Float32": 0.0 }, @@ -2925,6 +3316,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -2967,6 +3361,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -2976,12 +3373,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UpdateType": { "Enum": 0 } @@ -3194,6 +3597,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -3229,12 +3635,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -3278,9 +3690,25 @@ "Serialization": "DoesNotSerialize" } } + }, + "SpectrumEnabled": { + "Name": "SpectrumEnabled", + "Scriptability": "ReadWrite", + "DataType": { + "Value": "Bool" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -3290,11 +3718,20 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, + "SpectrumEnabled": { + "Bool": true + }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -3359,6 +3796,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -3374,6 +3814,9 @@ "Depth": { "Float32": 0.45 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Mix": { "Float32": 0.85 }, @@ -3385,6 +3828,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -3475,6 +3921,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attack": { "Float32": 0.1 }, @@ -3490,6 +3939,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MakeupGain": { "Float32": 0.0 }, @@ -3507,6 +3959,9 @@ }, "Threshold": { "Float32": -40.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -3622,6 +4077,9 @@ "Active": { "Bool": true }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -3631,6 +4089,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Muted": { "Bool": false }, @@ -3640,6 +4101,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Volume": { "Float32": 1.0 } @@ -3667,6 +4131,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -3676,11 +4143,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -3719,6 +4192,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -3731,6 +4207,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Level": { "Float32": 0.5 }, @@ -3739,6 +4218,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -3816,6 +4298,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -3837,12 +4322,18 @@ "Feedback": { "Float32": 0.5 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "WetLevel": { "Float32": 0.0 } @@ -3883,6 +4374,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -3898,11 +4392,17 @@ "DistanceAttenuation": { "BinaryString": "AA==" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -3926,6 +4426,21 @@ } } }, + "Editor": { + "Name": "Editor", + "Scriptability": "None", + "DataType": { + "Value": "Bool" + }, + "Tags": [ + "NotReplicated" + ], + "Kind": { + "Canonical": { + "Serialization": "DoesNotSerialize" + } + } + }, "HighGain": { "Name": "HighGain", "Scriptability": "ReadWrite", @@ -3980,6 +4495,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -3995,6 +4513,9 @@ "HighGain": { "Float32": 0.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LowGain": { "Float32": 0.0 }, @@ -4012,6 +4533,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -4050,6 +4574,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -4062,12 +4589,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Volume": { "Float32": 1.0 } @@ -4093,6 +4626,21 @@ } } }, + "Editor": { + "Name": "Editor", + "Scriptability": "None", + "DataType": { + "Value": "Bool" + }, + "Tags": [ + "NotReplicated" + ], + "Kind": { + "Canonical": { + "Serialization": "DoesNotSerialize" + } + } + }, "FilterType": { "Name": "FilterType", "Scriptability": "ReadWrite", @@ -4147,6 +4695,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -4168,6 +4719,9 @@ "Gain": { "Float32": 0.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Q": { "Float32": 0.707 }, @@ -4176,6 +4730,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -4240,6 +4797,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -4255,6 +4815,9 @@ "Depth": { "Float32": 0.45 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Mix": { "Float32": 0.85 }, @@ -4266,6 +4829,30 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } + }, + "AudioFocusService": { + "Name": "AudioFocusService", + "Tags": [ + "NotCreatable", + "NotReplicated", + "Service" + ], + "Superclass": "Instance", + "Properties": {}, + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -4291,6 +4878,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -4303,11 +4893,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -4319,7 +4915,17 @@ ], "Superclass": "Pages", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AudioPitchShifter": { "Name": "AudioPitchShifter", @@ -4356,6 +4962,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -4368,6 +4977,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Pitch": { "Float32": 1.25 }, @@ -4376,6 +4988,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -4553,6 +5168,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "AssetId": { "String": "" }, @@ -4568,6 +5186,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LoopRegion": { "NumberRange": [ 0.0, @@ -4595,6 +5216,9 @@ "TimePosition": { "Float64": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Volume": { "Float32": 1.0 } @@ -4778,6 +5402,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -4811,6 +5438,9 @@ "HighCutFrequency": { "Float32": 20000.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LateDelayTime": { "Float32": 0.04 }, @@ -4829,6 +5459,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "WetLevel": { "Float32": -6.0 } @@ -4962,7 +5595,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Avatar2DGenerationJob": { "Name": "Avatar2DGenerationJob", @@ -4985,7 +5628,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Avatar3DGenerationJob": { "Name": "Avatar3DGenerationJob", @@ -5008,7 +5661,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AvatarChatService": { "Name": "AvatarChatService", @@ -5068,7 +5731,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AvatarCreationService": { "Name": "AvatarCreationService", @@ -5078,7 +5751,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AvatarEditorService": { "Name": "AvatarEditorService", @@ -5089,7 +5772,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AvatarGenerationJob": { "Name": "AvatarGenerationJob", @@ -5151,7 +5844,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AvatarGenerationSession": { "Name": "AvatarGenerationSession", @@ -5160,7 +5863,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "AvatarImportService": { "Name": "AvatarImportService", @@ -5171,7 +5884,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Backpack": { "Name": "Backpack", @@ -5179,6 +5902,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -5188,11 +5914,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -5217,7 +5949,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BadgeService": { "Name": "BadgeService", @@ -5227,7 +5969,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BallSocketConstraint": { "Name": "BallSocketConstraint", @@ -5357,6 +6109,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -5372,6 +6127,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LimitsEnabled": { "Bool": false }, @@ -5399,6 +6157,9 @@ "TwistUpperAngle": { "Float32": 45.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UpperAngle": { "Float32": 45.0 }, @@ -5415,7 +6176,17 @@ ], "Superclass": "Pages", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BaseImportData": { "Name": "BaseImportData", @@ -5468,7 +6239,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BasePart": { "Name": "BasePart", @@ -6284,38 +7065,6 @@ } } }, - "PhysicsCFrame": { - "Name": "PhysicsCFrame", - "Scriptability": "None", - "DataType": { - "Value": "CFrame" - }, - "Tags": [ - "Hidden", - "NotScriptable" - ], - "Kind": { - "Canonical": { - "Serialization": "DoesNotSerialize" - } - } - }, - "PhysicsLinearVelocity": { - "Name": "PhysicsLinearVelocity", - "Scriptability": "None", - "DataType": { - "Value": "Vector3" - }, - "Tags": [ - "Hidden", - "NotScriptable" - ], - "Kind": { - "Canonical": { - "Serialization": "DoesNotSerialize" - } - } - }, "PhysicsRepRootPart": { "Name": "PhysicsRepRootPart", "Scriptability": "None", @@ -6332,22 +7081,6 @@ } } }, - "PhysicsRotationalVelocity": { - "Name": "PhysicsRotationalVelocity", - "Scriptability": "None", - "DataType": { - "Value": "Vector3" - }, - "Tags": [ - "Hidden", - "NotScriptable" - ], - "Kind": { - "Canonical": { - "Serialization": "DoesNotSerialize" - } - } - }, "PivotOffset": { "Name": "PivotOffset", "Scriptability": "ReadWrite", @@ -6724,7 +7457,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BasePlayerGui": { "Name": "BasePlayerGui", @@ -6733,7 +7476,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BaseRemoteEvent": { "Name": "BaseRemoteEvent", @@ -6742,7 +7495,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BaseScript": { "Name": "BaseScript", @@ -6808,7 +7571,20 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "ScriptGuid": { + "String": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BaseWrap": { "Name": "BaseWrap", @@ -6968,7 +7744,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Beam": { "Name": "Beam", @@ -7240,6 +8026,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -7286,6 +8075,9 @@ "FaceCamera": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LightEmission": { "Float32": 0.0 }, @@ -7329,6 +8121,9 @@ ] } }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Width0": { "Float32": 1.0 }, @@ -7398,7 +8193,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BillboardGui": { "Name": "BillboardGui", @@ -7650,6 +8455,9 @@ "AlwaysOnTop": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -7694,6 +8502,9 @@ 0.0 ] }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LightInfluence": { "Float32": 0.0 }, @@ -7756,6 +8567,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "ZIndexBehavior": { "Enum": 0 } @@ -7784,6 +8598,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -7793,12 +8610,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Value": { "BinaryString": "" } @@ -7810,6 +8633,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -7819,11 +8645,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -7833,6 +8665,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -7842,11 +8677,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -7856,6 +8697,9 @@ "Superclass": "BevelMesh", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -7874,6 +8718,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Offset": { "Vector3": [ 0.0, @@ -7894,6 +8741,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VertexColor": { "Vector3": [ 1.0, @@ -7949,6 +8799,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -7961,6 +8814,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Intensity": { "Float32": 0.4 }, @@ -7975,6 +8831,9 @@ }, "Threshold": { "Float32": 0.95 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -7998,6 +8857,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -8010,6 +8872,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Size": { "Float32": 24.0 }, @@ -8018,6 +8883,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -8108,6 +8976,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -8117,6 +8988,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxTorque": { "Vector3": [ 4000.0, @@ -8132,6 +9006,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -8298,6 +9175,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -8314,6 +9194,9 @@ 0.5529412 ] }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LeftArmColor3": { "Color3": [ 0.9921569, @@ -8354,6 +9237,9 @@ 0.49803925, 0.2784314 ] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -8395,6 +9281,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -8411,11 +9300,17 @@ 0.0 ] }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -8512,6 +9407,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -8550,6 +9448,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxTorque": { "Vector3": [ 400000.0, @@ -8565,6 +9466,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -8576,7 +9480,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BodyPartDescription": { "Name": "BodyPartDescription", @@ -8639,6 +9553,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "AssetId": { "Int64": 0 }, @@ -8661,11 +9578,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -8762,6 +9685,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -8774,6 +9700,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxForce": { "Vector3": [ 4000.0, @@ -8796,6 +9725,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -8866,6 +9798,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -8882,6 +9817,9 @@ 0.0 ] }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Location": { "Vector3": [ 0.0, @@ -8894,6 +9832,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -8977,6 +9918,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -8986,6 +9930,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxForce": { "Vector3": [ 4000.0, @@ -9002,6 +9949,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Velocity": { "Vector3": [ 0.0, @@ -9066,6 +10016,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -9101,12 +10054,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -9132,6 +10091,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -9141,12 +10103,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Value": { "Bool": false } @@ -9178,6 +10146,9 @@ "AlwaysOnTop": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -9220,6 +10191,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Size": { "Vector3": [ 1.0, @@ -9243,6 +10217,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -9441,7 +10418,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BrickColorValue": { "Name": "BrickColorValue", @@ -9463,6 +10450,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -9472,12 +10462,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Value": { "BrickColor": 194 } @@ -9492,7 +10488,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BubbleChatConfiguration": { "Name": "BubbleChatConfiguration", @@ -9716,6 +10722,9 @@ "AdorneeName": { "String": "HumanoidRootPart" }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -9755,6 +10764,9 @@ "cachedFaceId": "rbxasset://fonts/Montserrat-Medium.ttf" } }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LocalPlayerStudsOffset": { "Vector3": [ 0.0, @@ -9790,6 +10802,9 @@ "TextSize": { "Int64": 16 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VerticalStudsOffset": { "Float32": 0.0 } @@ -9880,6 +10895,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -9889,11 +10907,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -9906,7 +10930,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "BuoyancySensor": { "Name": "BuoyancySensor", @@ -9941,6 +10975,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -9953,6 +10990,9 @@ "FullySubmerged": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -9962,6 +11002,9 @@ "TouchingSurface": { "Bool": false }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UpdateType": { "Enum": 0 } @@ -9987,6 +11030,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -9996,12 +11042,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Value": { "CFrame": { "position": [ @@ -10038,6 +11090,9 @@ "Superclass": "FlyweightService", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -10047,11 +11102,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -10064,7 +11125,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CalloutService": { "Name": "CalloutService", @@ -10075,7 +11146,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Camera": { "Name": "Camera", @@ -10298,6 +11379,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -10374,12 +11458,18 @@ "HeadScale": { "Float32": 1.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VRTiltAndRollEnabled": { "Bool": false } @@ -10415,6 +11505,19 @@ "Serialization": "Serializes" } } + }, + "ResolutionScale": { + "Name": "ResolutionScale", + "Scriptability": "None", + "DataType": { + "Value": "Float32" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } } }, "DefaultProperties": { @@ -10427,6 +11530,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -10481,6 +11587,9 @@ "GroupTransparency": { "Float32": 0.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Interactable": { "Bool": true }, @@ -10499,6 +11608,9 @@ ] ] }, + "ResolutionScale": { + "Float32": 1.0 + }, "Rotation": { "Float32": 0.0 }, @@ -10544,6 +11656,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -10560,7 +11675,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CatalogPages": { "Name": "CatalogPages", @@ -10570,7 +11695,17 @@ ], "Superclass": "Pages", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ChangeHistoryService": { "Name": "ChangeHistoryService", @@ -10580,7 +11715,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ChannelSelectorSoundEffect": { "Name": "ChannelSelectorSoundEffect", @@ -10605,6 +11750,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -10620,6 +11768,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Priority": { "Int32": 0 }, @@ -10628,6 +11779,261 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } + }, + "ChannelTabsConfiguration": { + "Name": "ChannelTabsConfiguration", + "Tags": [ + "NotCreatable" + ], + "Superclass": "TextChatConfigurations", + "Properties": { + "AbsolutePosition": { + "Name": "AbsolutePosition", + "Scriptability": "Read", + "DataType": { + "Value": "Vector2" + }, + "Tags": [ + "NotReplicated", + "ReadOnly" + ], + "Kind": { + "Canonical": { + "Serialization": "DoesNotSerialize" + } + } + }, + "AbsoluteSize": { + "Name": "AbsoluteSize", + "Scriptability": "Read", + "DataType": { + "Value": "Vector2" + }, + "Tags": [ + "NotReplicated", + "ReadOnly" + ], + "Kind": { + "Canonical": { + "Serialization": "DoesNotSerialize" + } + } + }, + "BackgroundColor3": { + "Name": "BackgroundColor3", + "Scriptability": "ReadWrite", + "DataType": { + "Value": "Color3" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "BackgroundTransparency": { + "Name": "BackgroundTransparency", + "Scriptability": "ReadWrite", + "DataType": { + "Value": "Float64" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "Enabled": { + "Name": "Enabled", + "Scriptability": "ReadWrite", + "DataType": { + "Value": "Bool" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "FontFace": { + "Name": "FontFace", + "Scriptability": "ReadWrite", + "DataType": { + "Value": "Font" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "HoverBackgroundColor3": { + "Name": "HoverBackgroundColor3", + "Scriptability": "ReadWrite", + "DataType": { + "Value": "Color3" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "SelectedTabTextColor3": { + "Name": "SelectedTabTextColor3", + "Scriptability": "ReadWrite", + "DataType": { + "Value": "Color3" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "TextColor3": { + "Name": "TextColor3", + "Scriptability": "ReadWrite", + "DataType": { + "Value": "Color3" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "TextSize": { + "Name": "TextSize", + "Scriptability": "ReadWrite", + "DataType": { + "Value": "Int64" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "TextStrokeColor3": { + "Name": "TextStrokeColor3", + "Scriptability": "ReadWrite", + "DataType": { + "Value": "Color3" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "TextStrokeTransparency": { + "Name": "TextStrokeTransparency", + "Scriptability": "ReadWrite", + "DataType": { + "Value": "Float64" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + } + }, + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "Attributes": { + "Attributes": {} + }, + "BackgroundColor3": { + "Color3": [ + 0.09803922, + 0.105882354, + 0.11372549 + ] + }, + "BackgroundTransparency": { + "Float64": 0.0 + }, + "Capabilities": { + "SecurityCapabilities": 0 + }, + "DefinesCapabilities": { + "Bool": false + }, + "Enabled": { + "Bool": false + }, + "FontFace": { + "Font": { + "family": "rbxasset://fonts/families/GothamSSm.json", + "weight": "Bold", + "style": "Normal", + "cachedFaceId": "rbxasset://fonts/Montserrat-Bold.ttf" + } + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "HoverBackgroundColor3": { + "Color3": [ + 0.49019608, + 0.49019608, + 0.49019608 + ] + }, + "SelectedTabTextColor3": { + "Color3": [ + 1.0, + 1.0, + 1.0 + ] + }, + "SourceAssetId": { + "Int64": -1 + }, + "Tags": { + "Tags": [] + }, + "TextColor3": { + "Color3": [ + 0.6862745, + 0.6862745, + 0.6862745 + ] + }, + "TextSize": { + "Int64": 14 + }, + "TextStrokeColor3": { + "Color3": [ + 0.0, + 0.0, + 0.0 + ] + }, + "TextStrokeTransparency": { + "Float64": 1.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -10638,7 +12044,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CharacterMesh": { "Name": "CharacterMesh", @@ -10699,6 +12115,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -10714,6 +12133,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MeshId": { "Int64": 0 }, @@ -10725,6 +12147,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -10765,6 +12190,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -10777,6 +12205,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LoadDefaultChat": { "Bool": true }, @@ -10785,6 +12216,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -11059,6 +12493,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -11092,6 +12529,9 @@ "cachedFaceId": "rbxasset://fonts/Montserrat-Medium.ttf" } }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "KeyboardKeyCode": { "Enum": 47 }, @@ -11127,6 +12567,9 @@ }, "TextStrokeTransparency": { "Float64": 0.5 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -11357,6 +12800,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -11390,6 +12836,9 @@ "HeightScale": { "Float32": 1.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "HorizontalAlignment": { "Enum": 1 }, @@ -11419,6 +12868,9 @@ "TextStrokeTransparency": { "Float64": 0.5 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VerticalAlignment": { "Enum": 1 }, @@ -11436,7 +12888,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ChorusSoundEffect": { "Name": "ChorusSoundEffect", @@ -11484,6 +12946,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -11499,6 +12964,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Mix": { "Float32": 0.5 }, @@ -11513,6 +12981,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -11549,6 +13020,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -11561,6 +13035,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxActivationDistance": { "Float32": 32.0 }, @@ -11569,6 +13046,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -11580,7 +13060,17 @@ ], "Superclass": "NetworkReplicator", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ClimbController": { "Name": "ClimbController", @@ -11644,6 +13134,9 @@ "AccelerationTime": { "Float32": 0.0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -11662,6 +13155,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MoveMaxForce": { "Float32": 10000.0 }, @@ -11673,6 +13169,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -11731,7 +13230,38 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } + }, + "CloudCRUDService": { + "Name": "CloudCRUDService", + "Tags": [ + "NotCreatable", + "NotReplicated", + "Service" + ], + "Superclass": "Instance", + "Properties": {}, + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CloudLocalizationTable": { "Name": "CloudLocalizationTable", @@ -11741,7 +13271,17 @@ ], "Superclass": "LocalizationTable", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Clouds": { "Name": "Clouds", @@ -11802,6 +13342,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -11827,11 +13370,17 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -11844,7 +13393,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Collaborator": { "Name": "Collaborator", @@ -11990,7 +13549,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CollaboratorsService": { "Name": "CollaboratorsService", @@ -12000,7 +13569,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CollectionService": { "Name": "CollectionService", @@ -12011,6 +13590,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -12020,11 +13602,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -12048,6 +13636,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -12057,12 +13648,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Value": { "Color3": [ 0.0, @@ -12131,6 +13728,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -12149,6 +13749,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Saturation": { "Float32": 0.0 }, @@ -12164,6 +13767,9 @@ 1.0, 1.0 ] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -12189,6 +13795,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -12201,6 +13810,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -12209,6 +13821,9 @@ }, "TonemapperPreset": { "Enum": 0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -12360,7 +13975,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CommandService": { "Name": "CommandService", @@ -12371,7 +13996,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CommerceService": { "Name": "CommerceService", @@ -12381,7 +14016,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CompressorSoundEffect": { "Name": "CompressorSoundEffect", @@ -12468,6 +14113,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attack": { "Float32": 0.1 }, @@ -12486,6 +14134,9 @@ "GainMakeup": { "Float32": 0.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Priority": { "Int32": 0 }, @@ -12503,6 +14154,9 @@ }, "Threshold": { "Float32": -40.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -12545,6 +14199,9 @@ "AlwaysOnTop": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -12590,6 +14247,9 @@ "Height": { "Float32": 2.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Radius": { "Float32": 0.5 }, @@ -12609,6 +14269,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -12623,6 +14286,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -12632,11 +14298,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -12648,7 +14320,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ConnectivityService": { "Name": "ConnectivityService", @@ -12676,7 +14358,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Constraint": { "Name": "Constraint", @@ -12767,7 +14459,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ContentProvider": { "Name": "ContentProvider", @@ -12811,7 +14513,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ContextActionService": { "Name": "ContextActionService", @@ -12822,6 +14534,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -12831,11 +14546,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -12846,7 +14567,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ControllerBase": { "Name": "ControllerBase", @@ -12898,7 +14629,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ControllerManager": { "Name": "ControllerManager", @@ -13024,6 +14765,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -13046,6 +14790,9 @@ 1.0 ] }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MovingDirection": { "Vector3": [ 0.0, @@ -13059,6 +14806,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UpDirection": { "Vector3": [ 0.0, @@ -13140,6 +14890,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -13149,6 +14902,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "HitFrame": { "CFrame": { "position": [ @@ -13194,6 +14950,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UpdateType": { "Enum": 0 } @@ -13206,7 +14965,17 @@ ], "Superclass": "SensorBase", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ControllerService": { "Name": "ControllerService", @@ -13217,7 +14986,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ConversationalAIAcceptanceService": { "Name": "ConversationalAIAcceptanceService", @@ -13228,7 +15007,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CookiesService": { "Name": "CookiesService", @@ -13239,6 +15028,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -13248,11 +15040,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -13295,7 +15093,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CorePackages": { "Name": "CorePackages", @@ -13306,7 +15114,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CoreScript": { "Name": "CoreScript", @@ -13316,7 +15134,20 @@ ], "Superclass": "BaseScript", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "ScriptGuid": { + "String": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CoreScriptDebuggingManagerHelper": { "Name": "CoreScriptDebuggingManagerHelper", @@ -13326,7 +15157,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CoreScriptSyncService": { "Name": "CoreScriptSyncService", @@ -13337,7 +15178,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CornerWedgePart": { "Name": "CornerWedgePart", @@ -13348,6 +15199,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -13450,6 +15304,9 @@ "FrontSurfaceInput": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LeftParamA": { "Float32": -0.5 }, @@ -13553,6 +15410,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Velocity": { "Vector3": [ 0.0, @@ -13571,7 +15431,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CrossDMScriptChangeListener": { "Name": "CrossDMScriptChangeListener", @@ -13582,7 +15452,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CurveAnimation": { "Name": "CurveAnimation", @@ -13590,6 +15470,9 @@ "Superclass": "AnimationClip", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -13602,6 +15485,9 @@ "GuidBinaryString": { "BinaryString": "AAAAAAAAAAAAAAAAAAAAAA==" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Loop": { "Bool": true }, @@ -13613,6 +15499,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -13641,6 +15530,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -13650,6 +15542,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "PersistedCurrentValue": { "Float32": 0.0 }, @@ -13658,6 +15553,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -13683,6 +15581,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -13692,11 +15593,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -13707,7 +15614,17 @@ ], "Superclass": "SoundEffect", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "CylinderHandleAdornment": { "Name": "CylinderHandleAdornment", @@ -13777,6 +15694,9 @@ "Angle": { "Float32": 360.0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -13822,6 +15742,9 @@ "Height": { "Float32": 1.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InnerRadius": { "Float32": 0.0 }, @@ -13844,6 +15767,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -13860,6 +15786,9 @@ "Superclass": "BevelMesh", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -13878,6 +15807,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Offset": { "Vector3": [ 0.0, @@ -13898,6 +15830,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VertexColor": { "Vector3": [ 1.0, @@ -14164,6 +16099,9 @@ "AngularVelocity": { "Float32": 0.0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -14179,6 +16117,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InclinationAngle": { "Float32": 0.0 }, @@ -14242,6 +16183,9 @@ "TargetPosition": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UpperAngle": { "Float32": 45.0 }, @@ -14578,7 +16522,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataModelMesh": { "Name": "DataModelMesh", @@ -14628,7 +16582,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataModelPatchService": { "Name": "DataModelPatchService", @@ -14639,7 +16603,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataModelSession": { "Name": "DataModelSession", @@ -14683,7 +16657,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStore": { "Name": "DataStore", @@ -14693,7 +16677,17 @@ ], "Superclass": "GlobalDataStore", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStoreGetOptions": { "Name": "DataStoreGetOptions", @@ -14716,7 +16710,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStoreIncrementOptions": { "Name": "DataStoreIncrementOptions", @@ -14725,7 +16729,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStoreInfo": { "Name": "DataStoreInfo", @@ -14784,7 +16798,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStoreKey": { "Name": "DataStoreKey", @@ -14811,7 +16835,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStoreKeyInfo": { "Name": "DataStoreKeyInfo", @@ -14870,7 +16904,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStoreKeyPages": { "Name": "DataStoreKeyPages", @@ -14897,7 +16941,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStoreListingPages": { "Name": "DataStoreListingPages", @@ -14924,7 +16978,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStoreObjectVersionInfo": { "Name": "DataStoreObjectVersionInfo", @@ -14983,7 +17047,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStoreOptions": { "Name": "DataStoreOptions", @@ -15006,7 +17080,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStorePages": { "Name": "DataStorePages", @@ -15016,7 +17100,17 @@ ], "Superclass": "Pages", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStoreService": { "Name": "DataStoreService", @@ -15060,6 +17154,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -15072,6 +17169,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LegacyNamingScheme": { "Bool": false }, @@ -15080,6 +17180,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -15090,7 +17193,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DataStoreVersionPages": { "Name": "DataStoreVersionPages", @@ -15100,7 +17213,17 @@ ], "Superclass": "Pages", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Debris": { "Name": "Debris", @@ -15127,6 +17250,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -15136,6 +17262,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxItems": { "Int32": 1000 }, @@ -15144,6 +17273,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -15276,7 +17408,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DebuggablePluginWatcher": { "Name": "DebuggablePluginWatcher", @@ -15287,7 +17429,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DebuggerBreakpoint": { "Name": "DebuggerBreakpoint", @@ -15394,7 +17546,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DebuggerConnection": { "Name": "DebuggerConnection", @@ -15473,7 +17635,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DebuggerConnectionManager": { "Name": "DebuggerConnectionManager", @@ -15501,7 +17673,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DebuggerLuaResponse": { "Name": "DebuggerLuaResponse", @@ -15597,7 +17779,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DebuggerManager": { "Name": "DebuggerManager", @@ -15625,7 +17817,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DebuggerUIService": { "Name": "DebuggerUIService", @@ -15636,7 +17838,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DebuggerVariable": { "Name": "DebuggerVariable", @@ -15749,7 +17961,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DebuggerWatch": { "Name": "DebuggerWatch", @@ -15770,7 +17992,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Decal": { "Name": "Decal", @@ -15879,6 +18111,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -15898,6 +18133,9 @@ "Face": { "Enum": 5 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -15910,6 +18148,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "ZIndex": { "Int32": 1 } @@ -15974,6 +18215,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -15992,6 +18236,9 @@ "FocusDistance": { "Float32": 0.05 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InFocusRadius": { "Float32": 10.0 }, @@ -16003,6 +18250,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -16015,7 +18265,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Dialog": { "Name": "Dialog", @@ -16154,6 +18414,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -16175,6 +18438,9 @@ "GoodbyeDialog": { "String": "" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InitialPrompt": { "String": "" }, @@ -16199,6 +18465,9 @@ 0.0, 0.0 ] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -16261,6 +18530,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -16276,6 +18548,9 @@ "GoodbyeDialog": { "String": "" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "ResponseDialog": { "String": "" }, @@ -16285,6 +18560,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UserDialog": { "String": "" } @@ -16310,6 +18588,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -16322,6 +18603,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Level": { "Float32": 0.75 }, @@ -16333,6 +18617,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -16361,7 +18648,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DoubleConstrainedValue": { "Name": "DoubleConstrainedValue", @@ -16445,6 +18742,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -16454,6 +18754,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxValue": { "Float64": 1.0 }, @@ -16466,6 +18769,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "value": { "Float64": 0.0 } @@ -16480,7 +18786,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DragDetector": { "Name": "DragDetector", @@ -16905,6 +19221,9 @@ "ApplyAtCenterOfMass": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -16952,6 +19271,9 @@ "GamepadModeSwitchKeyCode": { "Enum": 1004 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "KeyboardModeSwitchKeyCode": { "Enum": 306 }, @@ -17015,6 +19337,9 @@ "TrackballRollFactor": { "Float32": 1.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VRSwitchKeyCode": { "Enum": 1007 } @@ -17025,7 +19350,17 @@ "Tags": [], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DraggerService": { "Name": "DraggerService", @@ -17325,7 +19660,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "DynamicRotate": { "Name": "DynamicRotate", @@ -17348,7 +19693,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "EchoSoundEffect": { "Name": "EchoSoundEffect", @@ -17409,6 +19764,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -17430,6 +19788,9 @@ "Feedback": { "Float32": 0.5 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Priority": { "Int32": 0 }, @@ -17439,6 +19800,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "WetLevel": { "Float32": 0.0 } @@ -17465,6 +19829,23 @@ } } }, + "IsReplicatedCopy": { + "Name": "IsReplicatedCopy", + "Scriptability": "None", + "DataType": { + "Value": "Bool" + }, + "Tags": [ + "Hidden", + "NotReplicated", + "NotScriptable" + ], + "Kind": { + "Canonical": { + "Serialization": "DoesNotSerialize" + } + } + }, "Size": { "Name": "Size", "Scriptability": "ReadWrite", @@ -17479,13 +19860,40 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "EditableMesh": { "Name": "EditableMesh", "Tags": [], "Superclass": "DataModelMesh", "Properties": { + "IsReplicatedCopy": { + "Name": "IsReplicatedCopy", + "Scriptability": "None", + "DataType": { + "Value": "Bool" + }, + "Tags": [ + "Hidden", + "NotReplicated", + "NotScriptable" + ], + "Kind": { + "Canonical": { + "Serialization": "DoesNotSerialize" + } + } + }, "MeshData": { "Name": "MeshData", "Scriptability": "None", @@ -17516,7 +19924,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "EmotesPages": { "Name": "EmotesPages", @@ -17526,18 +19944,17 @@ ], "Superclass": "InventoryPages", "Properties": {}, - "DefaultProperties": {} - }, - "EngineAPICloudProcessingService": { - "Name": "EngineAPICloudProcessingService", - "Tags": [ - "NotCreatable", - "NotReplicated", - "Service" - ], - "Superclass": "Instance", - "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "EqualizerSoundEffect": { "Name": "EqualizerSoundEffect", @@ -17585,6 +20002,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -17600,6 +20020,9 @@ "HighGain": { "Float32": 0.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LowGain": { "Float32": -20.0 }, @@ -17614,6 +20037,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -17637,6 +20063,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -17646,6 +20075,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "RotationOrder": { "Enum": 0 }, @@ -17654,6 +20086,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -17665,7 +20100,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ExampleService": { "Name": "ExampleService", @@ -17676,7 +20121,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ExperienceAuthService": { "Name": "ExperienceAuthService", @@ -17686,7 +20141,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ExperienceInviteOptions": { "Name": "ExperienceInviteOptions", @@ -17748,7 +20213,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ExperienceNotificationService": { "Name": "ExperienceNotificationService", @@ -17760,6 +20235,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -17769,11 +20247,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -17786,7 +20270,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ExperienceStateCaptureService": { "Name": "ExperienceStateCaptureService", @@ -17848,7 +20342,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Explosion": { "Name": "Explosion", @@ -17964,6 +20468,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -17985,6 +20492,9 @@ "ExplosionType": { "Enum": 1 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Position": { "Vector3": [ 0.0, @@ -18001,6 +20511,9 @@ "TimeScale": { "Float32": 1.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true } @@ -18080,7 +20593,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "FaceControls": { "Name": "FaceControls", @@ -18839,6 +21362,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -18848,11 +21374,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -18878,7 +21410,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "FacialAnimationRecordingService": { "Name": "FacialAnimationRecordingService", @@ -18906,7 +21448,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "FacialAnimationStreamingServiceStats": { "Name": "FacialAnimationStreamingServiceStats", @@ -18916,7 +21468,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "FacialAnimationStreamingServiceV2": { "Name": "FacialAnimationStreamingServiceV2", @@ -18942,7 +21504,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "FacialAnimationStreamingSubsessionStats": { "Name": "FacialAnimationStreamingSubsessionStats", @@ -18952,7 +21524,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "FacsImportData": { "Name": "FacsImportData", @@ -18962,7 +21544,17 @@ ], "Superclass": "BaseImportData", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Feature": { "Name": "Feature", @@ -19024,7 +21616,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "File": { "Name": "File", @@ -19052,7 +21654,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "FileMesh": { "Name": "FileMesh", @@ -19087,6 +21699,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -19096,6 +21711,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MeshId": { "Content": "" }, @@ -19122,6 +21740,9 @@ "TextureId": { "Content": "" }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VertexColor": { "Vector3": [ 1.0, @@ -19288,6 +21909,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -19310,6 +21934,9 @@ "Heat": { "Float32": 9.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SecondaryColor": { "Color3": [ 0.54509807, @@ -19328,6 +21955,9 @@ }, "TimeScale": { "Float32": 1.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -19353,6 +21983,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -19394,6 +22027,9 @@ ] } }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LevelOfDetail": { "Enum": 0 }, @@ -19460,6 +22096,9 @@ "ToolTip": { "String": "" }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "WorldPivotData": { "OptionalCFrame": { "position": [ @@ -19513,6 +22152,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -19618,6 +22260,9 @@ "FrontSurfaceInput": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LeftParamA": { "Float32": -0.5 }, @@ -19727,6 +22372,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Velocity": { "Vector3": [ 0.0, @@ -19744,7 +22392,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "FlangeSoundEffect": { "Name": "FlangeSoundEffect", @@ -19792,6 +22450,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -19807,6 +22468,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Mix": { "Float32": 0.85 }, @@ -19821,6 +22485,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -19863,6 +22530,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -19872,12 +22542,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "ValuesAndTimes": { "BinaryString": "AQAAAAAAAAABAAAAAAAAAA==" } @@ -19996,6 +22672,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -20015,6 +22694,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -20036,6 +22718,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Velocity": { "Float32": 2.0 }, @@ -20055,6 +22740,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -20064,11 +22752,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -20095,6 +22789,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -20104,11 +22801,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -20132,6 +22835,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -20141,12 +22847,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true } @@ -20211,7 +22923,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Frame": { "Name": "Frame", @@ -20242,6 +22964,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -20286,6 +23011,9 @@ "Draggable": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Interactable": { "Bool": true }, @@ -20352,6 +23080,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -20368,7 +23099,17 @@ ], "Superclass": "Pages", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "FriendService": { "Name": "FriendService", @@ -20378,7 +23119,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "FunctionalTest": { "Name": "FunctionalTest", @@ -20486,6 +23237,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -20501,11 +23255,17 @@ "HasMigratedSettingsToTestService": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -20518,6 +23278,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -20527,11 +23290,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -20573,7 +23342,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GamepadService": { "Name": "GamepadService", @@ -20598,7 +23377,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GenericChallengeService": { "Name": "GenericChallengeService", @@ -20608,7 +23397,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GenericSettings": { "Name": "GenericSettings", @@ -20617,7 +23416,17 @@ ], "Superclass": "ServiceProvider", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Geometry": { "Name": "Geometry", @@ -20627,7 +23436,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GeometryService": { "Name": "GeometryService", @@ -20637,7 +23456,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GetTextBoundsParams": { "Name": "GetTextBoundsParams", @@ -20712,7 +23541,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GlobalDataStore": { "Name": "GlobalDataStore", @@ -20722,7 +23561,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GlobalSettings": { "Name": "GlobalSettings", @@ -20732,7 +23581,17 @@ ], "Superclass": "GenericSettings", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Glue": { "Name": "Glue", @@ -20795,6 +23654,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -20887,11 +23749,17 @@ 0.0 ] }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -20921,7 +23789,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GroundController": { "Name": "GroundController", @@ -21079,6 +23957,9 @@ "AccelerationTime": { "Float32": 0.0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -21109,6 +23990,9 @@ "GroundOffset": { "Float32": 1.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MoveSpeedFactor": { "Float32": 1.0 }, @@ -21126,6 +24010,9 @@ }, "TurnSpeedFactor": { "Float32": 1.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -21177,7 +24064,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GroupService": { "Name": "GroupService", @@ -21188,7 +24085,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GuiBase": { "Name": "GuiBase", @@ -21197,7 +24104,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GuiBase2d": { "Name": "GuiBase2d", @@ -21448,7 +24365,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GuiBase3d": { "Name": "GuiBase3d", @@ -21514,7 +24441,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GuiButton": { "Name": "GuiButton", @@ -21673,7 +24610,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GuiLabel": { "Name": "GuiLabel", @@ -21682,7 +24629,17 @@ ], "Superclass": "GuiObject", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GuiMain": { "Name": "GuiMain", @@ -21692,6 +24649,9 @@ "Superclass": "ScreenGui", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -21713,6 +24673,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "ResetOnSpawn": { "Bool": true }, @@ -21743,6 +24706,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "ZIndexBehavior": { "Enum": 0 } @@ -22262,7 +25228,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GuiService": { "Name": "GuiService", @@ -22506,7 +25482,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "GuidRegistryService": { "Name": "GuidRegistryService", @@ -22516,7 +25502,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "HSRDataContentProvider": { "Name": "HSRDataContentProvider", @@ -22527,7 +25523,17 @@ ], "Superclass": "CacheableContentProvider", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "HandleAdornment": { "Name": "HandleAdornment", @@ -22602,7 +25608,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Handles": { "Name": "Handles", @@ -22717,6 +25733,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -22743,6 +25762,9 @@ "Front" ] }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -22755,6 +25777,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true } @@ -22767,7 +25792,131 @@ ], "Superclass": "PartAdornment", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } + }, + "HapticEffect": { + "Name": "HapticEffect", + "Tags": [], + "Superclass": "Instance", + "Properties": { + "Looped": { + "Name": "Looped", + "Scriptability": "ReadWrite", + "DataType": { + "Value": "Bool" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "Position": { + "Name": "Position", + "Scriptability": "None", + "DataType": { + "Value": "Vector3" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "Radius": { + "Name": "Radius", + "Scriptability": "None", + "DataType": { + "Value": "Float32" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "Type": { + "Name": "Type", + "Scriptability": "ReadWrite", + "DataType": { + "Enum": "HapticEffectType" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, + "Waveform": { + "Name": "Waveform", + "Scriptability": "None", + "DataType": { + "Value": "Ref" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + } + }, + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "Attributes": { + "Attributes": {} + }, + "Capabilities": { + "SecurityCapabilities": 0 + }, + "DefinesCapabilities": { + "Bool": false + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "Looped": { + "Bool": false + }, + "Position": { + "Vector3": [ + 0.0, + 0.0, + 0.0 + ] + }, + "Radius": { + "Float32": 3.0 + }, + "SourceAssetId": { + "Int64": -1 + }, + "Tags": { + "Tags": [] + }, + "Type": { + "Enum": 1 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "HapticService": { "Name": "HapticService", @@ -22778,7 +25927,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Hat": { "Name": "Hat", @@ -22788,6 +25947,9 @@ "Superclass": "Accoutrement", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "AttachmentPoint": { "CFrame": { "position": [ @@ -22823,11 +25985,37 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } + }, + "HeatmapService": { + "Name": "HeatmapService", + "Tags": [ + "NotCreatable", + "Service" + ], + "Superclass": "Instance", + "Properties": {}, + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -22839,7 +26027,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "HiddenSurfaceRemovalAsset": { "Name": "HiddenSurfaceRemovalAsset", @@ -22882,6 +26080,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -22897,11 +26098,17 @@ "HSRMeshIdData": { "BinaryString": "" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -23033,6 +26240,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -23058,6 +26268,9 @@ "FillTransparency": { "Float32": 0.5 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "OutlineColor": { "Color3": [ 1.0, @@ -23073,6 +26286,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -23295,6 +26511,9 @@ "AngularVelocity": { "Float32": 0.0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -23310,6 +26529,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LimitsEnabled": { "Bool": false }, @@ -23343,6 +26565,9 @@ "TargetAngle": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UpperAngle": { "Float32": 45.0 }, @@ -23359,6 +26584,9 @@ "Superclass": "Message", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -23368,6 +26596,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -23376,6 +26607,9 @@ }, "Text": { "String": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -23387,6 +26621,9 @@ "Superclass": "Feature", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -23399,6 +26636,9 @@ "FaceId": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InOut": { "Enum": 2 }, @@ -23413,6 +26653,9 @@ }, "TopBottom": { "Enum": 1 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -23425,7 +26668,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "HopperBin": { "Name": "HopperBin", @@ -23501,6 +26754,9 @@ "Active": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -23513,6 +26769,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LevelOfDetail": { "Enum": 0 }, @@ -23567,6 +26826,9 @@ "TextureId": { "Content": "" }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "WorldPivotData": { "OptionalCFrame": { "position": [ @@ -23603,7 +26865,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "HttpRequest": { "Name": "HttpRequest", @@ -23612,7 +26884,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "HttpService": { "Name": "HttpService", @@ -23637,6 +26919,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -23646,6 +26931,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "HttpEnabled": { "Bool": false }, @@ -23654,6 +26942,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -24404,6 +27695,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -24449,6 +27743,9 @@ "HipHeight": { "Float32": 0.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InternalBodyScale": { "Vector3": [ 1.0, @@ -24489,6 +27786,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UseJumpPower": { "Bool": true }, @@ -24503,6 +27803,9 @@ "Superclass": "Controller", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -24512,11 +27815,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -25114,18 +28423,15 @@ } }, "DefaultProperties": { - "AccessoryBlob": { - "String": "[]" - }, "AccessoryRigidAndLayeredBlob": { "String": "[]" }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, - "BackAccessory": { - "String": "" - }, "BodyTypeScale": { "Float32": 0.3 }, @@ -25150,107 +28456,42 @@ "Face": { "Int64": 0 }, - "FaceAccessory": { - "String": "" - }, "FallAnimation": { "Int64": 0 }, - "FrontAccessory": { - "String": "" - }, "GraphicTShirt": { "Int64": 0 }, - "HairAccessory": { - "String": "" - }, - "HatAccessory": { - "String": "" - }, - "Head": { - "Int64": 0 - }, - "HeadColor": { - "Color3": [ - 0.0, - 0.0, - 0.0 - ] - }, "HeadScale": { "Float32": 1.0 }, "HeightScale": { "Float32": 1.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "IdleAnimation": { "Int64": 0 }, "JumpAnimation": { "Int64": 0 }, - "LeftArm": { - "Int64": 0 - }, - "LeftArmColor": { - "Color3": [ - 0.0, - 0.0, - 0.0 - ] - }, - "LeftLeg": { - "Int64": 0 - }, - "LeftLegColor": { - "Color3": [ - 0.0, - 0.0, - 0.0 - ] - }, "MoodAnimation": { "Int64": 0 }, - "NeckAccessory": { - "String": "" - }, "Pants": { "Int64": 0 }, "ProportionScale": { "Float32": 1.0 }, - "RightArm": { - "Int64": 0 - }, - "RightArmColor": { - "Color3": [ - 0.0, - 0.0, - 0.0 - ] - }, - "RightLeg": { - "Int64": 0 - }, - "RightLegColor": { - "Color3": [ - 0.0, - 0.0, - 0.0 - ] - }, "RunAnimation": { "Int64": 0 }, "Shirt": { "Int64": 0 }, - "ShouldersAccessory": { - "String": "" - }, "SourceAssetId": { "Int64": -1 }, @@ -25260,18 +28501,8 @@ "Tags": { "Tags": [] }, - "Torso": { - "Int64": 0 - }, - "TorsoColor": { - "Color3": [ - 0.0, - 0.0, - 0.0 - ] - }, - "WaistAccessory": { - "String": "" + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" }, "WalkAnimation": { "Int64": 0 @@ -25431,6 +28662,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -25469,6 +28703,9 @@ ] } }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Offset": { "CFrame": { "position": [ @@ -25510,6 +28747,9 @@ "Type": { "Enum": 0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Weight": { "Float32": 1.0 } @@ -25523,7 +28763,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "IXPService": { "Name": "IXPService", @@ -25534,7 +28784,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ImageButton": { "Name": "ImageButton", @@ -25741,6 +29001,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -25788,6 +29051,9 @@ "Draggable": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "HoverImage": { "Content": "" }, @@ -25924,6 +29190,9 @@ ] ] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -25971,6 +29240,9 @@ "AlwaysOnTop": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -26013,6 +29285,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Image": { "Content": "rbxasset://textures/SurfacesDefault.png" }, @@ -26038,6 +29313,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -26225,6 +29503,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -26269,6 +29550,9 @@ "Draggable": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Image": { "Content": "" }, @@ -26390,6 +29674,9 @@ ] ] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -26473,7 +29760,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "InputObject": { "Name": "InputObject", @@ -26548,7 +29845,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "InsertService": { "Name": "InsertService", @@ -26598,6 +29905,9 @@ "AllowInsertFreeModels": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -26607,11 +29917,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -26697,9 +30013,7 @@ "DataType": { "Value": "SecurityCapabilities" }, - "Tags": [ - "NotScriptable" - ], + "Tags": [], "Kind": { "Canonical": { "Serialization": "Serializes" @@ -26769,7 +30083,7 @@ ], "Kind": { "Canonical": { - "Serialization": "DoesNotSerialize" + "Serialization": "Serializes" } } }, @@ -26841,8 +30155,7 @@ "Value": "Bool" }, "Tags": [ - "NotReplicated", - "NotScriptable" + "NotReplicated" ], "Kind": { "Canonical": { @@ -26893,7 +30206,7 @@ ], "Kind": { "Canonical": { - "Serialization": "DoesNotSerialize" + "Serialization": "Serializes" } } }, @@ -26948,7 +30261,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "InstanceAdornment": { "Name": "InstanceAdornment", @@ -26971,7 +30294,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "IntConstrainedValue": { "Name": "IntConstrainedValue", @@ -27055,6 +30388,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -27064,6 +30400,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxValue": { "Int64": 10 }, @@ -27076,6 +30415,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "value": { "Int64": 0 } @@ -27101,6 +30443,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -27110,12 +30455,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Value": { "Int64": 0 } @@ -27189,7 +30540,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "InternalSyncService": { "Name": "InternalSyncService", @@ -27200,7 +30561,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "IntersectOperation": { "Name": "IntersectOperation", @@ -27211,6 +30582,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "AssetId": { "Content": "" }, @@ -27325,6 +30699,9 @@ "FrontSurfaceInput": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InitialSize": { "Vector3": [ 1.0, @@ -27392,7 +30769,7 @@ "Float32": 0.0 }, "RenderFidelity": { - "Enum": 1 + "Enum": 0 }, "RightParamA": { "Float32": -0.5 @@ -27447,6 +30824,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UnscaledCofm": { "Vector3": [ null, @@ -27491,7 +30871,17 @@ ], "Superclass": "Pages", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "JointImportData": { "Name": "JointImportData", @@ -27501,7 +30891,17 @@ ], "Superclass": "BaseImportData", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "JointInstance": { "Name": "JointInstance", @@ -27609,7 +31009,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "JointsService": { "Name": "JointsService", @@ -27620,7 +31030,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "KeyboardService": { "Name": "KeyboardService", @@ -27630,7 +31050,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Keyframe": { "Name": "Keyframe", @@ -27652,6 +31082,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -27661,6 +31094,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -27669,6 +31105,9 @@ }, "Time": { "Float32": 0.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -27692,6 +31131,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -27701,12 +31143,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Value": { "String": "" } @@ -27734,6 +31182,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -27749,6 +31200,9 @@ "GuidBinaryString": { "BinaryString": "AAAAAAAAAAAAAAAAAAAAAA==" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Loop": { "Bool": true }, @@ -27760,6 +31214,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -27772,7 +31229,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LSPFileSyncService": { "Name": "LSPFileSyncService", @@ -27783,7 +31250,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LanguageService": { "Name": "LanguageService", @@ -27794,7 +31271,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LayerCollector": { "Name": "LayerCollector", @@ -27844,7 +31331,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LegacyStudioBridge": { "Name": "LegacyStudioBridge", @@ -27855,7 +31352,17 @@ ], "Superclass": "ILegacyStudioBridge", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Light": { "Name": "Light", @@ -27917,7 +31424,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Lighting": { "Name": "Lighting", @@ -28206,6 +31723,9 @@ 0.5 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -28260,6 +31780,9 @@ "GlobalShadows": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "OutdoorAmbient": { "Color3": [ 0.5, @@ -28284,6 +31807,9 @@ }, "TimeOfDay": { "String": "14:00:00" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -28362,6 +31888,9 @@ "ApplyAtCenterOfMass": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -28377,6 +31906,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InverseSquareLaw": { "Bool": false }, @@ -28395,6 +31927,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -28439,6 +31974,9 @@ "AlwaysOnTop": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -28481,6 +32019,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Length": { "Float32": 5.0 }, @@ -28503,6 +32044,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -28687,6 +32231,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -28708,6 +32255,9 @@ "ForceLimitsEnabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LineDirection": { "Vector3": [ 1.0, @@ -28763,6 +32313,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VectorVelocity": { "Vector3": [ 0.0, @@ -28787,7 +32340,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LiveScriptingService": { "Name": "LiveScriptingService", @@ -28814,7 +32377,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LocalDebuggerConnection": { "Name": "LocalDebuggerConnection", @@ -28824,7 +32397,17 @@ ], "Superclass": "DebuggerConnection", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LocalScript": { "Name": "LocalScript", @@ -28832,6 +32415,9 @@ "Superclass": "Script", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -28844,12 +32430,18 @@ "Disabled": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LinkedSource": { "Content": "" }, "RunContext": { "Enum": 0 }, + "ScriptGuid": { + "String": "" + }, "Source": { "String": "" }, @@ -28858,6 +32450,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -28870,7 +32465,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LocalizationService": { "Name": "LocalizationService", @@ -29042,6 +32647,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -29051,11 +32659,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -29145,6 +32759,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -29157,6 +32774,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -29165,6 +32785,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -29256,7 +32879,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LodDataService": { "Name": "LodDataService", @@ -29268,6 +32901,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -29277,11 +32913,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -29294,7 +32936,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LogService": { "Name": "LogService", @@ -29304,7 +32956,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LoginService": { "Name": "LoginService", @@ -29314,7 +32976,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LuaSettings": { "Name": "LuaSettings", @@ -29324,7 +32996,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LuaSourceContainer": { "Name": "LuaSourceContainer", @@ -29444,12 +33126,25 @@ ], "Kind": { "Canonical": { - "Serialization": "DoesNotSerialize" + "Serialization": "Serializes" } } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "ScriptGuid": { + "String": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "LuaWebService": { "Name": "LuaWebService", @@ -29460,6 +33155,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -29469,11 +33167,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -29486,7 +33190,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ManualGlue": { "Name": "ManualGlue", @@ -29496,6 +33210,9 @@ "Superclass": "ManualSurfaceJointInstance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -29560,11 +33277,17 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -29576,7 +33299,17 @@ ], "Superclass": "JointInstance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ManualWeld": { "Name": "ManualWeld", @@ -29586,6 +33319,9 @@ "Superclass": "ManualSurfaceJointInstance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -29650,11 +33386,17 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -29697,6 +33439,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -29706,12 +33451,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "ValuesAndTimes": { "BinaryString": "AQAAAAAAAAABAAAAAAAAAA==" } @@ -29725,7 +33476,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MaterialGenerationService": { "Name": "MaterialGenerationService", @@ -29736,7 +33497,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MaterialGenerationSession": { "Name": "MaterialGenerationSession", @@ -29746,7 +33517,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MaterialImportData": { "Name": "MaterialImportData", @@ -29825,7 +33606,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MaterialService": { "Name": "MaterialService", @@ -30470,6 +34261,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "AsphaltName": { "String": "Asphalt" }, @@ -30533,6 +34327,9 @@ "GroundName": { "String": "Ground" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "IceName": { "String": "Ice" }, @@ -30599,6 +34396,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Use2022MaterialsXml": { "Bool": false }, @@ -30771,6 +34571,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -30789,6 +34592,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaterialPattern": { "Enum": 0 }, @@ -30812,6 +34618,9 @@ }, "TexturePack": { "Content": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -30823,7 +34632,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MemStorageService": { "Name": "MemStorageService", @@ -30834,7 +34653,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MemoryStoreHashMap": { "Name": "MemoryStoreHashMap", @@ -30844,7 +34673,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MemoryStoreHashMapPages": { "Name": "MemoryStoreHashMapPages", @@ -30854,7 +34693,17 @@ ], "Superclass": "Pages", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MemoryStoreQueue": { "Name": "MemoryStoreQueue", @@ -30864,7 +34713,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MemoryStoreService": { "Name": "MemoryStoreService", @@ -30874,6 +34733,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -30883,11 +34745,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -30899,7 +34767,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MeshContentProvider": { "Name": "MeshContentProvider", @@ -30910,7 +34788,17 @@ ], "Superclass": "CacheableContentProvider", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MeshImportData": { "Name": "MeshImportData", @@ -31208,7 +35096,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MeshPart": { "Name": "MeshPart", @@ -31436,6 +35334,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -31550,6 +35451,9 @@ "HasSkinnedMesh": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InitialSize": { "Vector3": [ 0.0, @@ -31679,6 +35583,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UnscaledCofm": { "Vector3": [ null, @@ -31737,6 +35644,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -31746,6 +35656,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -31754,6 +35667,9 @@ }, "Text": { "String": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -31765,7 +35681,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MessageBusService": { "Name": "MessageBusService", @@ -31776,7 +35702,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MessagingService": { "Name": "MessagingService", @@ -31787,7 +35723,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MetaBreakpoint": { "Name": "MetaBreakpoint", @@ -31962,6 +35908,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -31980,6 +35929,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Line": { "Int32": 0 }, @@ -31997,6 +35949,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -32026,6 +35981,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -32038,11 +35996,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -32055,7 +36019,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Model": { "Name": "Model", @@ -32249,6 +36223,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -32258,6 +36235,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LevelOfDetail": { "Enum": 0 }, @@ -32309,6 +36289,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "WorldPivotData": { "OptionalCFrame": { "position": [ @@ -32389,6 +36372,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -32398,9 +36384,15 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LinkedSource": { "Content": "" }, + "ScriptGuid": { + "String": "" + }, "Source": { "String": "" }, @@ -32409,6 +36401,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -32457,9 +36452,28 @@ "Serialization": "Serializes" } } + }, + "ReplicateCurrentAngle": { + "Name": "ReplicateCurrentAngle", + "Scriptability": "None", + "DataType": { + "Value": "Float32" + }, + "Tags": [ + "Hidden", + "NotScriptable" + ], + "Kind": { + "Canonical": { + "Serialization": "DoesNotSerialize" + } + } } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -32527,6 +36541,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxVelocity": { "Float32": 0.0 }, @@ -32535,6 +36552,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -32577,6 +36597,38 @@ } } }, + "ReplicateCurrentAngle6D": { + "Name": "ReplicateCurrentAngle6D", + "Scriptability": "None", + "DataType": { + "Value": "Vector3" + }, + "Tags": [ + "Hidden", + "NotScriptable" + ], + "Kind": { + "Canonical": { + "Serialization": "DoesNotSerialize" + } + } + }, + "ReplicateCurrentOffset6D": { + "Name": "ReplicateCurrentOffset6D", + "Scriptability": "None", + "DataType": { + "Value": "Vector3" + }, + "Tags": [ + "Hidden", + "NotScriptable" + ], + "Kind": { + "Canonical": { + "Serialization": "DoesNotSerialize" + } + } + }, "Transform": { "Name": "Transform", "Scriptability": "ReadWrite", @@ -32595,6 +36647,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -32662,6 +36717,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxVelocity": { "Float32": 0.0 }, @@ -32670,6 +36728,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -32681,6 +36742,9 @@ "Superclass": "Feature", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -32693,6 +36757,9 @@ "FaceId": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InOut": { "Enum": 2 }, @@ -32707,6 +36774,9 @@ }, "TopBottom": { "Enum": 1 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -32923,7 +36993,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MouseService": { "Name": "MouseService", @@ -32934,7 +37014,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "MultipleDocumentInterfaceInstance": { "Name": "MultipleDocumentInterfaceInstance", @@ -32962,7 +37052,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "NegateOperation": { "Name": "NegateOperation", @@ -32973,6 +37073,9 @@ "Anchored": { "Bool": true }, + "Archivable": { + "Bool": true + }, "AssetId": { "Content": "" }, @@ -33087,6 +37190,9 @@ "FrontSurfaceInput": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InitialSize": { "Vector3": [ 1.0, @@ -33154,7 +37260,7 @@ "Float32": 0.0 }, "RenderFidelity": { - "Enum": 1 + "Enum": 0 }, "RightParamA": { "Float32": -0.5 @@ -33209,6 +37315,9 @@ "Transparency": { "Float32": 0.1 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UnscaledCofm": { "Vector3": [ null, @@ -33254,7 +37363,17 @@ ], "Superclass": "NetworkPeer", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "NetworkMarker": { "Name": "NetworkMarker", @@ -33264,7 +37383,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "NetworkPeer": { "Name": "NetworkPeer", @@ -33274,7 +37403,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "NetworkReplicator": { "Name": "NetworkReplicator", @@ -33284,7 +37423,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "NetworkServer": { "Name": "NetworkServer", @@ -33295,7 +37444,17 @@ ], "Superclass": "NetworkPeer", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "NetworkSettings": { "Name": "NetworkSettings", @@ -33474,7 +37633,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "NoCollisionConstraint": { "Name": "NoCollisionConstraint", @@ -33522,6 +37691,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -33534,11 +37706,17 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -33576,7 +37754,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "NonReplicatedCSGDictionaryService": { "Name": "NonReplicatedCSGDictionaryService", @@ -33586,6 +37774,9 @@ "Superclass": "FlyweightService", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -33595,11 +37786,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -33677,7 +37874,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "NumberPose": { "Name": "NumberPose", @@ -33699,6 +37906,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -33714,12 +37924,18 @@ "EasingStyle": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Value": { "Float64": 0.0 }, @@ -33748,6 +37964,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -33757,12 +37976,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Value": { "Float64": 0.0 } @@ -33788,6 +38013,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -33797,11 +38025,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -33814,7 +38048,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "OpenCloudApiV1": { "Name": "OpenCloudApiV1", @@ -33824,7 +38068,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "OpenCloudService": { "Name": "OpenCloudService", @@ -33836,6 +38090,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -33845,11 +38102,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -33859,6 +38122,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -33868,11 +38134,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -33884,7 +38156,17 @@ ], "Superclass": "GlobalDataStore", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "OutfitPages": { "Name": "OutfitPages", @@ -33894,7 +38176,17 @@ ], "Superclass": "Pages", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PVAdornment": { "Name": "PVAdornment", @@ -33917,7 +38209,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PVInstance": { "Name": "PVInstance", @@ -33960,7 +38262,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PackageLink": { "Name": "PackageLink", @@ -34193,7 +38505,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PackageService": { "Name": "PackageService", @@ -34204,7 +38526,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PackageUIService": { "Name": "PackageUIService", @@ -34215,7 +38547,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Pages": { "Name": "Pages", @@ -34242,7 +38584,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Pants": { "Name": "Pants", @@ -34264,6 +38616,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -34280,6 +38635,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "PantsTemplate": { "Content": "" }, @@ -34288,6 +38646,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -34373,6 +38734,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -34389,6 +38753,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -34398,6 +38765,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true } @@ -34464,6 +38834,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -34569,6 +38942,9 @@ "FrontSurfaceInput": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LeftParamA": { "Float32": -0.5 }, @@ -34675,6 +39051,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Velocity": { "Vector3": [ 0.0, @@ -34705,7 +39084,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PartOperation": { "Name": "PartOperation", @@ -34970,6 +39359,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "AssetId": { "Content": "" }, @@ -35084,6 +39476,9 @@ "FrontSurfaceInput": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InitialSize": { "Vector3": [ 1.0, @@ -35151,7 +39546,7 @@ "Float32": 0.0 }, "RenderFidelity": { - "Enum": 1 + "Enum": 0 }, "RightParamA": { "Float32": -0.5 @@ -35206,6 +39601,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UnscaledCofm": { "Vector3": [ null, @@ -35282,6 +39680,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -35294,6 +39695,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MeshData": { "BinaryString": "" }, @@ -35302,6 +39706,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -35780,6 +40187,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -35841,6 +40251,9 @@ "FlipbookStartRandom": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Lifetime": { "NumberRange": [ 5.0, @@ -35958,6 +40371,9 @@ ] } }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VelocityInheritance": { "Float32": 0.0 }, @@ -35978,7 +40394,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PatchMapping": { "Name": "PatchMapping", @@ -36028,7 +40454,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Path": { "Name": "Path", @@ -36055,7 +40491,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Path2D": { "Name": "Path2D", @@ -36173,6 +40619,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -36192,6 +40641,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "PropertiesSerialize": { "BinaryString": "AAAAAA==" }, @@ -36207,6 +40659,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -36274,6 +40729,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -36283,6 +40741,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "IsBidirectional": { "Bool": true }, @@ -36294,6 +40755,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -36330,6 +40794,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -36339,6 +40806,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Label": { "String": "" }, @@ -36350,6 +40820,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -36379,7 +40852,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PausedState": { "Name": "PausedState", @@ -36441,7 +40924,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PausedStateBreakpoint": { "Name": "PausedStateBreakpoint", @@ -36469,7 +40962,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PausedStateException": { "Name": "PausedStateException", @@ -36497,7 +41000,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PermissionsService": { "Name": "PermissionsService", @@ -36508,6 +41021,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -36517,11 +41033,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -36534,6 +41056,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -36543,11 +41068,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -37187,7 +41718,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PitchShiftSoundEffect": { "Name": "PitchShiftSoundEffect", @@ -37209,6 +41750,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -37221,6 +41765,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Octave": { "Float32": 1.25 }, @@ -37232,6 +41779,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -37244,7 +41794,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PlacesService": { "Name": "PlacesService", @@ -37255,7 +41815,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Plane": { "Name": "Plane", @@ -37265,6 +41835,9 @@ "Superclass": "PlaneConstraint", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -37280,12 +41853,18 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -37297,6 +41876,9 @@ "Superclass": "Constraint", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -37312,12 +41894,18 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -37330,7 +41918,17 @@ ], "Superclass": "Part", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PlatformCloudStorageService": { "Name": "PlatformCloudStorageService", @@ -37341,7 +41939,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PlatformFriendsService": { "Name": "PlatformFriendsService", @@ -37352,7 +41960,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Player": { "Name": "Player", @@ -38209,7 +42827,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PlayerEmulatorService": { "Name": "PlayerEmulatorService", @@ -38318,6 +42946,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -38336,6 +42967,9 @@ "EmulatedGameLocale": { "String": "" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "PlayerEmulationEnabled": { "Bool": false }, @@ -38350,6 +42984,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -38404,7 +43041,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PlayerHydrationService": { "Name": "PlayerHydrationService", @@ -38414,7 +43061,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PlayerMouse": { "Name": "PlayerMouse", @@ -38423,7 +43080,17 @@ ], "Superclass": "Mouse", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PlayerScripts": { "Name": "PlayerScripts", @@ -38433,7 +43100,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PlayerViewService": { "Name": "PlayerViewService", @@ -38444,7 +43121,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Players": { "Name": "Players", @@ -38698,6 +43385,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -38710,6 +43400,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxPlayers": { "Int32": 12 }, @@ -38725,6 +43418,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UseStrafingAnimations": { "Bool": false } @@ -38837,7 +43533,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginAction": { "Name": "PluginAction", @@ -38959,7 +43665,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginCapabilities": { "Name": "PluginCapabilities", @@ -38981,6 +43697,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -38990,6 +43709,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Manifest": { "String": "{\"Metadata\":{\"TargetDataModels\": [\"Edit\", \"Server\", \"Client\"]},\"Permissions\":{}}" }, @@ -38998,6 +43720,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -39010,7 +43735,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginDragEvent": { "Name": "PluginDragEvent", @@ -39085,7 +43820,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginGui": { "Name": "PluginGui", @@ -39109,7 +43854,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginGuiService": { "Name": "PluginGuiService", @@ -39120,7 +43875,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginManagementService": { "Name": "PluginManagementService", @@ -39131,7 +43896,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginManager": { "Name": "PluginManager", @@ -39140,7 +43915,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginManagerInterface": { "Name": "PluginManagerInterface", @@ -39150,7 +43935,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginMenu": { "Name": "PluginMenu", @@ -39191,7 +43986,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginMouse": { "Name": "PluginMouse", @@ -39200,7 +44005,17 @@ ], "Superclass": "Mouse", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginPolicyService": { "Name": "PluginPolicyService", @@ -39211,7 +44026,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginToolbar": { "Name": "PluginToolbar", @@ -39220,7 +44045,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PluginToolbarButton": { "Name": "PluginToolbarButton", @@ -39275,7 +44110,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PointLight": { "Name": "PointLight", @@ -39297,6 +44142,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -39319,6 +44167,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Range": { "Float32": 8.0 }, @@ -39330,6 +44181,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -39342,7 +44196,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PolicyService": { "Name": "PolicyService", @@ -39384,7 +44248,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Pose": { "Name": "Pose", @@ -39422,6 +44296,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -39463,12 +44340,18 @@ "EasingStyle": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Weight": { "Float32": 1.0 } @@ -39521,7 +44404,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PostEffect": { "Name": "PostEffect", @@ -39544,7 +44437,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "PrismaticConstraint": { "Name": "PrismaticConstraint", @@ -39555,6 +44458,9 @@ "ActuatorType": { "Enum": 0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -39570,6 +44476,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LimitsEnabled": { "Bool": false }, @@ -39609,6 +44518,9 @@ "TargetPosition": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UpperLimit": { "Float32": 5.0 }, @@ -39629,6 +44541,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -39638,25 +44553,20 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, - "ProjectFolderService": { - "Name": "ProjectFolderService", - "Tags": [ - "NotCreatable", - "NotReplicated", - "Service" - ], - "Superclass": "Instance", - "Properties": {}, - "DefaultProperties": {} - }, "ProximityPrompt": { "Name": "ProximityPrompt", "Tags": [], @@ -39849,6 +44759,9 @@ "ActionText": { "String": "Interact" }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -39873,6 +44786,9 @@ "GamepadKeyCode": { "Enum": 1000 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "HoldDuration": { "Float32": 0.0 }, @@ -39902,6 +44818,9 @@ 0.0, 0.0 ] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -39941,6 +44860,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -39953,6 +44875,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxPromptsVisible": { "Int32": 16 }, @@ -39961,6 +44886,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -39973,7 +44901,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "QWidgetPluginGui": { "Name": "QWidgetPluginGui", @@ -39983,7 +44921,17 @@ ], "Superclass": "PluginGui", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RTAnimationTracker": { "Name": "RTAnimationTracker", @@ -40074,7 +45022,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RayValue": { "Name": "RayValue", @@ -40096,6 +45054,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40105,12 +45066,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Value": { "Ray": { "origin": [ @@ -40135,7 +45102,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ReflectionMetadata": { "Name": "ReflectionMetadata", @@ -40143,6 +45120,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40152,11 +45132,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40166,6 +45152,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40175,11 +45164,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40258,6 +45253,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40297,6 +45295,9 @@ "FFlag": { "String": "" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Insertable": { "Bool": true }, @@ -40335,6 +45336,9 @@ }, "UINumTicks": { "Float64": 0.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40344,6 +45348,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40353,11 +45360,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40367,6 +45380,9 @@ "Superclass": "ReflectionMetadataItem", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40400,6 +45416,9 @@ "FFlag": { "String": "" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "IsBackend": { "Bool": false }, @@ -40429,6 +45448,9 @@ }, "UINumTicks": { "Float64": 0.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40438,6 +45460,9 @@ "Superclass": "ReflectionMetadataItem", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40471,6 +45496,9 @@ "FFlag": { "String": "" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "IsBackend": { "Bool": false }, @@ -40500,6 +45528,9 @@ }, "UINumTicks": { "Float64": 0.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40509,6 +45540,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40518,11 +45552,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40532,6 +45572,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40541,11 +45584,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40555,6 +45604,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40564,11 +45616,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40788,7 +45846,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ReflectionMetadataMember": { "Name": "ReflectionMetadataMember", @@ -40796,6 +45864,9 @@ "Superclass": "ReflectionMetadataItem", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40829,6 +45900,9 @@ "FFlag": { "String": "" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "IsBackend": { "Bool": false }, @@ -40858,6 +45932,9 @@ }, "UINumTicks": { "Float64": 0.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40867,6 +45944,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40876,11 +45956,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40890,6 +45976,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40899,11 +45988,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40916,7 +46011,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RemoteCursorService": { "Name": "RemoteCursorService", @@ -40926,7 +46031,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RemoteDebuggerServer": { "Name": "RemoteDebuggerServer", @@ -40937,7 +46052,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RemoteEvent": { "Name": "RemoteEvent", @@ -40945,6 +46070,9 @@ "Superclass": "BaseRemoteEvent", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40954,11 +46082,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -40968,6 +46102,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -40977,11 +46114,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -41193,7 +46336,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RenderingTest": { "Name": "RenderingTest", @@ -41403,6 +46556,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -41453,6 +46609,9 @@ "FieldOfView": { "Float32": 70.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "PerfTest": { "Bool": false }, @@ -41479,6 +46638,9 @@ }, "Timeout": { "Int32": 10 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -41491,6 +46653,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -41500,11 +46665,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -41517,6 +46688,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -41526,11 +46700,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -41606,6 +46786,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -41630,6 +46813,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Priority": { "Int32": 0 }, @@ -41639,6 +46825,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "WetLevel": { "Float32": 0.0 } @@ -41653,7 +46842,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RigidConstraint": { "Name": "RigidConstraint", @@ -41661,6 +46860,9 @@ "Superclass": "Constraint", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -41676,12 +46878,18 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -41711,6 +46919,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -41720,6 +46931,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "ImageDataSerialize": { "BinaryString": "" }, @@ -41734,6 +46948,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -41761,6 +46978,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -41770,6 +46990,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MeshDataSerialize": { "BinaryString": "" }, @@ -41796,6 +47019,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VertexColor": { "Vector3": [ 1.0, @@ -41814,7 +47040,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RobloxReplicatedStorage": { "Name": "RobloxReplicatedStorage", @@ -41825,7 +47061,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RobloxServerStorage": { "Name": "RobloxServerStorage", @@ -41836,7 +47082,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RocketPropulsion": { "Name": "RocketPropulsion", @@ -42006,6 +47262,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -42018,6 +47277,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxSpeed": { "Float32": 30.0 }, @@ -42058,6 +47320,9 @@ }, "TurnP": { "Float32": 3000.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -42149,6 +47414,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -42164,6 +47432,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Length": { "Float32": 5.0 }, @@ -42185,6 +47456,9 @@ "Thickness": { "Float32": 0.1 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -42198,7 +47472,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RootImportData": { "Name": "RootImportData", @@ -42540,7 +47824,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RopeConstraint": { "Name": "RopeConstraint", @@ -42669,6 +47963,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -42684,6 +47981,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Length": { "Float32": 5.0 }, @@ -42699,6 +47999,9 @@ "Thickness": { "Float32": 0.1 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false }, @@ -42727,6 +48030,9 @@ "Superclass": "JointInstance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -42791,11 +48097,17 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -42807,6 +48119,9 @@ "Superclass": "DynamicRotate", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -42874,11 +48189,17 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -42890,6 +48211,9 @@ "Superclass": "DynamicRotate", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -42957,11 +48281,17 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -43004,6 +48334,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -43013,12 +48346,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "ValuesAndTimes": { "BinaryString": "AQAAAAAAAAABAAAAAAAAAA==" } @@ -43033,7 +48372,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RunService": { "Name": "RunService", @@ -43076,7 +48425,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RunningAverageItemDouble": { "Name": "RunningAverageItemDouble", @@ -43085,7 +48444,17 @@ ], "Superclass": "StatsItem", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RunningAverageItemInt": { "Name": "RunningAverageItemInt", @@ -43094,7 +48463,17 @@ ], "Superclass": "StatsItem", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RunningAverageTimeIntervalItem": { "Name": "RunningAverageTimeIntervalItem", @@ -43103,7 +48482,17 @@ ], "Superclass": "StatsItem", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "RuntimeScriptService": { "Name": "RuntimeScriptService", @@ -43114,7 +48503,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "SafetyService": { "Name": "SafetyService", @@ -43138,7 +48537,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScreenGui": { "Name": "ScreenGui", @@ -43232,6 +48641,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -43253,6 +48665,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "ResetOnSpawn": { "Bool": true }, @@ -43283,6 +48698,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "ZIndexBehavior": { "Enum": 0 } @@ -43436,7 +48854,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Script": { "Name": "Script", @@ -43458,6 +48886,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -43470,12 +48901,18 @@ "Disabled": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LinkedSource": { "Content": "" }, "RunContext": { "Enum": 0 }, + "ScriptGuid": { + "String": "" + }, "Source": { "String": "" }, @@ -43484,6 +48921,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -43495,7 +48935,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScriptChangeService": { "Name": "ScriptChangeService", @@ -43506,7 +48956,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScriptCloneWatcher": { "Name": "ScriptCloneWatcher", @@ -43517,7 +48977,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScriptCloneWatcherHelper": { "Name": "ScriptCloneWatcherHelper", @@ -43528,7 +48998,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScriptCommitService": { "Name": "ScriptCommitService", @@ -43539,7 +49019,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScriptContext": { "Name": "ScriptContext", @@ -43566,7 +49056,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScriptDebugger": { "Name": "ScriptDebugger", @@ -43672,7 +49172,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScriptDocument": { "Name": "ScriptDocument", @@ -43682,7 +49192,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScriptEditorService": { "Name": "ScriptEditorService", @@ -43693,7 +49213,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScriptProfilerService": { "Name": "ScriptProfilerService", @@ -43703,7 +49233,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScriptRegistrationService": { "Name": "ScriptRegistrationService", @@ -43714,7 +49254,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScriptRuntime": { "Name": "ScriptRuntime", @@ -43724,7 +49274,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ScriptService": { "Name": "ScriptService", @@ -43735,6 +49295,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -43744,11 +49307,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -44062,6 +49631,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -44133,6 +49705,9 @@ "ElasticBehavior": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "HorizontalScrollBarInset": { "Enum": 0 }, @@ -44224,6 +49799,9 @@ "TopImage": { "Content": "rbxasset://textures/ui/Scroll/scroll-top.png" }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VerticalScrollBarInset": { "Enum": 0 }, @@ -44277,6 +49855,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -44385,6 +49966,9 @@ "FrontSurfaceInput": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LeftParamA": { "Float32": -0.5 }, @@ -44491,6 +50075,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Velocity": { "Vector3": [ 0.0, @@ -44610,6 +50197,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -44619,11 +50209,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -44705,6 +50301,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -44721,6 +50320,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LineThickness": { "Float32": 0.15 }, @@ -44746,6 +50348,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true } @@ -44759,7 +50364,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "SelectionLasso": { "Name": "SelectionLasso", @@ -44782,7 +50397,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "SelectionPartLasso": { "Name": "SelectionPartLasso", @@ -44806,6 +50431,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -44822,6 +50450,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -44831,6 +50462,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true } @@ -44858,6 +50492,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -44874,6 +50511,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Point": { "Vector3": [ 0.0, @@ -44890,6 +50530,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true } @@ -44945,6 +50588,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -44961,6 +50607,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -44980,6 +50629,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true } @@ -45006,7 +50658,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ServerReplicator": { "Name": "ServerReplicator", @@ -45016,7 +50678,17 @@ ], "Superclass": "NetworkReplicator", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ServerScriptService": { "Name": "ServerScriptService", @@ -45045,6 +50717,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -45054,6 +50729,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LoadStringEnabled": { "Bool": false }, @@ -45062,6 +50740,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -45075,6 +50756,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -45084,11 +50768,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -45100,7 +50790,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ServiceVisibilityService": { "Name": "ServiceVisibilityService", @@ -45138,6 +50838,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -45150,12 +50853,18 @@ "HiddenServices": { "BinaryString": "AAAAAA==" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VisibleServices": { "BinaryString": "AAAAAA==" } @@ -45169,7 +50878,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "SharedTableRegistry": { "Name": "SharedTableRegistry", @@ -45180,7 +50899,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Shirt": { "Name": "Shirt", @@ -45202,6 +50931,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -45218,6 +50950,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "ShirtTemplate": { "Content": "" }, @@ -45226,6 +50961,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -45262,6 +51000,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -45281,11 +51022,17 @@ "Graphic": { "Content": "" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -45298,7 +51045,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "SkateboardController": { "Name": "SkateboardController", @@ -45339,6 +51096,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -45348,11 +51108,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -45455,6 +51221,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -45560,6 +51329,9 @@ "FrontSurfaceInput": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LeftParamA": { "Float32": -0.5 }, @@ -45675,6 +51447,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Velocity": { "Vector3": [ 0.0, @@ -45706,6 +51481,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -45715,6 +51493,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SkinColor": { "BrickColor": 226 }, @@ -45723,6 +51504,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -45889,6 +51673,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -45901,6 +51688,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MoonAngularSize": { "Float32": 11.0 }, @@ -45939,6 +51729,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -46150,7 +51943,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Smoke": { "Name": "Smoke", @@ -46313,6 +52116,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -46332,6 +52138,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Opacity": { "Float32": 0.5 }, @@ -46349,6 +52158,9 @@ }, "TimeScale": { "Float32": 1.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -46361,7 +52173,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Snap": { "Name": "Snap", @@ -46371,6 +52193,9 @@ "Superclass": "JointInstance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -46435,11 +52260,17 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -46452,7 +52283,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "SocialService": { "Name": "SocialService", @@ -46463,7 +52304,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "SolidModelContentProvider": { "Name": "SolidModelContentProvider", @@ -46474,7 +52325,17 @@ ], "Superclass": "CacheableContentProvider", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Sound": { "Name": "Sound", @@ -46975,6 +52836,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -46984,6 +52848,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LoopRegion": { "NumberRange": [ 0.0, @@ -47032,6 +52899,9 @@ "TimePosition": { "Float64": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Volume": { "Float32": 0.5 } @@ -47071,7 +52941,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "SoundGroup": { "Name": "SoundGroup", @@ -47093,6 +52973,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -47102,12 +52985,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Volume": { "Float32": 0.5 } @@ -47206,6 +53095,9 @@ "AmbientReverb": { "Enum": 0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -47221,6 +53113,9 @@ "DopplerScale": { "Float32": 1.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "RespectFilteringEnabled": { "Bool": false }, @@ -47233,6 +53128,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VolumetricAudio": { "Enum": 1 } @@ -47316,6 +53214,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -47328,6 +53229,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -47343,6 +53247,9 @@ }, "TimeScale": { "Float32": 1.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -47424,6 +53331,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -47535,6 +53445,9 @@ "FrontSurfaceInput": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LeftParamA": { "Float32": -0.5 }, @@ -47647,6 +53560,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Velocity": { "Vector3": [ 0.0, @@ -47664,7 +53580,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "SpecialMesh": { "Name": "SpecialMesh", @@ -47686,6 +53612,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -47695,6 +53624,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MeshId": { "Content": "" }, @@ -47724,6 +53656,9 @@ "TextureId": { "Content": "" }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VertexColor": { "Vector3": [ 1.0, @@ -47759,6 +53694,9 @@ "AlwaysOnTop": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -47801,6 +53739,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Radius": { "Float32": 1.0 }, @@ -47820,6 +53761,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -47877,6 +53821,9 @@ "Angle": { "Float32": 90.0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -47902,6 +53849,9 @@ "Face": { "Enum": 5 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Range": { "Float32": 16.0 }, @@ -47913,6 +53863,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -48069,6 +54022,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -48093,6 +54049,9 @@ "FreeLength": { "Float32": 1.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LimitsEnabled": { "Bool": false }, @@ -48120,6 +54079,9 @@ "Thickness": { "Float32": 0.1 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -48287,7 +54249,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StandalonePluginScripts": { "Name": "StandalonePluginScripts", @@ -48295,6 +54267,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -48304,11 +54279,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -48320,7 +54301,17 @@ ], "Superclass": "Pages", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StarterCharacterScripts": { "Name": "StarterCharacterScripts", @@ -48330,6 +54321,9 @@ "Superclass": "StarterPlayerScripts", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -48339,11 +54333,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -48353,6 +54353,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -48362,11 +54365,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -48467,6 +54476,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -48476,6 +54488,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "ResetPlayerGuiOnSpawn": { "Bool": true }, @@ -48494,6 +54509,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VirtualCursorMode": { "Enum": 0 } @@ -48508,6 +54526,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -48517,11 +54538,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -49166,6 +55193,9 @@ "AllowCustomAnimations": { "Bool": true }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -49295,6 +55325,9 @@ "HealthDisplayDistance": { "Float32": 100.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LoadCharacterAppearance": { "Bool": true }, @@ -49313,6 +55346,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UserEmotesEnabled": { "Bool": true } @@ -49326,6 +55362,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -49335,11 +55374,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -49352,7 +55397,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Stats": { "Name": "Stats", @@ -49523,7 +55578,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StatsItem": { "Name": "StatsItem", @@ -49550,7 +55615,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Status": { "Name": "Status", @@ -49560,7 +55635,17 @@ ], "Superclass": "Model", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StopWatchReporter": { "Name": "StopWatchReporter", @@ -49571,7 +55656,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StreamingService": { "Name": "StreamingService", @@ -49582,7 +55677,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StringValue": { "Name": "StringValue", @@ -49604,6 +55709,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -49613,12 +55721,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Value": { "String": "" } @@ -51711,7 +57825,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StudioAssetService": { "Name": "StudioAssetService", @@ -51722,7 +57846,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StudioAttachment": { "Name": "StudioAttachment", @@ -51797,7 +57931,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StudioCallout": { "Name": "StudioCallout", @@ -51903,7 +58047,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StudioData": { "Name": "StudioData", @@ -51930,6 +58084,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -51942,11 +58099,17 @@ "EnableScriptCollabByDefaultOnLoad": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -52027,7 +58190,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StudioObjectBase": { "Name": "StudioObjectBase", @@ -52037,7 +58210,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StudioPublishService": { "Name": "StudioPublishService", @@ -52062,7 +58245,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StudioScriptDebugEventListener": { "Name": "StudioScriptDebugEventListener", @@ -52073,7 +58266,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StudioSdkService": { "Name": "StudioSdkService", @@ -52084,7 +58287,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StudioService": { "Name": "StudioService", @@ -52161,6 +58374,22 @@ } } }, + "ForceShowConstraintDetails": { + "Name": "ForceShowConstraintDetails", + "Scriptability": "None", + "DataType": { + "Value": "Bool" + }, + "Tags": [ + "Hidden", + "NotReplicated" + ], + "Kind": { + "Canonical": { + "Serialization": "DoesNotSerialize" + } + } + }, "GridSize": { "Name": "GridSize", "Scriptability": "Read", @@ -52304,7 +58533,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StudioTheme": { "Name": "StudioTheme", @@ -52314,7 +58553,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StudioWidget": { "Name": "StudioWidget", @@ -52324,7 +58573,17 @@ ], "Superclass": "StudioObjectBase", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StudioWidgetsService": { "Name": "StudioWidgetsService", @@ -52335,7 +58594,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StyleBase": { "Name": "StyleBase", @@ -52344,7 +58613,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "StyleDerive": { "Name": "StyleDerive", @@ -52382,6 +58661,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -52391,6 +58673,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Index": { "Int32": -1 }, @@ -52399,6 +58684,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -52422,6 +58710,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -52431,11 +58722,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -52507,6 +58804,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -52516,6 +58816,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Index": { "Int32": -1 }, @@ -52530,6 +58833,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -52539,6 +58845,9 @@ "Superclass": "StyleBase", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -52548,11 +58857,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -52565,7 +58880,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "SunRaysEffect": { "Name": "SunRaysEffect", @@ -52600,6 +58925,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -52612,6 +58940,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Intensity": { "Float32": 0.25 }, @@ -52623,6 +58954,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -52727,6 +59061,9 @@ "AlphaMode": { "Enum": 0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -52746,6 +59083,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MetalnessMap": { "Content": "" }, @@ -52763,6 +59103,9 @@ }, "TexturePack": { "Content": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -52939,6 +59282,9 @@ "AlwaysOnTop": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -52969,6 +59315,9 @@ "Face": { "Enum": 5 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LightInfluence": { "Float32": 0.0 }, @@ -53008,6 +59357,9 @@ "ToolPunchThroughDistance": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "ZIndexBehavior": { "Enum": 0 }, @@ -53063,7 +59415,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "SurfaceLight": { "Name": "SurfaceLight", @@ -53114,6 +59476,9 @@ "Angle": { "Float32": 90.0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -53139,6 +59504,9 @@ "Face": { "Enum": 5 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Range": { "Float32": 16.0 }, @@ -53150,6 +59518,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -53173,6 +59544,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -53189,6 +59563,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -53201,6 +59578,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true } @@ -53281,6 +59661,9 @@ "AccelerationTime": { "Float32": 0.0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -53293,6 +59676,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MoveSpeedFactor": { "Float32": 1.0 }, @@ -53313,6 +59699,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -53392,7 +59781,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TaskScheduler": { "Name": "TaskScheduler", @@ -53464,7 +59863,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Team": { "Name": "Team", @@ -53546,6 +59955,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -53558,6 +59970,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -53566,6 +59981,9 @@ }, "TeamColor": { "BrickColor": 1 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -53594,7 +60012,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TeamCreatePublishService": { "Name": "TeamCreatePublishService", @@ -53604,7 +60032,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TeamCreateService": { "Name": "TeamCreateService", @@ -53615,7 +60053,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Teams": { "Name": "Teams", @@ -53626,6 +60074,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -53635,11 +60086,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -53683,7 +60140,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TeleportOptions": { "Name": "TeleportOptions", @@ -53731,6 +60198,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -53740,6 +60210,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "ReservedServerAccessCode": { "String": "" }, @@ -53754,6 +60227,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -53783,6 +60259,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -53792,11 +60271,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -53809,7 +60294,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TemporaryScriptService": { "Name": "TemporaryScriptService", @@ -53820,7 +60315,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Terrain": { "Name": "Terrain", @@ -54130,6 +60635,9 @@ "Anchored": { "Bool": true }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -54238,6 +60746,9 @@ "GrassLength": { "Float32": 0.7 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LeftParamA": { "Float32": -0.5 }, @@ -54462,6 +60973,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Velocity": { "Vector3": [ 0.0, @@ -54604,6 +61118,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -54619,6 +61136,9 @@ "Face": { "Enum": 1 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaterialPattern": { "Enum": 0 }, @@ -54642,6 +61162,9 @@ }, "TexturePack": { "Content": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -54752,6 +61275,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -54775,6 +61301,9 @@ 0 ] }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SmoothGrid": { "BinaryString": "AQU=" }, @@ -54783,6 +61312,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -54966,6 +61498,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -54984,6 +61519,9 @@ "ExecuteWithStudioRun": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "IsSleepAllowed": { "Bool": true }, @@ -55001,6 +61539,9 @@ }, "Timeout": { "Float64": 10.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -55592,6 +62133,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -55647,6 +62191,9 @@ "cachedFaceId": "rbxasset://fonts/Arimo-Regular.ttf" } }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Interactable": { "Bool": true }, @@ -55791,6 +62338,9 @@ "TextYAlignment": { "Enum": 1 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -55807,7 +62357,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TextButton": { "Name": "TextButton", @@ -56246,6 +62806,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -56301,6 +62864,9 @@ "cachedFaceId": "rbxasset://fonts/Arimo-Regular.ttf" } }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Interactable": { "Bool": true }, @@ -56435,6 +63001,9 @@ "TextYAlignment": { "Enum": 1 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -56449,6 +63018,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -56458,11 +63030,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -56525,6 +63103,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -56540,6 +63121,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "PrimaryAlias": { "String": "" }, @@ -56551,6 +63135,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -56562,7 +63149,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TextChatMessage": { "Name": "TextChatMessage", @@ -56689,7 +63286,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TextChatMessageProperties": { "Name": "TextChatMessageProperties", @@ -56737,6 +63344,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -56746,11 +63356,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -56850,6 +63466,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -56874,11 +63493,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -56890,7 +63515,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TextFilterTranslatedResult": { "Name": "TextFilterTranslatedResult", @@ -56933,7 +63568,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TextLabel": { "Name": "TextLabel", @@ -57372,6 +64017,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -57424,6 +64072,9 @@ "cachedFaceId": "rbxasset://fonts/Arimo-Regular.ttf" } }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Interactable": { "Bool": true }, @@ -57549,6 +64200,9 @@ "TextYAlignment": { "Enum": 1 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -57566,7 +64220,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TextSource": { "Name": "TextSource", @@ -57621,7 +64285,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Texture": { "Name": "Texture", @@ -57682,6 +64356,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -57701,6 +64378,9 @@ "Face": { "Enum": 5 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "OffsetStudsU": { "Float32": 0.0 }, @@ -57725,6 +64405,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "ZIndex": { "Int32": 1 } @@ -57738,7 +64421,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TextureGenerationService": { "Name": "TextureGenerationService", @@ -57749,7 +64442,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TextureGenerationUnwrappingRequest": { "Name": "TextureGenerationUnwrappingRequest", @@ -57759,7 +64462,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ThirdPartyUserService": { "Name": "ThirdPartyUserService", @@ -57770,7 +64483,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ThreadState": { "Name": "ThreadState", @@ -57849,7 +64572,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TimerService": { "Name": "TimerService", @@ -57860,6 +64593,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -57869,11 +64605,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -57886,7 +64628,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Tool": { "Name": "Tool", @@ -58037,6 +64789,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -58078,6 +64833,9 @@ ] } }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LevelOfDetail": { "Enum": 0 }, @@ -58141,6 +64899,9 @@ "ToolTip": { "String": "" }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "WorldPivotData": { "OptionalCFrame": { "position": [ @@ -58202,6 +64963,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -58217,6 +64981,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "RelativeTo": { "Enum": 0 }, @@ -58233,6 +65000,9 @@ 0.0 ] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -58381,6 +65151,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -58402,6 +65175,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LimitEnabled": { "Bool": false }, @@ -58429,6 +65205,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -58441,7 +65220,17 @@ ], "Superclass": "StatsItem", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TouchInputService": { "Name": "TouchInputService", @@ -58452,6 +65241,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -58461,11 +65253,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -58477,7 +65275,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TracerService": { "Name": "TracerService", @@ -58488,7 +65296,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TrackerLodController": { "Name": "TrackerLodController", @@ -58551,7 +65369,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TrackerStreamAnimation": { "Name": "TrackerStreamAnimation", @@ -58560,7 +65388,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Trail": { "Name": "Trail", @@ -58793,6 +65631,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -58833,6 +65674,9 @@ "FaceCamera": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Lifetime": { "Float32": 2.0 }, @@ -58879,6 +65723,9 @@ ] } }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "WidthScale": { "NumberSequence": { "keypoints": [ @@ -58922,7 +65769,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TremoloSoundEffect": { "Name": "TremoloSoundEffect", @@ -58970,6 +65827,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -58991,6 +65851,9 @@ "Frequency": { "Float32": 5.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Priority": { "Int32": 0 }, @@ -58999,6 +65862,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -59164,7 +66030,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TrussPart": { "Name": "TrussPart", @@ -59207,6 +66083,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -59309,6 +66188,9 @@ "FrontSurfaceInput": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LeftParamA": { "Float32": -0.5 }, @@ -59412,6 +66294,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Velocity": { "Vector3": [ 0.0, @@ -59433,7 +66318,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Tween": { "Name": "Tween", @@ -59458,6 +66353,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -59467,11 +66365,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -59500,7 +66404,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "TweenService": { "Name": "TweenService", @@ -59511,6 +66425,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -59520,11 +66437,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -59537,6 +66460,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -59546,11 +66472,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -59563,7 +66495,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "UIAspectRatioConstraint": { "Name": "UIAspectRatioConstraint", @@ -59611,6 +66553,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "AspectRatio": { "Float32": 1.0 }, @@ -59629,11 +66574,17 @@ "DominantAxis": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -59644,7 +66595,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "UIComponent": { "Name": "UIComponent", @@ -59653,7 +66614,17 @@ ], "Superclass": "UIBase", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "UIConstraint": { "Name": "UIConstraint", @@ -59662,7 +66633,17 @@ ], "Superclass": "UIComponent", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "UICorner": { "Name": "UICorner", @@ -59684,6 +66665,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -59699,11 +66683,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -59727,6 +66717,19 @@ } } }, + "BoundingBehavior": { + "Name": "BoundingBehavior", + "Scriptability": "ReadWrite", + "DataType": { + "Enum": "UIDragDetectorBoundingBehavior" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, "BoundingUI": { "Name": "BoundingUI", "Scriptability": "ReadWrite", @@ -59927,9 +66930,15 @@ "ActivatedCursorIcon": { "Content": "" }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, + "BoundingBehavior": { + "Enum": 0 + }, "Capabilities": { "SecurityCapabilities": 0 }, @@ -59972,6 +66981,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxDragAngle": { "Float32": 0.0 }, @@ -60010,6 +67022,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -60022,13 +67037,21 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "UIFlexItem": { "Name": "UIFlexItem", - "Tags": [ - "NotBrowsable" - ], + "Tags": [], "Superclass": "UIComponent", "Properties": { "FlexMode": { @@ -60085,6 +67108,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -60100,6 +67126,9 @@ "GrowRatio": { "Float32": 0.0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "ItemLineAlignment": { "Enum": 0 }, @@ -60111,6 +67140,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -60186,6 +67218,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -60220,6 +67255,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Offset": { "Vector2": [ 0.0, @@ -60250,6 +67288,9 @@ } ] } + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -60344,6 +67385,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -60383,6 +67427,9 @@ "FillDirectionMaxCells": { "Int32": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "HorizontalAlignment": { "Enum": 1 }, @@ -60398,6 +67445,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VerticalAlignment": { "Enum": 1 } @@ -60480,7 +67530,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "UILayout": { "Name": "UILayout", @@ -60489,7 +67549,17 @@ ], "Superclass": "UIComponent", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "UIListLayout": { "Name": "UIListLayout", @@ -60595,6 +67665,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -60607,6 +67680,9 @@ "FillDirection": { "Enum": 1 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "HorizontalAlignment": { "Enum": 1 }, @@ -60631,6 +67707,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VerticalAlignment": { "Enum": 1 }, @@ -60701,6 +67780,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -60710,6 +67792,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "PaddingBottom": { "UDim": [ 0.0, @@ -60739,6 +67824,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -60885,6 +67973,9 @@ "Animated": { "Bool": true }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -60909,6 +68000,9 @@ "GamepadInputEnabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "HorizontalAlignment": { "Enum": 1 }, @@ -60936,6 +68030,9 @@ "TweenTime": { "Float32": 1.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VerticalAlignment": { "Enum": 1 } @@ -60961,6 +68058,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -60970,6 +68070,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Scale": { "Float32": 1.0 }, @@ -60978,6 +68081,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -61014,6 +68120,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -61023,6 +68132,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxSize": { "Vector2": [ null, @@ -61040,6 +68152,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -61131,6 +68246,9 @@ "ApplyStrokeMode": { "Enum": 0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -61150,6 +68268,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LineJoinMode": { "Enum": 0 }, @@ -61164,6 +68285,9 @@ }, "Transparency": { "Float32": 0.0 + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -61226,6 +68350,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -61244,6 +68371,9 @@ "FillEmptySpaceRows": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "HorizontalAlignment": { "Enum": 1 }, @@ -61271,6 +68401,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "VerticalAlignment": { "Enum": 1 } @@ -61309,6 +68442,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -61318,6 +68454,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxTextSize": { "Int32": 100 }, @@ -61329,6 +68468,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -61341,6 +68483,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "AssetId": { "Content": "" }, @@ -61455,6 +68600,9 @@ "FrontSurfaceInput": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "InitialSize": { "Vector3": [ 1.0, @@ -61522,7 +68670,7 @@ "Float32": 0.0 }, "RenderFidelity": { - "Enum": 1 + "Enum": 0 }, "RightParamA": { "Float32": -0.5 @@ -61577,6 +68725,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UnscaledCofm": { "Vector3": [ null, @@ -61672,6 +68823,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -61687,6 +68841,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LimitsEnabled": { "Bool": false }, @@ -61705,6 +68862,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -61716,6 +68876,9 @@ "Superclass": "BaseRemoteEvent", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -61725,11 +68888,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -61759,6 +68928,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -61771,11 +68943,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -62752,7 +69930,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "UserInputService": { "Name": "UserInputService", @@ -62851,6 +70039,7 @@ "Value": "Bool" }, "Tags": [ + "Deprecated", "Hidden" ], "Kind": { @@ -63125,7 +70314,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "UserService": { "Name": "UserService", @@ -63135,7 +70334,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "UserSettings": { "Name": "UserSettings", @@ -63144,7 +70353,17 @@ ], "Superclass": "GenericSettings", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "UserStorageService": { "Name": "UserStorageService", @@ -63155,7 +70374,17 @@ ], "Superclass": "LocalStorageService", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "VRService": { "Name": "VRService", @@ -63191,6 +70420,19 @@ } } }, + "ControllerModels": { + "Name": "ControllerModels", + "Scriptability": "ReadWrite", + "DataType": { + "Enum": "VRControllerModelMode" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, "DidPointerHit": { "Name": "DidPointerHit", "Scriptability": "None", @@ -63253,6 +70495,19 @@ } } }, + "LaserPointer": { + "Name": "LaserPointer", + "Scriptability": "ReadWrite", + "DataType": { + "Enum": "VRLaserPointerMode" + }, + "Tags": [], + "Kind": { + "Canonical": { + "Serialization": "Serializes" + } + } + }, "PointerHitCFrame": { "Name": "PointerHitCFrame", "Scriptability": "None", @@ -63387,6 +70642,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -63399,17 +70657,29 @@ "Capabilities": { "SecurityCapabilities": 0 }, + "ControllerModels": { + "Enum": 1 + }, "DefinesCapabilities": { "Bool": false }, "FadeOutViewOnCollision": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "LaserPointer": { + "Enum": 1 + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -63421,7 +70691,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "ValueBase": { "Name": "ValueBase", @@ -63430,7 +70710,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Vector3Curve": { "Name": "Vector3Curve", @@ -63438,6 +70728,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -63447,11 +70740,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -63475,6 +70774,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -63484,12 +70786,18 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Value": { "Vector3": [ 0.0, @@ -63548,6 +70856,9 @@ "ApplyAtCenterOfMass": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -63570,6 +70881,9 @@ 0.0 ] }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "RelativeTo": { "Enum": 0 }, @@ -63579,6 +70893,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": false } @@ -63590,6 +70907,9 @@ "Superclass": "Controller", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -63599,11 +70919,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -63770,6 +71096,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -63878,6 +71207,9 @@ "HeadsUpDisplay": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LeftParamA": { "Float32": -0.5 }, @@ -64002,6 +71334,9 @@ "TurnSpeed": { "Float32": 1.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Velocity": { "Vector3": [ 0.0, @@ -64070,6 +71405,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -64140,6 +71478,9 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "MaxVelocity": { "Float32": 0.0 }, @@ -64148,6 +71489,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -64191,7 +71535,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "VideoCaptureService": { "Name": "VideoCaptureService", @@ -64235,6 +71589,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -64244,11 +71601,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -64315,7 +71678,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "VideoFrame": { "Name": "VideoFrame", @@ -64482,6 +71855,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -64526,6 +71902,9 @@ "Draggable": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Interactable": { "Bool": true }, @@ -64598,6 +71977,9 @@ "TimePosition": { "Float64": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Video": { "Content": "" }, @@ -64621,6 +72003,9 @@ "Superclass": "Instance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -64630,11 +72015,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -64789,6 +72180,9 @@ 0.0 ] }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -64862,6 +72256,9 @@ "Draggable": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "ImageColor3": { "Color3": [ 1.0, @@ -64949,6 +72346,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -64982,6 +72382,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -64991,11 +72394,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -65008,7 +72417,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "VisibilityCheckDispatcher": { "Name": "VisibilityCheckDispatcher", @@ -65018,7 +72437,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "Visit": { "Name": "Visit", @@ -65029,7 +72458,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "VisualizationMode": { "Name": "VisualizationMode", @@ -65077,6 +72516,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -65089,6 +72531,9 @@ "Enabled": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -65100,6 +72545,9 @@ }, "ToolTip": { "String": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -65136,6 +72584,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -65148,6 +72599,9 @@ "Enabled": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -65156,6 +72610,9 @@ }, "Title": { "String": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -65167,7 +72624,17 @@ ], "Superclass": "Instance", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "VoiceChatInternal": { "Name": "VoiceChatInternal", @@ -65198,6 +72665,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -65207,11 +72677,17 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -65341,6 +72817,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -65353,12 +72832,18 @@ "EnableDefaultVoice": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "UseAudioApi": { "Enum": 1 } @@ -65373,6 +72858,9 @@ "Anchored": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -65478,6 +72966,9 @@ "FrontSurfaceInput": { "Enum": 0 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LeftParamA": { "Float32": -0.5 }, @@ -65581,6 +73072,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Velocity": { "Vector3": [ 0.0, @@ -65596,6 +73090,9 @@ "Superclass": "JointInstance", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -65660,11 +73157,17 @@ "Enabled": { "Bool": true }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -65821,6 +73324,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -65856,6 +73362,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -65864,6 +73373,9 @@ }, "Tags": { "Tags": [] + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -65944,6 +73456,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -65953,6 +73468,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "SourceAssetId": { "Int64": -1 }, @@ -65964,6 +73482,9 @@ }, "TargetName": { "String": "Input" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -65993,6 +73514,9 @@ "AlwaysOnTop": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -66035,6 +73559,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "Scale": { "Vector3": [ 1.0, @@ -66058,6 +73585,9 @@ "Transparency": { "Float32": 0.0 }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "Visible": { "Bool": true }, @@ -66701,6 +74231,9 @@ "AllowThirdPartySales": { "Bool": false }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -66747,6 +74280,9 @@ "Gravity": { "Float32": 196.2 }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "IKControlConstraintSupport": { "Enum": 0 }, @@ -66855,6 +74391,9 @@ "TouchesUseCollisionGroups": { "Bool": false }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "WorldPivotData": { "OptionalCFrame": { "position": [ @@ -66919,7 +74458,17 @@ } } }, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "WorldModel": { "Name": "WorldModel", @@ -66927,6 +74476,9 @@ "Superclass": "WorldRoot", "Properties": {}, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -66936,6 +74488,9 @@ "DefinesCapabilities": { "Bool": false }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "LevelOfDetail": { "Enum": 0 }, @@ -66987,6 +74542,9 @@ "Tags": { "Tags": [] }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + }, "WorldPivotData": { "OptionalCFrame": { "position": [ @@ -67022,7 +74580,17 @@ ], "Superclass": "Model", "Properties": {}, - "DefaultProperties": {} + "DefaultProperties": { + "Archivable": { + "Bool": true + }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" + } + } }, "WrapDeformer": { "Name": "WrapDeformer", @@ -67075,6 +74643,9 @@ "Amount": { "Float32": 1.0 }, + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -67119,6 +74690,9 @@ "HSRAssetId": { "Content": "" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "ImportOrigin": { "CFrame": { "position": [ @@ -67156,6 +74730,9 @@ }, "TemporaryCageMeshId": { "Content": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -67334,6 +74911,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -67407,6 +74987,9 @@ "HSRAssetId": { "Content": "" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "ImportOrigin": { "CFrame": { "position": [ @@ -67482,6 +75065,9 @@ }, "TemporaryReferenceId": { "Content": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } }, @@ -67537,6 +75123,9 @@ } }, "DefaultProperties": { + "Archivable": { + "Bool": true + }, "Attributes": { "Attributes": {} }, @@ -67578,6 +75167,9 @@ "HSRAssetId": { "Content": "" }, + "HistoryId": { + "UniqueId": "00000000000000000000000000000000" + }, "ImportOrigin": { "CFrame": { "position": [ @@ -67615,6 +75207,9 @@ }, "TemporaryCageMeshId": { "Content": "" + }, + "UniqueId": { + "UniqueId": "00000000000000000000000000000000" } } } @@ -67712,7 +75307,8 @@ "FullscreenButtonClicked": 2, "PauseButtonClicked": 4, "PlayButtonClicked": 3, - "VolumeButtonClicked": 1 + "VolumeButtonClicked": 1, + "WhyThisAdClicked": 6 } }, "AdUIType": { @@ -67856,6 +75452,15 @@ "Enabled": 2 } }, + "AppLifecycleManagerState": { + "name": "AppLifecycleManagerState", + "items": { + "Active": 1, + "Detached": 0, + "Hidden": 3, + "Inactive": 2 + } + }, "AppShellActionType": { "name": "AppShellActionType", "items": { @@ -68128,10 +75733,11 @@ "items": { "Canceled": 3, "DownloadFailed": 2, + "JobNotFound": 6, "None": 0, "Offensive": 4, - "Timeout": 1, - "Unknown": 5 + "Timeout": 5, + "Unknown": 1 } }, "AvatarGenerationJobStatus": { @@ -68491,6 +76097,17 @@ "Enabled": 2 } }, + "CloseReason": { + "name": "CloseReason", + "items": { + "DeveloperShutdown": 2, + "DeveloperUpdate": 3, + "OutOfMemory": 5, + "RobloxMaintenance": 1, + "ServerEmpty": 4, + "Unknown": 0 + } + }, "CollaboratorStatus": { "name": "CollaboratorStatus", "items": { @@ -68910,6 +76527,14 @@ "DeviceCapture": 0 } }, + "DeviceLevel": { + "name": "DeviceLevel", + "items": { + "High": 2, + "Low": 0, + "Medium": 1 + } + }, "DeviceType": { "name": "DeviceType", "items": { @@ -69379,6 +77004,16 @@ "Resize": 0 } }, + "HapticEffectType": { + "name": "HapticEffectType", + "items": { + "GameplayCollision": 4, + "GameplayExplosion": 3, + "UIClick": 1, + "UIHover": 0, + "UINotification": 2 + } + }, "HighlightDepthMode": { "name": "HighlightDepthMode", "items": { @@ -70009,6 +77644,14 @@ "Enabled": 2 } }, + "LocationType": { + "name": "LocationType", + "items": { + "Camera": 1, + "Character": 0, + "ObjectPosition": 2 + } + }, "MarketplaceBulkPurchasePromptStatus": { "name": "MarketplaceBulkPurchasePromptStatus", "items": { @@ -71027,6 +78670,28 @@ "Y": 2 } }, + "SecurityCapability": { + "name": "SecurityCapability", + "items": { + "AccessOutsideWrite": 2, + "Animation": 15, + "AssetRequire": 3, + "Audio": 8, + "Avatar": 16, + "Basic": 7, + "CSG": 13, + "Chat": 14, + "CreateInstances": 6, + "DataStore": 9, + "LoadString": 4, + "Network": 10, + "Physics": 11, + "RunClientScript": 0, + "RunServerScript": 1, + "ScriptGlobals": 5, + "UI": 12 + } + }, "SelectionBehavior": { "name": "SelectionBehavior", "items": { @@ -71858,6 +79523,14 @@ "Completed": 1 } }, + "UIDragDetectorBoundingBehavior": { + "name": "UIDragDetectorBoundingBehavior", + "items": { + "Automatic": 0, + "EntireObject": 1, + "HitPoint": 2 + } + }, "UIDragDetectorDragRelativity": { "name": "UIDragDetectorDragRelativity", "items": { @@ -71986,6 +79659,21 @@ "Normal": 1 } }, + "VRControllerModelMode": { + "name": "VRControllerModelMode", + "items": { + "Disabled": 0, + "Transparent": 1 + } + }, + "VRLaserPointerMode": { + "name": "VRLaserPointerMode", + "items": { + "Disabled": 0, + "DualPointer": 2, + "Pointer": 1 + } + }, "VRSafetyBubbleMode": { "name": "VRSafetyBubbleMode", "items": {