Sounds for areas

How do you make a script in which it plays a sound if you go over a certain area?

Region3 is the answer for this.

1 Like

You could use .Touched:

Part.Touched:Connect(function(Touch)
       if Touch.Parent:FindFirstChild("Humanoid") then 
            Sound:Play()
     end
end)

Or you could use what Sorbious said, Region3.

BasePart.Touched (roblox.com)

Region3 (roblox.com)

1 Like