Light Cyan GUI Library

A GUI Library for Roblox.
This was originally called Wonder but I thought it was boring so i named it LightCyan,

LightCyan is a GUI Library that is designed to look like a CLI (Command Line Interface).
LightCyan is Fully Open-Sourced.

It is also a Solo-Project (TEMPORARILY) designed by Yhen.

Since we are Open-Sourced, You can view LightCyan's source here.
To support us, You can join our discord!

Loader

local LCyan = loadstring(game:HttpGet("https://stupidneosite.neocities.org/lightcyan_src.txt"))()

Window

local Window = LCyan:Window({ Name = "LCyan Test Gui" KeySystemEnabled = false, -- Optional! Keys = {"Hi!"} })

Elements

-- Log something! local log = Window.Log("Hi!") -- Also u can set text of this log: log.SetText("haha") -- Logging and Making an input is Also Rich-Text! -- Heres how to make an input: local pass = Window.Input("Password: ") Window.Log(pass)

Other functions

-- You can clear everything on the CLI By: Window.Clear() -- You can also DESTROYYY The CLI By: Window.Destroy()