Get
Takes an Instance value followed by any number of strings that represent
child Instance names and returns the final child. If the last argument is
a table, it will return a tuple of the children specified by that table.
--- Single instance
local keystone = Get(workspace, "Arch", "Keystone")
--- Multiple children
local keystone, door = Get(workspace, "Arch", { "Keystone", "Door" })
Functions
Get
Get.Get(...: string | {string}--
The names of the children to navigate through.
) → ...Instance--
A tuple of all the requested children at the final location.