ok so this is the script of the code gui but i want it to show stars,instead of iit when they type "1" it shows "1" in the box i want it to show "*" when they type "1" or any number
01 | local sp = script.Parent |
02 | local door = sp.Parent.Parent.Door |
03 | local pad = sp.keypad:GetChildren() |
04 | local input = sp.input |
05 | local db = true |
06 | local MN = 8 --So it doesn't go off screen |
07 |
08 | -- |
09 | local code = 4311 |
10 | local doorClosingWait = 2 --How long the door stays open |
11 | -- |
12 |
13 | function handleOther(obj) |
14 | local t = input.Text |
15 | if obj = = "backspace" then |
Capture your Text as it changes.
1 | local curr = '' |
2 | textBox.Changed:connect( function (p) |
3 | if p = = 'Text' then |
4 | curr = curr..textBox.Text:sub(- 1 ,- 1 ); |
5 | curr = curr:sub( 1 ,#textBox.Text); |
6 | textBox.Text = textBox.Text:gsub( '.' , '*' ); |
7 | end |
8 | end ) |
It could be done more efficiently, but this should work. Appropriately handles deleting text, and should sub out every character for asterisks. Just remember to check against the curr variable for the text when you need to do comparisons and things.