Text isnt changing

It has been a long time since i done this, my code isn’t working, im trying to change the text on a gui. Im pretty sure it has something to do with me changing starter gui and not player gui.

local Text = script.Parent.Dialogue.Text

while wait(4) do
Text = “New”
end

1 Like

Try

local Text = script.Parent.Dialogue

while wait(4) do
Text.Text = “New”
end

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.