There's not enough model or issue info here, but I'll take a stab at it.
Are you getting a striped screen at boot? If so, your discrete graphics card is shot, so this is what I did for my MBP-17:
Note: I don't know your level of skill, so I'll make this as basic as possible
1. On startup, press and hold Command S to boot into the command line
2. Follow the following commands (the --text below are comments, don't type them in):
a. cd /Applications --takes you to the Applications directory
b. sudo vi start.sh --opens text editor and creates a file named start.sh
--You'll get prompted for a password, so enter your account admin password
c. i --This allows typing/pasting into the file
3. Copy and paste the below script into the start.sh file (right-click to paste when in the vi editor):
!bin/bash
nvram fa4ce28d-b62f-4c99-9cc3-6815686e30f9:gpu-power-prefs=%01%00%00%00
reboot
4. To save and exit the editor, hit the ESC key then type: :wq --(colon, write, quit)
5. Back at the command prompt, just type start.sh and hit Return
Your computer will now reboot normally, using the integrated card.
6. When booting again, repeat step 1, then type:
/Applications/start.sh
7. Hit Return and it'll boot.
Hope this helps!