Duplicating with else if
-
@Murtaza i had an IF with two else if's on it, and when I duplicated the IF the first else if attached it self to the duplicated IF. I could move it back, but whenever I touched the duplicated IF it would attach to it again. So I deleted the duplicated IF and took the else if's off it, and duplicated it again and it was fine. But then I put two else if's on the duplicated IF too but only the duplicated IF would run, but the else if's wouldn't even when they were true(if I made them IF's instead of else if's they did though). So I deleted them and used a different IF and else if's and now it works fine.