Ok I've come out with a new update with some graphical improvements and Ingame improvements including some fonts. Here is the update:
'''Python
coding: utf-8
import sound
import speech
import console
rate=.1
lang='en-US'
console.set_font('Futura-CondensedExtraBold')
print('say shoot')
console.set_font('Cousine-Bold')
d = raw_input('Enter a number 1-3')
if d == '1':
print(' ö')
print(' -|-')
print(' | |')
gun = '''
•
|^|
| |
| |)___
\_____|'''
op = raw_input(' ')
if op == 'shoot':
print(gun)
sound.play_effect('Laser_6')
speech.say('Fireing Sir',lang,rate)
elif d == '2':
console.set_font('Cousine-Bold')
print(' ö ')
print('-|-')
print('| |')
gun = '''
•
|^|
| |
| |)___
\_____|'''
op = raw_input(' ')
if op == 'shoot':
print(gun)
sound.play_effect('Laser_6')
speech.say('Fireing Sir',lang,rate)
elif d == '3':
rate=.1
lang='en-US'
console.set_font('Copperplate')
guy = '''
ö
-|-
| |'''
console.set_font('Cousine-Bold')
gun = '''
•
|^|
| |
| |)___
\_____|'''
print(guy)
op = raw_input(' ')
if op == 'shoot':
print(gun)
sound.play_effect('Laser_6')
speech.say('Fireing Sir',lang,rate)
'''