Activating unwanted sound

Hello people!!! First of all, I want to apologize if I posted in the wrong section (this is my first post on the forum).

I am a beginner and I have created a simple project of Roller Ball as you can see in the video that I will attach in this post. However, I have a problem - notice the sound which plays when I collect the coin. There is another sound which plays as soon as I step on the platform. The problem is that when the elevator sound plays, it also plays sound for collecting the coin, which is not what I want. Obviously, there is no coin on the platform. Watch the video and you will see what I mean.
VIDEO:

There are screenshots of blueprints:

I apologize in advance if there is similar problem on the HUB, but I could not find it. If so, please attach the link if you can.

Thank you!!!

[=madlion;553556]
Hello people!!! First of all, I want to apologize if I posted in the wrong section (this is my first post on the forum).

I am a beginner and I have created a simple project of Roller Ball as you can see in the video that I will attach in this post. However, I have a problem - notice the sound which plays when I collect the coin. There is another sound which plays as soon as I step on the platform. The problem is that when the elevator sound plays, it also plays sound for collecting the coin, which is not what I want. Obviously, there is no coin on the platform. Watch the video and you will see what I mean.
VIDEO:

There are screenshots of blueprints:

I apologize in advance if there is similar problem on the HUB, but I could not find it. If so, please attach the link if you can.

Thank you!!!
[/]

Hi madlion,

The reason you are hearing the coin sound over the elevator is because you are calling the coin sound on overlap in your player pawn. Instead, try calling it on overlap within the coin blueprint. That way, it only plays when a coin is rolled over, not when the player overlaps something. In general, sounds associated with specific items/blueprint should be called within that item/blueprint, it is significantly easier to manage in the long term.

Can you please show screenshots of your Blueprints for the Coins and the Elevator, especially the part that Triggers the elevator.

You must have another PlaySoundAtLocation node somewhere that is causing this issue for you.

Here are the blueprints:

elevator (level blueprint) : Screenshot by Lightshot

coin blueprint: Screenshot by Lightshot

player (ball) blueprint: Screenshot by Lightshot ; Screenshot by Lightshot ; Screenshot by Lightshot

EDIT

This is how I solved it : Screenshot by Lightshot

I added event “OnComponnentBeginOverLap” and it works, though I do not see it executing in the blueprint screen