Rekotora3349
(Re_koFromSlovakia)
December 23, 2022, 4:57pm
#1
My audio is duplicated and I can′t find the source of the duplicate audio, playing in my game, that is controlled by the original audio…
If I mark Playing
as false in the original audio, the duplicate audio will not play.
If I stop the oiginal audio in game via scripts, the duplicate audio will continue to play.
This happened to me 2 times since now.
1 Like
If you can, can you provide me some scripts please containing the audio.
Rekotora3349
(Re_koFromSlovakia)
December 23, 2022, 5:21pm
#3
local button = script.Parent
local function leftClick()
script.Parent.Parent.MainSound.SoundId = "11161640960"
script.Parent.Parent.MainSound.Volume -= 0.05
wait(0.05)
script.Parent.Parent.MainSound.Volume -= 0.05
wait(0.05)
script.Parent.Parent.MainSound.Volume -= 0.05
wait(0.05)
script.Parent.Parent.MainSound.Volume -= 0.05
wait(0.05)
script.Parent.Parent.MainSound.Volume -= 0.05
wait(0.05)
script.Parent.Parent.MainSound.Volume -= 0.05
wait(0.05)
script.Parent.Parent.MainSound.Volume -= 0.05
wait(0.05)
script.Parent.Parent.MainSound.Volume -= 0.05
wait(0.05)
script.Parent.Parent.MainSound.Volume -= 0.05
wait(0.05)
script.Parent.Parent.MainSound:Stop()
end
button.MouseButton1Click:Connect(leftClick)
Okay. If you have enough time, you can send me the script in Roblox Studio.
MP3Face
(MP3Face)
December 23, 2022, 5:35pm
#5
try iterating to find sound instances, something like
for _, v in game.StarterGui:GetDescendants() do
if v:IsA("Sound") then
print(v:GetFullName(), v.SoundId)
end
end
(run in your command bar) and see if you can find where it is in the starter UI. You can also change it to something like workspace:GetDescendants()
if you think the audio is in workspace, etc
Rekotora3349
(Re_koFromSlovakia)
December 23, 2022, 5:52pm
#6
I didn′t found anything out of ordinary.
Sound
is a click sound whenever the mouse is hovering on top of those buttons you seen in the video.
SoundA
is a click sound when you click the buttons you seen in the video.
MainSound
is the audio I am using as the song you heard in the video.
SystemSound
isn′t a part of this gui… It′s in Mobile Phone and it′s changing depending on what song do you want to play etc.
Rekotora3349
(Re_koFromSlovakia)
December 24, 2022, 6:10pm
#7
Incase someone will ask about Team Create…
I got, but people can only Play…
Incase someone will ask about the audio, that is used.
//devforum-uploads.s3.dualstack.us-east-2.amazonaws.com/uploads/original/4X/5/e/f/5efb03ac40682d9576e81d795297c988c996042b.mp3
It got some echo, but it’s very quiet if you want to compare with the audio you seen in video…
1 Like
Sorry for late reply, but I did a workaround.
script.Parent.Volume = 0
And I am able to control the duplicated audio.
system
(system)
Closed
August 4, 2023, 8:52am
#9
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.