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

How do I check if a TextBox's Text changes ?

Asked by 5 years ago

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

1 answer

Log in to vote
1
Answered by
LuaDLL 253 Moderation Voter
5 years ago

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)
Ad

Answer this question