diff --git a/scripts/walkthroughtutorial.md b/scripts/walkthroughtutorial.md
index 66efe5e74..0f65dbadf 100644
--- a/scripts/walkthroughtutorial.md
+++ b/scripts/walkthroughtutorial.md
@@ -46,8 +46,16 @@ To connect to your new Langflow VM, follow these steps:
1. Navigate to the [VM instances](https://console.cloud.google.com/compute/instances) page
2. Click on the external IP for your VM
-3. Add port 8080 (assuming your VM external IP is 192.168.0.1):
-http://192.168.0.1:8080
+
or
+3. Run the following command to store the VM's IP in a variable called `LANGFLOW-IP`:
+```bash
+export LANGFLOW-IP=$(gcloud compute instances list --filter="NAME=langflow-dev" --format="value(EXTERNAL_IP)")
+
+echo http://$LANGFLOW-IP:8080
+```
+
+
+
4. You will be greeted by the Langflow Dev environment
Congratulations! You have successfully deployed Langflow on Google Cloud Platform.