Skip to main content

Silk

A singleton class that is shared between scripts.

Types

Container

type Container = Folder

A Container is a Folder that contains a specific collection of objects as its children. Containers can be added to the framework using Silk.AppendContainers during the initializer phase.

Adding containers:
-- || initializer.server.lua ||

silk:AppendContainers{

	-- Supply a folder 'Assets' as a container with the name 'Asset'
	Asset = silk.ReplicatedStorage:WaitForChild('Assets'),
}

You can access a container by executing Silk.Get<Container>(object: string) -> Instance as a method of the framework. See below for more details.

Accessing objects inside containers:
-- A container named 'Asset'
local asset = silk:GetAsset('Model'):Clone()

Container methods:

Service

type Service = Instance

Roblox service as an Instance.

Getting a service:
-- Directly access any service from Silk
local replicatedStorage = silk.ReplicatedStorage
Limitation

You may recieve an error while trying to get some services. This is because the service may not exist in the current list of services. To fix this, open the ModuleScript services and manually type it in.

Functions

getScript

utility
Silk.getScript() → ModuleScript

This utility function returns a reference to the main SILK ModuleScript. You can use it to easily access the contents of the script. For instance, when adding in essential packages to the framework.

Adding essential packages:
-- || initializer.server.lua ||

silk:AppendPackages{

	-- Directly access the children of the ModuleScript
	silk.getScript():WaitForChild('essentials'),
}

new

utility
Silk.new(
objectstring | Instance,
parentInstance?
) → SilkObject

Built-in implementation of a method-chainable object instantiator. Call itself at the end of the chain to return Instance.

Creating a new part:
local part = silk.new('Part', workspace).Name('NewPart').Anchored(true)()

waitFor

This is a yielding function. When called, it will pause the Lua thread that called the function until a result is ready to be returned, without interrupting other scripts. Yieldsutility
Silk.waitFor(
objects{
...string
},
timeoutnumber?
) → Instance

A custom wrapper function for the Instance.WaitForChild method. Use this utility function to simplify your code and avoid redundant chains of consequtive WaitForChild calls.

Usage example:
-- Long, consequtive calls of .WaitForChild...
A:WaitForChild('B'):WaitForChild('C'):WaitForChild('D')

-- ...can be simplied to this
silk.waitFor{ A, 'B', 'C', 'D' }

FireAllClients

network
Silk:FireAllClients(
actionstring,
...any
) → ()

FireClient

network
Silk:FireClient(
clientPlayer,
actionstring,
...any
) → ()

FireServer

network
Silk:FireServer(
actionstring,
...any
) → ()

InvokeServer

network
Silk:InvokeServer(
actionstring,
...any
) → ...any

RegisterAction

network
Silk:RegisterAction(
actionstring,
callback(...any) → ...any
) → ()

Register an action to the server to quickly handle commuincation between server and client.

tip

Use this method in packages that require server and client communication for initialization.

UnregisterAction

network
Silk:UnregisterAction(actionstring) → ()

Remove an existing action from the server.

AppendClasses

initializer
Silk:AppendClasses(classdirectories{Folder}) → ()

Use this method to supply multiple class directories to the framework.

AppendContainers

initializer
Silk:AppendContainers(containerDirectories{[string]Folder}) → ()

Use this method to supply multiple container directories to the framework.

AppendPackages

initializer
Silk:AppendPackages(packageDirectories{Folder}) → ()

Use this method to supply multiple package directories to the framework.

Declare

Silk:Declare(
callback(
msgstring,
...any
) → ..any,
msgstring
) → ()

Used internally to indicate potential any errors and warnings to output.

GetClass

Silk:GetClass(classstring) → ModuleScript

Returns the ModuleScript instace associated with the class.

GetContainer

Silk:GetContainer(containerstring) → Folder

Returns the Folder instance associated with the container.

GetService

Silk:GetService(servicestring) → Instance

Gets a Roblox service as an Instance and caches it internally. This method is called internally whenever a service is attempted to be retrieved via silk.<Service>.

InitClass

Silk:InitClass(classstring) → ...any

This method is called internally whenever a class is referenced silk.Classes.<Class>. This method can be used directly to intialize any class if needed.

InitPackage

Silk:InitPackage(packagePackage) → ...any

This method is called internally whenever a package is referenced silk.Packages.<Package>.

tip

Use this method to intialize any singleton packages during the initializer phase.

