https://github.com/MaidenlessUsr/LuaTextBox
LuaTextBox is a module providing a text input field with Lua syntax highlighting and autocompletion
https://github.com/MaidenlessUsr/LuaTextBox
luau roblox
Last synced: 16 days ago
JSON representation
LuaTextBox is a module providing a text input field with Lua syntax highlighting and autocompletion
- Host: GitHub
- URL: https://github.com/MaidenlessUsr/LuaTextBox
- Owner: MaidenlessUsr
- Created: 2022-12-08T10:58:20.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-08T16:32:35.000Z (almost 3 years ago)
- Last Synced: 2025-08-30T20:38:41.617Z (about 1 month ago)
- Topics: luau, roblox
- Language: Lua
- Homepage:
- Size: 13.7 KB
- Stars: 9
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LuaTextBox
LuaTextBox is a module providing a text input field with Lua syntax highlighting and autocompletion## VERY WIP - DO NOT USE IN PRODUCTION
The current state of the module is very uncomplete, there are tons of bugs and features that need to be considered carefully.
Of course, you can still help contribute!## Using the module
**Documentation coming soon on my website!**Simple usage example:
```lua
local LuaTextBox = require(path.to.luatextbox)
local LuaEditorTextBox = LuaTextBox.new()
LuaEditorTextBox:SetParent(some.gui.object)
```## Credits
- [Highlighter](https://github.com/boatbomber/highlighter) - Syntax highlighting
- [Codify](https://github.com/csqrl/codify-plugin) - Turning guis into code## Acknowledgements
- boatbomber
- csqrl