Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Sound doesn't stop when pressing a GUI button?

Asked by 4 years ago
Edited 4 years ago

I know this might sound silly, since it's such a simple script. But I was trying to create "Toggle Radio" like After the Flash, and I thought this code would work, but it doesn't stop the sound or show any errors in the Developer Console. Here's my code:

1local Sound1 = script.Parent.TimeAndTimeAgain -- References the sound
2 
3script.Parent.MouseButton1Down:Connect(function() -- Detects when clicked, if so commences these events
4    if Sound1.Playing == false then -- If the sound isn't playing, it plays the sound
5        Sound1:Play()
6    else
7        Sound1:Stop() -- If the sound is playing, it stops the sound
8    end
9end)

Thanks!

0
Try if Sound1.IsPlaying == false then WizyTheNinja 834 — 4y
0
Doesn't work CoolBlueJay000 48 — 4y
0
either your asset ID is invalid or your sound isn't called 'TimeAndTimeAgain' because there's no problems with the code, an invalid AssetID is most likely the problem. Metacalled2 142 — 4y
0
Nope, the asset ID isn't invalid and it isn't showing errors. The sound is named TimeAndTimeAgain. It's in the script CoolBlueJay000 48 — 4y
0
script's parent. CoolBlueJay000 48 — 4y

2 answers

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

Try this

01local Sound1 = Instance.new("Sound")
02Sound1.SoundId = "rbxassetid://1837324424"
03Sound1.Parent = script.Parent
04 
05script.Parent.MouseButton1Down:Connect(function() -- Detects when clicked, if so commences these events
06    if Sound1.IsPlaying == false then -- If the sound isn't playing, it plays the sound
07        Sound1:Play()
08    else
09        Sound1:Stop() -- If the sound is playing, it stops the sound
10    end
11end)
0
I don't know why it doesn't work on mine, it might be playing multiple times. But I don't get how that's possible because I'm only clicking it once. CoolBlueJay000 48 — 4y
0
Is it supposed to be a local script? Because on mine it is. CoolBlueJay000 48 — 4y
0
Yeah its supposed to be in a local script. Is this 100% the code or is this a snippit of one? This code isn't set in a loop? WizyTheNinja 834 — 4y
0
Nope. CoolBlueJay000 48 — 4y
0
This is all of the code. CoolBlueJay000 48 — 4y
Ad
Log in to vote
0
Answered by 4 years ago

Apparently, the Play and Stop() function just looped??? I'm so confused about how it was looping. But anyway, I got it fixed. Thanks for your help!

Answer this question