# Help with deleting script in the FMOD - Integration tutorial (Karting microgame lesson)

**URL:** https://qa.fmod.com/t/help-with-deleting-script-in-the-fmod-integration-tutorial-karting-microgame-lesson/18251
**Category:** Unity
**Tags:** unity
**Created:** [January 21, 2022, 6:07am UTC](https://qa.fmod.com/t/help-with-deleting-script-in-the-fmod-integration-tutorial-karting-microgame-lesson/18251 "2022-01-21T06:07:36Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![fractanimal](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/fractanimal/32/3897_2.png) [@fractanimal](https://qa.fmod.com/u/fractanimal)
#### Post date: [January 21, 2022, 6:07am UTC](https://qa.fmod.com/t/help-with-deleting-script-in-the-fmod-integration-tutorial-karting-microgame-lesson/18251/1 "2022-01-21T06:07:37Z")

</div>

Hi there,

I’m up to 3.2.9 - Delete all the lines that contain `m_audioSource` from FeedbackFlashHUD.cs.

I have attached a screenshot, pointing out 1. and 2. questions.

1. Here is a line I have deleted, which contained m\_audioSource, and there is a yellow line on the left. Is that signifying an error? Have I deleted that line properly?

2. Here, there is only one line ( m\_audioSource.PlayOneShot(warningAudioClip)😉 containing m\_audioSource. Is it ONLY that one line I delete, or do I delete the lines above and below?

If i change it from:

if(!warningSoundPlayed && vignetteCanvasGroup.alpha \>= 0.5f){  
m\_audioSource.PlayOneShot(warningAudioClip);  
warningSoundPlayed = true;

to:

if(!warningSoundPlayed && vignetteCanvasGroup.alpha \>= 0.5f){  
warningSoundPlayed = true;

is that correct? In the tutorial it only says “Delete the LINES with m\_audioSource in them”

 ![fmod](https://canada1.discourse-cdn.com/flex036/uploads/fmod/original/2X/9/92ae28895871ef26175eee863acda8d619120758.png)

---

<div class="post-metadata">

### Author: ![richard\_simms](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/richard_simms/32/261_2.png) [@richard\_simms](https://qa.fmod.com/u/richard_simms)
#### Post date: [January 28, 2022, 5:03am UTC](https://qa.fmod.com/t/help-with-deleting-script-in-the-fmod-integration-tutorial-karting-microgame-lesson/18251/2 "2022-01-28T05:03:07Z")

</div>

That’s correct - only delete the line that contains `m_audioSource`. In your screenshot this would be line 61.
