I'm learning script, kind of having trouble with this script. I believe I'm doing wrong...
01 | function codeentry() |
02 | if script.Parent.Parent.Code.Text = = "1337" then |
03 | script.Parent.Parent.Code.Text = "Correct" |
04 | wait( 2 ) |
05 | script.Parent.Parent.Parent.Parent.Frame:TweenPosition(UDim 2. new(- 0.5 , 0 , 0.25 , 0 ), "Out" , "Elastic" , 2.5 ) |
06 | else |
07 | if script.Parent.Parent.Code.Text = = not "1337" then |
08 | script.Parent.Parent.Code.Text = "Incorrect" |
09 | script.Parent.Parent.Parent.Parent.Frame:TweenPosition(UDim 2. new(- 0.5 , 0 , 0.25 , 0 ), "Out" , "Elastic" , 2.5 ) |
10 | end |
11 | end |
12 | end |
13 |
14 |
15 |
16 | script.Parent.MouseButton 1 Up:connect(codeentry) |
I'm trying to make the text to say incorrect when you enter code that is not "1337"?
The term "== not 1337" doesn't seem like it would work. I suggest "~= 1337". Also, you're using else, then if, so the ~= 1337 doesn't even apply to this. Here is a fixed version (a least, I think it's fixed.):
01 | function codeentry() |
02 | if script.Parent.Parent.Code.Text = = "1337" then |
03 | script.Parent.Parent.Code.Text = "Correct" |
04 | wait( 2 ) |
05 | script.Parent.Parent.Parent.Parent.Frame:TweenPosition(UDim 2. new(- 0.5 , 0 , 0.25 , 0 ), "Out" , "Elastic" , 2.5 ) |
06 | else --This says if it's anything besides 1337, then do the following |
07 | script.Parent.Parent.Code.Text = "Incorrect" |
08 | script.Parent.Parent.Parent.Parent.Frame:TweenPosition(UDim 2. new(- 0.5 , 0 , 0.25 , 0 ), "Out" , "Elastic" , 2.5 ) |
09 | end |
10 | end |
11 | end |
12 |
13 | script.Parent.MouseButton 1 Up:connect(codeentry) |