Update script.lua

This commit is contained in:
ben
2026-08-07 12:17:26 +02:00
parent a0cab645d6
commit 814388e90b
+7 -7
View File
@@ -1,8 +1,8 @@
local screen = GetPartFromPort(1, "Screen") --Gets the screen
screen:ClearElements() --clears the screen of any previous elements
screen:CreateElement("TextLabel", { -- creates an element with the given name and properties
Text = "Hello World!", --Sets the text to Hi!
TextScaled = true, -- Automatically scales the text to fit the screen
Size = UDim2.fromScale(1, 1), --Makes the size cover the whole screen
Position = UDim2.fromScale(0, 0) --sets the position
local screen = GetPartFromPort(1, "Screen")
screen:ClearElements()
screen:CreateElement("TextLabel", {
Text = "Hello World!",
TextScaled = true,
Size = UDim2.fromScale(1, 1),
Position = UDim2.fromScale(0, 0)
})