Hello there guys!
I need help with my textbox script.
So I just need the textbox to remember last text added
local lastpassword = “”
TextBox:GetPropertyChangedSignal(“Text”):Connect(function()
lastpassword = lastpassword … TextBox.Text
TextBox.Text = string.rep("*", #TextBox.Text)
print(lastpassword)
end)