GUI textbox appears even after it has been deleted, I don't know why

If this is the wrong place to write this please tell me. I am new to the devforum.

Hello. I am apart of a development team, one of the developers added a screengui with a textbox. They deleted it and then went out of studio, and when they came back the GUI was still there. We just want this textbox deleted from the game.

I have tried looking on the dev forum I found only one other post about this, but when they found the solution they just said thanks and closed the post. Here is the post: Here

The Textbox is right under the chat bar. I have tried using the script from the post that I found to look for the textbox, and the script didn’t find a single one.

Here is the script I used to try to find it:

for index, item in pairs(game:GetDescendants()) do
    local ok, error = pcall(function()
        if item:IsA("TextBox") then print(item:GetFullName()) end
    end)
end

Any help would be appreciated.

i had the same problem, i have no idea how it got fixed though, since the person who deleted it fixed it

If you are not using a local script, use one, because server scripts that edit the starter GUI only replicates after the guis are reset.

I did what you said, but there is no sign of the textbox. I also checked in PlayerGui, and I couldn’t find it there either.

It was one of the other devs that deleted it.