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:
1 | local Sound 1 = script.Parent.TimeAndTimeAgain -- References the sound |
2 |
3 | script.Parent.MouseButton 1 Down:Connect( function () -- Detects when clicked, if so commences these events |
4 | if Sound 1. Playing = = false then -- If the sound isn't playing, it plays the sound |
5 | Sound 1 :Play() |
6 | else |
7 | Sound 1 :Stop() -- If the sound is playing, it stops the sound |
8 | end |
9 | end ) |
Thanks!
Try this
01 | local Sound 1 = Instance.new( "Sound" ) |
02 | Sound 1. SoundId = "rbxassetid://1837324424" |
03 | Sound 1. Parent = script.Parent |
04 |
05 | script.Parent.MouseButton 1 Down:Connect( function () -- Detects when clicked, if so commences these events |
06 | if Sound 1. IsPlaying = = false then -- If the sound isn't playing, it plays the sound |
07 | Sound 1 :Play() |
08 | else |
09 | Sound 1 :Stop() -- If the sound is playing, it stops the sound |
10 | end |
11 | end ) |
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!