A simple ROBLOX code editor for serversides and other general purposes.
Import the RBXM of the latest version of Wackify and locate the Frame you want to turn into a code editor.
Create a LocalScript and place it near both the Wackify module and the Frame you want to convert into a code editor.
Insert the following code into the LocalScript:
local wackify = require(Path.To.The.Wackify.Module)
wackify:New({ Target = Path.To.The.Target.Frame, Theme = "Dark", StartingCode = 'print("Hello world!")' })Themes include:
- Dark
- Light
- Dracula
- Terminal
- Catppuccin Latte
- Catppuccin Frappe
- Catppuccin Macchiato
- Catppuccin Mocha -# More coming soon...
Or if you would like, you can import your own custom theme by taking a already existing theme form the "Themes" module and changing it up. Then you can import the table into the "wackify:New()" Theme variable, something like this:
local wackify = require(Path.To.The.Wackify.Module)
wackify:New({ Target = Path.To.The.Target.Frame, Theme = {
LinesBackground = {...
}, StartingCode = 'print("Hello world!")' })You're done!
Give a ⭐️ if this project helped you or join our Discord!