I’m trying to play music within a set area but nothing happens.
I followed AlvinBlox’s tutorial (Roblox - Play music in different areas - Scripting tutorial (2020 updated version) - YouTube) which was made in 2019 so it could possibly be outdated. Nothing happens in the output other than this (when you start the game):
Infinite yield possible on ‘Workspace:WaitForChild(“SoundRegion”)’
Script:
local SoundRegionsWorkspace = game.Workspace:WaitForChild("SoundRegion")
local Found = false
while wait(1) do
for i, v in pairs(SoundRegionsWorkspace:GetChildren()) do
Found = false
local region = Region3.new(v.Position - (v.Size/2),v.Position + (v.Size/2))
local parts = game.Workspace:FindPartsInRegion3WithWhiteList(region, game.Players.LocalPlayer.Character:GetDescendants())
for _, part in pairs(parts) do
-- Loop one by one through the parts table
if part:FindFirstAncestor(game.Players.LocalPlayer.Name) then
print("Player was found")
Found = true
break
else
Found = false
print("Player was not found in region")
end
end
if Found == true then
--Start playing some music
if script.Parent.SoundRegions[v.Name].IsPlaying == false then
script.Parent.Soundregions[v.Name]:Play()
break
end
else
script.Parent.SoundRegions[v.Name]:Stop()
end
end
end
and here’s the tutorial’s code: