You don't say which shell you're using, so assuming bash, you just do
#!/bin/bash
/path/to/other/script arg1 arg2
rc=$?
The variable rc now contains the return code from your other script. Depending on what you're trying to achieve, you might try and do more stuff, but your question is so vague, that's the best starting point.