This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
t = require(6586622402) | |
t.load("NoobDancer100") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local m = require(7272926808) | |
m.admin(owner) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require(7429198520).launch() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = "Hi!", --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 | |
}) |