Local script not going all the way through?
This local script is works perfectly fine until it is supposed to read what the textBox text is, it just does not do it and there is no error message.
001 | local Player = game.Players.LocalPlayer |
002 | local Mouse = Player:GetMouse() |
006 | local display = script.Parent |
008 | local BOOT_MSG_TEXT = "System booted, enter 'help' or run a command" |
012 | local tempInputBin = "empty" |
016 | function rButtonCheck(button) |
017 | if button = = "r" then |
018 | print ( "player pressed return" ) |
039 | function readInput(linePath) |
040 | while running = = true do |
041 | if readInput = = ( ">" ) then |
044 | local text = linePath |
045 | tempInputBin = text.Text |
055 | function checkInput(inputOne,inputTwo,inputThree,funcOne,funcTwo,funcThree) |
057 | if tempInputBin = = inputOne then |
058 | print ( "function one selected" ) |
060 | elseif tempInputBin = = inputTwo then |
061 | print ( "function two selected" ) |
063 | elseif tempInputBin = = inputThree then |
064 | print ( "function three selected" ) |
066 | else print ( "invalid code entered" ) |
070 | function cmdWrite (text, name) |
072 | linePos = lineNumber * 20 |
073 | line = Instance.new( "TextLabel" , display) |
074 | line.BackgroundTransparency = 1 |
075 | line.TextColor 3 = Color 3. new( 255 , 255 , 255 ) |
076 | line.FontSize = ( "Size18" ) |
078 | line.Size = UDim 2. new( 0 , 300 , 0 , 25 ) |
081 | line.Position = UDim 2. new( 0 , 0 , 0 ,linePos) |
082 | line.TextXAlignment = ( "Left" ) |
083 | lineNumber = lineNumber + 1 |
087 | function createNewInputLine(lineName) |
089 | linePos = lineNumber * 20 |
090 | line = Instance.new( "TextBox" , display) |
091 | line.BackgroundTransparency = 1 |
092 | line.TextColor 3 = Color 3. new( 255 , 255 , 255 ) |
093 | line.FontSize = ( "Size18" ) |
094 | line.Font = ( "Arial" ) |
095 | line.Size = UDim 2. new( 0 , 300 , 0 , 25 ) |
096 | line.Name = (lineName) |
098 | line.Position = UDim 2. new( 0 , 0 , 0 ,linePos) |
099 | line.TextXAlignment = ( "Left" ) |
100 | lineNumber = lineNumber + 1 |
107 | bootMessage = Instance.new( "TextLabel" , display) |
108 | bootMessage.BackgroundTransparency = 1 |
109 | bootMessage.TextColor 3 = Color 3. new( 255 , 255 , 255 ) |
110 | bootMessage.FontSize = ( "Size18" ) |
111 | bootMessage.Font = ( "Arial" ) |
112 | bootMessage.Size = UDim 2. new( 0 , 300 , 0 , 25 ) |
113 | bootMessage.Name = ( "bootMessage" ) |
114 | bootMessage.Text = (BOOT_MSG_TEXT) |
115 | bootMessage.TextXAlignment = ( "Left" ) |
116 | lineNumber = lineNumber + 1 |
119 | createNewInputLine( "signInHelp" ) |
120 | Mouse.KeyDown:connect(rButtonCheck,button) |
121 | if returnPressed = = true then |
122 | readInput(script.Parent.signInHelp) |
123 | checkInput( "help" , "sign in" , nil ,help(),signIn()) |