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

TextBox is not being read?

Asked by 10 years ago

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.

01local tempInputBin = "empty" -- to hold the input from the player temporarily
02returnPressed = false
03 
04function readInput(linePath)
05    while running == true do
06    if readInput == (">")then
07        wait(1)
08    else
09    local text = linePath
10    tempInputBin = text.Text
11    print(tempInputBin)
12    running = false
13    end
14    end
15end
View all 34 lines...

Answer this question