Here is the script:
gui = game.StarterGui.ScreenGui.TextLabel while true do gui.Text = "Welcome to Brick Builders!" wait(3) gui.Text = "To get your building tools, go to the office." wait(3)
Can you help?
Firstly, you need to end the while loop.
while true do gui.Text = "Welcome to Brick Builders!" wait(3) gui.Text = "To get your building tools, go to the office." wait(3) end
Also, the GUI won't be in StarterGui, it will be in the player's PlayerGui. In order to locate this, you need to make sure this is a local script, and use gui = game.Players.LocalPlayer.PlayerGui.ScreenGui.TextLabel
Hope I helped.