-
Notifications
You must be signed in to change notification settings - Fork 0
Initialization
gdr edited this page Aug 8, 2024
·
3 revisions
This page will help you get started in using GEditor.
- GEditor creates
FrameGuiObject , that you can parent to ScreenGui. - Frame can be resized, repositioned and recolored freely.
- Unlike Frame, lines needs to be edited thru Editor Instance, specifically Editor.Fonts, Editor.Sizes, Editor.Colors.
Creating editor is easy, all you need is 4 lines of code:
local GEditor = require(*GEDITOR PATH*)
local Editor = GEditor:Get("EDITOR_NAME")
local Gui = *SCREENGUI PATH*
Editor.Frame.Parent = GuiFor more info, you should visit Editor Instance wiki page.