gmbox = script.Parent.Frame.TextBox gm = game.Workspace.GMstat.Intermission while gm.Name == "Intermission" do gm.Text = "Intermission" wait() end
I have no idea why this isn't working, but I really need help with it. The text is just stuck as TextBox for some reason. And yes, the gm name is Intermission so I don't know why it isn't changing.
gmbox = script.Parent.Frame.TextBox gm = game.Workspace.GMstat.Intermission while gm.Name == "Intermission" do gmbox.Text = "Intermission" -- you didn't change the text of gmbox, you changed the Text of gm... If you checked output, you would've seen it... wait() end