RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"im changing the text but nothing prints"
-- The print statements in the script are only executed when the associated events are triggered. -- If you're changing the text in the TextBoxes but nothing is printing, it's possible that the FocusLost events are not being triggered. -- This could be because the TextBox is not losing focus (e.g., you're not clicking outside of the TextBox after changing the text), -- or because the 'enterPressed' parameter is not true (e.g., you're not pressing Enter after changing the text). -- If you want to print something every time the text in the TextBoxes changes, regardless of whether they lose focus or not, -- you could use the TextBox's TextChanged event instead: gui.FlightInfo.FlightCode.TextBox1.TextChanged:Connect(function() print("TextBox1 text was changed to: " .. gui.TextBox1.Text) end) gui.FlightInfo.Aircraft.TextBox2.TextChanged:Connect(function() print("TextBox2 text was changed to: " .. gui.TextBox2.Text) end) gui.TextBox3.TextChanged:Connect(function() print("TextBox3 text was changed to: " .. gui.TextBox3.Text) end) gui.TextBox4.TextChanged:Connect(function() print("TextBox4 text was changed to: " .. gui.TextBox4.Text) end)