search/
Start typing to search packages!
package_2
packager
By @csqrl
Roblox
MirroredPackager
Packages up an Instance or tree of Instances into a single table. Supports linking of Instance-based properties to their corresponding Instance (as long as the Instance is within the tree being packaged).
Usage
local Packager = require(script.Parent.Packager)
-- Create a new Packager from the latest Roblox API dump
local packager = Packager.fetchFromServer()
local tree = packager:CreatePackage(workspace.MyModel)
--[[
{
Refs = {
[MyModel<Model>] = "AABBCC",
},
Tree = {
Name = "MyModel",
ClassName = "Model",
Ref = "AABBCC",
Properties = {
PrimaryPart = {
Type = "Ref",
Value = "BBCCDD",
},
},
Children = {
{
Name = "Part",
ClassName = "Part",
Ref = "BBCCDD",
...,
},
},
Attributes = {
OwnerId = {
Type = "number",
Value = 1233456789,
},
},
Tags = { "Tag1", "Tag2" },
},
}
]]
Package Details
Install command (Click to copy)
Version
0.1.3
License
MIT
Safe for commercial use
License identified from the packaged LICENSE file; the manifest declared none.
Automated license review — not legal advice.
