Introduction
the framework for everything roblox
made with
by @ratplier
API and syntax inspired by flamework and prvd-m-wrong
artwork is a roblox framework, meant to be flexible and fully expandable
it takes heavy inspiration from flamework which is made for roblox-ts
Features
- includes a API for modding to give the user more control
- is fully typed
- includes a component extension to attach objects to instances
- a custom networking library (which still needs work)
and many more to come…
- more modding API methods
- extra extensions
- a better extensibility system
Example Usage
local artwork = require("@packages/artwork")
local provider = {}
function provider.onStart(self)
print("provider was registered!")
end
return artwork.register(provider)