Basic Console Effect Module V.1.1.0

New module for line thingies :slight_smile:

What is this module?

This module is used to make console like, for example: You transition to a new island.

How do you use it?

Simple, just requires a bit of more coding! We make this script in workspace and put the module in ServerScriptService, we use this code in our script in workspace for testing and examples to make you understand how the module works:

local module = require(game.ServerScriptService.ModuleScript)
wait(6)
module.configureUI(Enum.HorizontalAlignment.Left, UDim.new(0,0), true, false)
wait(2)
module.createNewLine(Color3.new(1, 1, 1), Enum.Font.SourceSans, 30, "testing")
wait(1)
module.createNewLine(Color3.new(1, 0, 0.0156863), Enum.Font.SourceSans, 30, "testing 2")
wait(1)
module.createNewLine(Color3.new(1, 0.933333, 0), Enum.Font.SourceSans, 30, "testing 3")
wait(1)
module.configureUI(Enum.HorizontalAlignment.Left, UDim.new(0,0), true, true)

If you don’t have the module, the module is free and no credits is required (only if you want to), here’s the link: Module Link

Is it open source?

Yes! This is open source, no credit is needed. Modify! And incase if you accidentally broke your code, you can get the model again.

Here’s how the module looks like:

Please tell me in the comments if you found any bugs so i can update the module!

1 Like

UPDATE: i have forgot to add the screengui sorry ):