if lastChoice.Choice3 then 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
if lastChoice.Choice3 ~= nil then end
and with
if lastChoice.Choice3 == nil then end
But its never work, whats the problem?
"elseif" Will maybe do the trick?
if lastChoice:FindFirstChild("Choice3") then local cc = lastChoice:FindFirstChild("Choice3") if cc.Parent == lastChoice then end end
That the solution i find