Im trying to create a login page but I can access the text from a text box, which means no one can login
lol what i'm going to amuse you just want to create a log in
-- created by Ha_rriz, for deadwalker601. scriptinghelpers.org local UserNameBox = *EnterGuiName*.UserNameBox local PassWordBox = *EnterGuiName*.PassWordBox local Button = *EnterGuiName*.Button Button.MouseButton1Click:Connect(function() if UserNameBox.Text == *enterusernamehere* then if PassWordBox.Text == *enterpasswordhere* then -- now, this is where i'm going to leave you off to do what you need to do when the password is correct. enter some code here. else PassWordBox.Text = "*Enter your wrong message here!*" wait(2) PassWordBox.Text = "" end else UserNameBox.Text = "*Enter your wrong message here!*" wait(2) UserNameBox.Text = "" end end)