local Wave = game.StarterGui.ScreenGui.WaveNumber Wave.Text = "Wave 1"
Nothing happens. Any ideas?
Hey,
You need to change it in the Player's PlayerGui, not in the StarterGui. Changes to the StarterGui only apply to the PlayerGui after reloading the character.
So the new script is:
local Wave = game.Players.LocalPlayer.PlayerGui.ScreenGui.WaveNumber Wave.Text = "Wave 1"