Figured it out and answered the question myself
I have this code and I am pretty sure this is supposed to make a sound but it won't. The program shows no errors when it runs but won't produce sound.
I need help figuring out why it is not working.
import java.net.*;
import java.applet.*;
if(true)
{
File file= new File("GodzillaWAV.wav");
AudioClip roar= Applet.newAudioClip(file);
roar.loop();
}
Thanks to those that could help.