i want to make a part, when the player is inside of it, it gets echoey. i want to use this for parking garages and tunnels. i have tried mutliple ways of doing it, none really worked. the last one i tried was with soundregions, that didn't work and now i'm giving up trying, and asking it on here.
You can add sound effects into your sound you just need to make a script that detect when the player "is inside of it" as you said. I'm not sure but you can probably check if the player is in a certain area like :
if player.Position.X > 1 and player.Position.X < 10 do local Echo = instance.new("EchoSoundEffect") Echo.Parent = sound if player.Position.X < 1 or player.Position.X > 10 do Echo:destroy()