Putting the word "Urgent" in your post title isn't going to get an answer any faster. Most of us consider it a bit irritating. Everyone wants an answer as quickly as possible.
You can use the mkdir command to create directories in a bash script. Here is an example.
Code:
#!/bin/bash
mkdir newdir
That script will create a new directory named newdir in the current directory.