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

Local script not going all the way through?

Asked by 10 years ago

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.

001local Player = game.Players.LocalPlayer -- for the key down events
002local Mouse = Player:GetMouse()
003 
004 
005 
006local display = script.Parent
007 
008local BOOT_MSG_TEXT = "System booted, enter 'help' or run a command"
009 
010local lineNumber = 1
011 
012local tempInputBin = "empty" -- to hold the input from the player temporarley (not for coding)
013 
014returnPressed = false
015 
View all 124 lines...

Answer this question