I have a tablet and you are required to input a password I was wondering if anyone knew how to make it show stars insted of the password that the user inputs like roblox when logging in?
Please Post script examples also as I find explinations very comfusing due to my autism
You’re not allowed to make a system where people have username and password , simply because someone could put their real password and you could get theirs from the datastore, and cause you get into troubles.
username system is fine, but dont completely hide their real username.
No, on roblox we have a UI that looks like an ipad or a tablet. We’re trying to make a sign in system with a password (3 digit) but we want when people are typing in the password it covers up the typed in characters with a *.
textBox:GetPropertyChangedSignal:Connect(function()
local text = textBox.Text
local endText = ''
for i=1,string.len(text) do
endText= endText..'Q'
end
textBox.Text = endText
end)
Did not work due to we need to see what is inputted for this to work and for it to compare the password to the correct password internally.
Plus it needs to be stored so we can compare them and let them in or say the password is incorrect
textBox:GetPropertyChangedSignal:Connect(function()
local text = textBox.Text
local endText = ''
for i=1,string.len(text)-1 do
endText= endText..'Q'
end
local str = string.split(text)[string.len(text)]
endText = endText..str
textBox.Text = endText
end)