Gofven
|
  |
| Joined: 18 Jun 2015 |
| Total Posts: 767 |
|
|
| 18 Aug 2016 10:42 AM |
Like make "Sound" less and less noisy the longer it takes and after 1 second its gone
|
|
|
| Report Abuse |
|
|
Gofven
|
  |
| Joined: 18 Jun 2015 |
| Total Posts: 767 |
|
| |
|
|
| 18 Aug 2016 10:51 AM |
| Try checking the sound properties |
|
|
| Report Abuse |
|
|
|
| 18 Aug 2016 10:52 AM |
| If it has something to do with volume then use that as part of the script and make it like 4 different numbers before it goes out |
|
|
| Report Abuse |
|
|
|
| 18 Aug 2016 10:54 AM |
Use a for loop to slowly decrease the volume of the sound, sadly there isn't a method to 'ease out' sound volume.
If starter volume is 0.5 then you can do something like this:
for i = 0.5, 0, -0.1 do sound.Volume = i wait() end |
|
|
| Report Abuse |
|
|