I have a GUI and everything, except when I have my GUI text box in play or build, anytime you click the text dissapers and you can type anything you want. Can you fix this?
Change it to a TextLabel? Or do you want the text to stay there when you click on it and still be able to type?
local txt = script.Parent.Text
script.Parent.Changed:connect(function(prop)
if prop == "Text" then
script.Parent.Text = txt
end
end)
:D