Module: uikit

This module allows you to create User Interface components (buttons, labels, texts, etc.).
-------------------
-------------------

uikit

Functions

createText ( str string, config table optional )

Creates a text component.

-- nodes can have an image if provided image Data (PNG or JPEG)
local url = "https://cu.bzh/img/pen.png"
HTTP:Get(url, function(response)
		local f = uikit:createFrame(Color.Black, {image = response.Data})
		f:setParent(uikit.rootFrame)
		f.LocalPosition = {50, 50, 0}
end)
-------------------
-------------------
📃 Source