IsServer

Silk:IsServer() → boolean

Returns true if the current execution is taking place on the server.

Wait

This is a yielding function. When called, it will pause the Lua thread that called the function until a result is ready to be returned, without interrupting other scripts. Yields
Silk:Wait() → Silk

Yields until the initialization phase is completed, i.e. Silk should be accessed this way for all scripts except the initializer scripts. See Silk.Weave for more information.

Weave

Silk:Weave() → ()

Marks the end of the initialization phase and resumes execution for all scripts yielding with Silk.Wait. Use this method inside of a single initializer script and call it at the end of the phase when all the initializations are complete. See below for more details.

Sample initializer script
-- || initializer.server.lua ||

local silk = require(...)

-- Perform initializations
silk:AppendPackages{ ... }
silk:AppendContainers{ ... }
silk:AppendClasses{ ... }
silk.Packages.Network:AppendCommunicators{ ... }

-- Call Silk.Weave to end the initialization phase
silk:Weave()
Show raw api
{
    "functions": [
        {
            "name": "getScript",
            "desc": "\t\nThis utility function returns a reference to the main SILK [ModuleScript]. You can use it to easily access the contents of the script. For instance, when adding in *essential* packages to the framework.\n\n##### Adding essential packages:\n```lua\n-- || initializer.server.lua ||\n\nsilk:AppendPackages{\n\n\t-- Directly access the children of the ModuleScript\n\tsilk.getScript():WaitForChild('essentials'),\n}\n```",
            "params": [],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "ModuleScript"
                }
            ],
            "function_type": "static",
            "tags": [
                "utility"
            ],
            "source": {
                "line": 106,
                "path": "src/init.lua"
            }
        },
        {
            "name": "new",
            "desc": "Built-in implementation of a method-chainable object instantiator. Call itself at the end of the chain to return [Instance].\n\n##### Creating a new part:\n```lua\nlocal part = silk.new('Part', workspace).Name('NewPart').Anchored(true)()\n```",
            "params": [
                {
                    "name": "object",
                    "desc": "",
                    "lua_type": "string | Instance"
                },
                {
                    "name": "parent",
                    "desc": "",
                    "lua_type": "Instance?"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "SilkObject"
                }
            ],
            "function_type": "static",
            "tags": [
                "utility"
            ],
            "source": {
                "line": 124,
                "path": "src/init.lua"
            }
        },
        {
            "name": "waitFor",
            "desc": "A custom wrapper function for the `Instance.WaitForChild` method. Use this utility function to simplify your code and avoid redundant chains of consequtive WaitForChild calls.\n\n##### Usage example:\n```lua\t\t\n-- Long, consequtive calls of .WaitForChild...\nA:WaitForChild('B'):WaitForChild('C'):WaitForChild('D')\n\n-- ...can be simplied to this\nsilk.waitFor{ A, 'B', 'C', 'D' }\n```",
            "params": [
                {
                    "name": "objects",
                    "desc": "",
                    "lua_type": "{Instance, ...string}"
                },
                {
                    "name": "timeout",
                    "desc": "",
                    "lua_type": "number?"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "Instance"
                }
            ],
            "function_type": "static",
            "tags": [
                "utility"
            ],
            "yields": true,
            "source": {
                "line": 166,
                "path": "src/init.lua"
            }
        },
        {
            "name": "FireAllClients",
            "desc": "",
            "params": [
                {
                    "name": "action",
                    "desc": "",
                    "lua_type": "string"
                },
                {
                    "name": "...",
                    "desc": "",
                    "lua_type": "any"
                }
            ],
            "returns": [],
            "function_type": "method",
            "tags": [
                "network"
            ],
            "source": {
                "line": 183,
                "path": "src/init.lua"
            }
        },
        {
            "name": "FireClient",
            "desc": "",
            "params": [
                {
                    "name": "client",
                    "desc": "",
                    "lua_type": "Player"
                },
                {
                    "name": "action",
                    "desc": "",
                    "lua_type": "string"
                },
                {
                    "name": "...",
                    "desc": "",
                    "lua_type": "any"
                }
            ],
            "returns": [],
            "function_type": "method",
            "tags": [
                "network"
            ],
            "source": {
                "line": 194,
                "path": "src/init.lua"
            }
        },
        {
            "name": "FireServer",
            "desc": "",
            "params": [
                {
                    "name": "action",
                    "desc": "",
                    "lua_type": "string"
                },
                {
                    "name": "...",
                    "desc": "",
                    "lua_type": "any"
                }
            ],
            "returns": [],
            "function_type": "method",
            "tags": [
                "network"
            ],
            "source": {
                "line": 204,
                "path": "src/init.lua"
            }
        },
        {
            "name": "InvokeServer",
            "desc": "",
            "params": [
                {
                    "name": "action",
                    "desc": "",
                    "lua_type": "string"
                },
                {
                    "name": "...",
                    "desc": "",
                    "lua_type": "any"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "...any"
                }
            ],
            "function_type": "method",
            "tags": [
                "network"
            ],
            "source": {
                "line": 215,
                "path": "src/init.lua"
            }
        },
        {
            "name": "RegisterAction",
            "desc": "Register an action to the server to quickly handle commuincation between server and client.\n\n:::tip\nUse this method in packages that require server and client communication for initialization.\n:::",
            "params": [
                {
                    "name": "action",
                    "desc": "",
                    "lua_type": "string"
                },
                {
                    "name": "callback",
                    "desc": "",
                    "lua_type": "(...any) -> ...any"
                }
            ],
            "returns": [],
            "function_type": "method",
            "tags": [
                "network"
            ],
            "source": {
                "line": 231,
                "path": "src/init.lua"
            }
        },
        {
            "name": "UnregisterAction",
            "desc": "Remove an existing action from the server.",
            "params": [
                {
                    "name": "action",
                    "desc": "",
                    "lua_type": "string"
                }
            ],
            "returns": [],
            "function_type": "method",
            "tags": [
                "network"
            ],
            "source": {
                "line": 241,
                "path": "src/init.lua"
            }
        },
        {
            "name": "AppendClasses",
            "desc": "Use this method to supply multiple class directories to the framework.",
            "params": [
                {
                    "name": "classdirectories",
                    "desc": "",
                    "lua_type": "{Folder}"
                }
            ],
            "returns": [],
            "function_type": "method",
            "tags": [
                "initializer"
            ],
            "source": {
                "line": 251,
                "path": "src/init.lua"
            }
        },
        {
            "name": "AppendContainers",
            "desc": "Use this method to supply multiple container directories to the framework.",
            "params": [
                {
                    "name": "containerDirectories",
                    "desc": "",
                    "lua_type": "{[string]: Folder}"
                }
            ],
            "returns": [],
            "function_type": "method",
            "tags": [
                "initializer"
            ],
            "source": {
                "line": 280,
                "path": "src/init.lua"
            }
        },
        {
            "name": "AppendPackages",
            "desc": "Use this method to supply multiple package directories to the framework.",
            "params": [
                {
                    "name": "packageDirectories",
                    "desc": "",
                    "lua_type": "{Folder}"
                }
            ],
            "returns": [],
            "function_type": "method",
            "tags": [
                "initializer"
            ],
            "source": {
                "line": 299,
                "path": "src/init.lua"
            }
        },
        {
            "name": "Declare",
            "desc": "Used internally to indicate potential any errors and warnings to output.",
            "params": [
                {
                    "name": "callback",
                    "desc": "",
                    "lua_type": "(msg: string, ...any) -> ..any"
                },
                {
                    "name": "msg",
                    "desc": "",
                    "lua_type": "string"
                }
            ],
            "returns": [],
            "function_type": "method",
            "source": {
                "line": 326,
                "path": "src/init.lua"
            }
        },
        {
            "name": "GetClass",
            "desc": "Returns the [ModuleScript] instace associated with the class.",
            "params": [
                {
                    "name": "class",
                    "desc": "",
                    "lua_type": "string"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "ModuleScript"
                }
            ],
            "function_type": "method",
            "source": {
                "line": 336,
                "path": "src/init.lua"
            }
        },
        {
            "name": "GetContainer",
            "desc": "Returns the [Folder] instance associated with the container.",
            "params": [
                {
                    "name": "container",
                    "desc": "",
                    "lua_type": "string"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "Folder"
                }
            ],
            "function_type": "method",
            "source": {
                "line": 346,
                "path": "src/init.lua"
            }
        },
        {
            "name": "GetService",
            "desc": "Gets a Roblox service as an [Instance] and caches it internally. This method is called internally whenever a service is attempted to be retrieved via `silk.<Service>`.",
            "params": [
                {
                    "name": "service",
                    "desc": "",
                    "lua_type": "string"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "Instance"
                }
            ],
            "function_type": "method",
            "source": {
                "line": 356,
                "path": "src/init.lua"
            }
        },
        {
            "name": "InitClass",
            "desc": "This method is called internally whenever a class is referenced `silk.Classes.<Class>`. This method can be used directly to intialize any class if needed.",
            "params": [
                {
                    "name": "class",
                    "desc": "",
                    "lua_type": "string"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "...any"
                }
            ],
            "function_type": "method",
            "source": {
                "line": 369,
                "path": "src/init.lua"
            }
        },
        {
            "name": "InitPackage",
            "desc": "This method is called internally whenever a package is referenced `silk.Packages.<Package>`.\n\n:::tip\nUse this method to intialize any singleton packages during the initializer phase.\n:::",
            "params": [
                {
                    "name": "package",
                    "desc": "",
                    "lua_type": "Package"
                }
            ],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "...any"
                }
            ],
            "function_type": "method",
            "source": {
                "line": 396,
                "path": "src/init.lua"
            }
        },
        {
            "name": "IsServer",
            "desc": "Returns `true` if the current execution is taking place on the server.",
            "params": [],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "boolean"
                }
            ],
            "function_type": "method",
            "source": {
                "line": 437,
                "path": "src/init.lua"
            }
        },
        {
            "name": "Wait",
            "desc": "Yields until the initialization phase is completed, i.e. [Silk] should be accessed this way for all scripts except the initializer scripts. See [Silk.Weave] for more information.",
            "params": [],
            "returns": [
                {
                    "desc": "",
                    "lua_type": "Silk"
                }
            ],
            "function_type": "method",
            "yields": true,
            "source": {
                "line": 447,
                "path": "src/init.lua"
            }
        },
        {
            "name": "Weave",
            "desc": "Marks the end of the initialization phase and resumes execution for all scripts yielding with [Silk.Wait]. Use this method inside of a single initializer script and call it at the end of the phase when all the initializations are complete. See below for more details.\n\n##### Sample initializer script\n```lua\n-- || initializer.server.lua ||\n\nlocal silk = require(...)\n\n-- Perform initializations\nsilk:AppendPackages{ ... }\nsilk:AppendContainers{ ... }\nsilk:AppendClasses{ ... }\nsilk.Packages.Network:AppendCommunicators{ ... }\n\n-- Call Silk.Weave to end the initialization phase\nsilk:Weave()\n```",
            "params": [],
            "returns": [],
            "function_type": "method",
            "source": {
                "line": 478,
                "path": "src/init.lua"
            }
        }
    ],
    "properties": [],
    "types": [
        {
            "name": "Container",
            "desc": "A `Container` is a [Folder] that contains a specific collection of objects as its children. Containers can be added to the framework using [Silk.AppendContainers] during the initializer phase.\n\n##### Adding containers:\n```lua\n-- || initializer.server.lua ||\n\nsilk:AppendContainers{\n\n\t-- Supply a folder 'Assets' as a container with the name 'Asset'\n\tAsset = silk.ReplicatedStorage:WaitForChild('Assets'),\n}\n```\n\nYou can access a container by executing `Silk.Get<Container>(object: string) -> Instance` as a method of the framework. See below for more details.\n\n##### Accessing objects inside containers:\n```lua\n-- A container named 'Asset'\nlocal asset = silk:GetAsset('Model'):Clone()\n```\n\nContainer methods:\n- [Silk.AppendContainers]\n- [Silk.GetContainer]",
            "lua_type": "Folder",
            "source": {
                "line": 528,
                "path": "src/init.lua"
            }
        },
        {
            "name": "Service",
            "desc": "Roblox service as an [Instance].\n\n##### Getting a service:\n```lua\n-- Directly access any service from Silk\nlocal replicatedStorage = silk.ReplicatedStorage\n```\n\n:::caution Limitation\nYou may recieve an error while trying to get some services. This is because the service may not exist in the current list of services. To fix this, open the [ModuleScript] `services` and manually type it in.\n:::",
            "lua_type": "Instance",
            "source": {
                "line": 545,
                "path": "src/init.lua"
            }
        }
    ],
    "name": "Silk",
    "desc": "A singleton class that is shared between scripts.",
    "source": {
        "line": 498,
        "path": "src/init.lua"
    }
}