Could someone direct me to where I can find out how to make a box that allows you to submit a password through gui and then if it's correct something happens.
put this in a text box:
script.Parent.FocusLost:connect(function() -- when the textbox is clicked away from, or pressed enter if script.Parent.Text == "passwordHere" then -- checks to see if the password is correct print'ta-da' -- put code here end end)
this has not been tested, and may have some basic syntax errors.