Owl.Util.Component.new(config: ComponentConfig): ComponentClass

Server & Client

Creates a structural schema pattern layout monitoring designated game assets based on explicit string tag constraints.

Parameters

config*Config dictionary tracking specific target configuration flags: 'Tag', architecture 'Type' ('Server' | 'Client' | 'Shared') and optional Ancestor workspace limits.

Returns

ComponentClassA top-level structural component tracking map orchestrator.

Related Types

local ExplodingBarrel = Owl.Util.Component.new({
    Tag = "ExplodingBarrel",
    Type = "Server",
    Ancestors = { workspace }
})
 
function ExplodingBarrel:Construct()
    print("Instance wrapping established on object:", self.Instance:GetFullName())
end