You need to work through some more tutorials, your syntax is all over the place and your indentation will be a huge hassle later when you’re trying to fix things.
Move Shoot (as it is a function, it should, but does not have to, be capitalized) outside of Update. Functions inside functions aren’t a thing.
function Update() {
/* code */
}
function Shoot() {
/* code */
}