Hello, i have a problem with the script from the unity wiki. Highscore script to be more specific. I keep getting the error “BCE0005: Unknown identifier: ‘WWW’.” Not while i play in the editor, but when i try to build it. I really need some help here. It works without any problem when i play the game within the editor.
function getScores() {
var hs_get = WWW(highScoreUrl);
yield hs_get;
if(hs_get.error) {
print(" Error: " + hs_get.error);
} else {
displayText = true;
score = hs_get.text;
print(score);
}
}