Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Make it so iit shows Stars iin the box instead of the code?

Asked by
22To 70
9 years ago

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

01local sp = script.Parent
02local door = sp.Parent.Parent.Door
03local pad = sp.keypad:GetChildren()
04local input = sp.input
05local db = true
06local MN = 8 --So it doesn't go off screen
07 
08--
09local code = 4311
10local doorClosingWait = 2 --How long the door stays open
11--
12 
13function handleOther(obj)
14    local t = input.Text
15    if obj == "backspace" then
View all 60 lines...
1
Instead of checking `input.Text`, you should make a new variable, for example, codeSoFar = "". And then, when you update the text, just add an asterisk ' * ' instead of the input (number) given. LetThereBeCode 360 — 9y

1 answer

Log in to vote
1
Answered by 9 years ago

Capture your Text as it changes.

1local curr = ''
2textBox.Changed:connect(function(p)
3if p == 'Text' then
4curr = curr..textBox.Text:sub(-1,-1);
5curr = curr:sub(1,#textBox.Text);
6textBox.Text = textBox.Text:gsub('.','*');
7end
8end)

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.

0
where would this go in the script? 22To 70 — 9y
0
Wherever. Just make sure you sort out the undeclared variables and read from curr instead of textBox.Text User#6546 35 — 9y
Ad

Answer this question