1) try to use correct grammer and correct spelling. Also avoid slang/etc (like "wuz".) Remember that a lot of people on these forums don't speak English as their primary language, so it's asking a lot for them to just READ your posts. (Being 11 is not excuse; think of yourself as an International Ambassador of American 11-y olds!)
2) Get rid of the lcd.print() stuff if/while you don't have an LCD connected. I can't speak for the Arduino LCD library, but SOME code will wait for a device to respond, and if there is no device, it hangs. (This would actually be unusual for an LCD library, but it's still not good practice.) (Although you do in fact turn the buzzer on first thing, before you try writing to the LCD. (Why? Shouldn't it be off to start with?))
3) Better yet, replace lcd.print with Serial.print so you can see what is happening in the Arduino IDE Serial monitor window. console messages are one of the most primitive debugging mechanisms, but they're still useful. Then report what it says...
4) I agree with Mem. You need a pull-down resistor, or you need to reconfigure the switch and code to use the internal pullup capability.