Text wont draw in setup()

	fill(255);
	textSize(30);
	text("This is the loading screen!", 20, 20);



	//music
	file = new SoundFile(this,"PrincessZelda.mp3");
	file.play();

	//Volume meter(0-1)
	file.amp(.5);

with the fill(255), the text appears to still not show while everything else does)