Hey everyone, this is a tutorial on how to add sounds/songs
and also .gif images to your Crossfire Injector's

We'll start with sounds/songs.

 
First step - You want to create a new "Button"
on your form design (Unless you already have
one created that you wish to use to start your
sound/song)

Second step - Change your MP3 sound/song to
a .wav format using this website (no space)
media. io

Third step - Go back to Visual Basic and access
"Properties", then "Resources".

Fourth step - Click the arrow next to "Add Resource"
and then click "Add existing file".

Fifth step - Choose your .wav song you converted to.

Sixth step - Make your way back to your 'Form Design'
and double Left+Click the "Button" you have designated
to start the song.

Seventh step - Copy+Paste this code under "Private Sub"
Code:
    PlayBackgroundSoundResource()
        My.Computer.Audio.Play(My.Resources.Your .wav file name, _
            AudioPlayMode.Background)
Eighth step - After the last "End Sub" Paste the same code under it again
Code:
PlayBackgroundSoundResource()
        My.Computer.Audio.Play(My.Resources.Your .wav file name, _
            AudioPlayMode.Background)
Ninth step - You're all done! Congratulations


 
First step - Create a "PictureBox" from your toolbox and add it
somewhere to your 'Form Design'

Second step - Resize your "PictureBox" to what size you want it
(If you wish to have it behind your buttons etc, right click it and
press 'Send to Back')

Third step - In the bottom right-hand corner of your Visual
Basic Form Design, in properties. Find 'Image' then click
the ... button next to it.

Fourth step - Pick your gif!

Fifth step - And that's the way the cookie crumbles!


An example of both of these options.
Injector; 'Miley Twerk Injector'.
https://www.mpgh.net/forum/290-crossf...-injector.html

Hope this helps.