of     1   

InsuranceFrod
#141055113Monday, July 21, 2014 2:09 PM GMT

So I am trying to write a script that will change one TextBox invisible and another TextBox Visible. Any ideas? Lets say the First one is TextBox1 and the second is TexBox2.
InsuranceFrod
#141055175Monday, July 21, 2014 2:10 PM GMT

The location of these textboxes are game.StarterGui.ScreenGui
DEVMAC101
#141055201Monday, July 21, 2014 2:11 PM GMT

TextBox1.Visible = false TextBox2.Visible = true
DEVMAC101
#141055284Monday, July 21, 2014 2:12 PM GMT

Or are, do you want TexBox2 to be visible as soon as texbox1 isn't?
InsuranceFrod
#141055336Monday, July 21, 2014 2:13 PM GMT

Is it possible if you touch a brick and it happened?
InsuranceFrod
#141055555Monday, July 21, 2014 2:16 PM GMT

Yes I do, along with it happening when you walk over a part.
FindBlox
#141056285Monday, July 21, 2014 2:27 PM GMT

@frodriguez1234 You mean if you touch a brick the Gui becomes invisible? Or if you click a brick the gui becomes visible?
MarioKartAddict
#141056697Monday, July 21, 2014 2:34 PM GMT

repeat wait() until game.Players.LocalPlayer.Character script.Parent.Touched:connect(function(hit) game.Players.LocalPlayer.PlayerGui.TextBox1.Visible = false game.Players.LocalPlayer.PlayerGui.TextBox2.Visible = true end)

    of     1