1 | if lastChoice.Choice 3 then |
2 |
3 | end |
Its say "Choice3 is not a valid member of Folder" in the outpout and the rest of the script don't execute. Its just to check if choice3 exist. I also try with
1 | if lastChoice.Choice 3 ~ = nil then |
2 |
3 | end |
and with
1 | if lastChoice.Choice 3 = = nil then |
2 |
3 | end |
But its never work, whats the problem?
"elseif" Will maybe do the trick?
1 | if lastChoice:FindFirstChild( "Choice3" ) then |
2 | local cc = lastChoice:FindFirstChild( "Choice3" ) |
3 | if cc.Parent = = lastChoice then |
4 |
5 | end |
6 | end |
That the solution i find