I am guessing that you're issue is because you aren't giving your servo an initial value, so the pin is likely floating. Try adding
helloServo.write(360);
to the end of your void setup(), this should make the servo start at the 360 position.