TextBox is not being read?
When the user types in a sentence/command I setup a way for it to be read by the script, but it does not work, I don't get any errors. I have a function that changes returnPressed.
01 | local tempInputBin = "empty" |
04 | function readInput(linePath) |
05 | while running = = true do |
06 | if readInput = = ( ">" ) then |
10 | tempInputBin = text.Text |
17 | function checkInput(inputOne,inputTwo,inputThree,funcOne,funcTwo,funcThree) |
19 | if tempInputBin = = inputOne then |
20 | print ( "function one selected" ) |
22 | elseif tempInputBin = = inputTwo then |
23 | print ( "function two selected" ) |
25 | elseif tempInputBin = = inputThree then |
26 | print ( "function three selected" ) |
28 | else print ( "invalid code entered" ) |
32 | if returnPressed = = true then |
33 | readInput(script.Parent.signInHelp) |
34 | checkInput( "help" , "sign in" , "debug" ,help(),signIn()) |