TextLabel = game.Players.PlayerGui.ScreenGui.TextLabel game.Players.PlayerGui.ScreenGui.TextLabel.Text = "Finished loading! Welcome to " ..game.Name wait(10) for countdown = 10, 0, -1 do TextLabel.Text = "Remaining time: " ..countdown end --I don't know how to make this look like actual code.. sorry
just do:
game.StarterGui.ScreenGui.TextLabel.Text = "Finished loading! Welcome to "..game.Name wait(10) for countdown = 10,0,-1 do TextLabel.Text = "Remaining time:"..countdown end
TextLabel = game.Players.PlayerGui.ScreenGui.TextLabel
You didnt define the player
it should be
TextLabel = game.Players.[PlayerName].PlayerGui.ScreenGui.TextLabel
Also click the Lua icon when writing to create a code block thingy like the one i just did