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 6 years ago

so I'm trying to make an answer game and i decided to use

1TextBox = game.StarterGui.ScreenGui.TextBox
2 
3and I did
4 
5TextBox.Text.Changed:Connect(function()
6if TextBox.Text == 'Noob' then print('got it rigt') but it keeps on erring any one know why?
7 
8end

1 answer

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

Check if the text was changed on it then check if the text is "Noob"

1local TextBox = script.Parent.TextBox
2 
3TextBox.Changed:Connect(function(Property) -- Whenever Any property is changed on TextBox
4    if Property == "Text" then -- Checks if the property was the Text
5        if TextBox.Text == "Noob" then -- Checks if the text is "Noob"
6            print("Got It Right") -- Prints
7        end
8    end
9end)
Ad

Answer this question