so I'm trying to make an answer game and i decided to use
TextBox = game.StarterGui.ScreenGui.TextBox and I did TextBox.Text.Changed:Connect(function() if TextBox.Text == 'Noob' then print('got it rigt') but it keeps on erring any one know why? end
Check if the text was changed on it then check if the text is "Noob"
local TextBox = script.Parent.TextBox TextBox.Changed:Connect(function(Property) -- Whenever Any property is changed on TextBox if Property == "Text" then -- Checks if the property was the Text if TextBox.Text == "Noob" then -- Checks if the text is "Noob" print("Got It Right") -- Prints end end end)