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

My sound zone isnt working and output is BLANK?

Asked by
iuclds 720 Moderation Voter
5 years ago
Edited 5 years ago

So here is the First part

1FirstZone=workspace.Dry
2FirstZoneSound=workspace.Dry.DrySound

You see they are both not labeled nil, right? these are:

01SecondZone=nil
02SecondZoneSound=nil
03 
04ThirdZone=nil
05ThirdZoneSound=nil
06 
07FourthZone=nil
08FourthZoneSound=nil
09 
10FifthZone=nil
11FifthZoneSound=nil
12 
13SixthZone=nil
14SixthZoneSound=nil
15 
View all 26 lines...

Thats what I expected. Now when I do this script (inside StarterPlayerScripts because I don't use that):

1while FirstZone == not nil do
2    wait(.001)
3    if FirstZone.Touched then
4    FirstZoneSound.Playing = true elseif
5 
6     FirstZone.TouchEnded then
7        FirstZoneSound.Playing = false
8    end
9end

I expected the sound zones to work but instead I got a dumb blank output. Any help?

1 answer

Log in to vote
1
Answered by 5 years ago
1FirstZone.Touched:Connect(function(hit)
2    if hit.Parent:FindFirstChild("Humanoid") then
3            FirstZoneSound.Playing = true
4    end
5end)
6 
7FirstZone.TouchEnded:Connect(function()
8    FirstZoneSound.Playing = false
9end)
Ad

Answer this question