Documentation Formatting
Title <string>Title = "Kuzu Hub"Tree <...table: FruitName, FruitColor> -- Accepts multiple Fruit definitions, each as a table with a Name and Color.Tree = {
{
FruitName = "Apple"
FruitColor = Color3.fromRGB(255,0,0)
},
{
FruitName = "Orange"
FruitColor = Color3.fromRGB(255,165,0)
}
}Last updated