On August 12 at 12 PM BST, we'll be gone. Thank you all for being a part of Project Polygon. You can download your user data in your account settings.
i dont know Lua much
There are loops like: while true do, game["Run Service"]:Connect(function() etc
You can make the text label's text constantly change
Take this as a reference
local phrases = {
hello,
hi
}
while true do
wait(1)
textLabel.Text = phrases[math.random(0,#phrases)]
end