How would I make player microphone louder?

Hello, I’m making a stage system, but I have no idea how to make a player’s microphone louder when they’re on stage. Any ideas?

1 Like

Every player should have a AudioDeviceInput parented under their Player instance in the Players service. You can change the Volume property to increase their input volume which should accomplish what you’re trying to do.

2 Likes

Alright, thanks! I’m just working on a stage system, so I didn’t really know how to do this. Is there any way to apply some kind of echo effect to the microphone so it actually sounds like a stage mic? Or maybe make the user’s voice come through the speakers?

You can add an echo effect using an AudioEcho.

If you wanted to make a functioning microphone and speakers, you could place a AudioListener within your physical microphone model and put AudioEmitters in the speakers and connect the audio streams using Wires.

To learn more about the Audio API and other features you can leverage, this forum post provides a good overview.

1 Like

Alright, thank you so much for help !

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.