Here is the script:
1 | gui = game.StarterGui.ScreenGui.TextLabel |
2 |
3 | while true do |
4 | gui.Text = "Welcome to Brick Builders!" |
5 | wait( 3 ) |
6 | gui.Text = "To get your building tools, go to the office." |
7 | wait( 3 ) |
Can you help?
Firstly, you need to end the while loop.
1 | while true do |
2 | gui.Text = "Welcome to Brick Builders!" |
3 | wait( 3 ) |
4 | gui.Text = "To get your building tools, go to the office." |
5 | wait( 3 ) |
6 | 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.