Hello world!
Go into your Main LocalScriptinsert the following code:
local Enoria = require(game.ReplicatedStorage.Enoria.Enoria) -- importing Enoria core model
local e = Enoria.new() -- creating the Enoria core object
e:RunApp({
Name = "MyApp",
Home = e.TextLabel("Hello world")
})Here are the explanations to what we are doing:
We begin by importing what modules we need, in this example we just need the
Enoriamodel.Then, we initialize the model.
We run the app with different paramters (GUI name and home widget).
We're only inserting a
TextLabelwith the text "Hello world!".
Run the game just to see if everything seems to work:

Then, we want to center it in a white frame. And maybe change the font size!
When you run the game, you should see a white Frame with a TextLabel that is displaying "Hello World!" !

Last updated
Was this helpful?