is there a way to have a sort of conditional command thing like 'if score is...' and if so, how?
In the Interaction Editor, I don't think it can be done. In scripting, use the game.score variable:
if (game.score == 27) {
//Do stuff
}
ive tried this but i get A LOT of error messages!
Then that's a problem with your code. Post it here and I'll see what I can do.