script:FindFirstChild()가 항상 nil임

Describe the issue briefly

Level Browser상 이미 사운드가 있는데도 불구하고


local inspectSound = script:FindFirstChild("ItemInspect")
	print("inspect sound:", inspectSound)
	if inspectSound and inspectSound:IsA("Sound") then
		inspectSound:Play()
	end
에서 `inspect sound: nil`이 항상 출력됩니다. (로딩 후 나중에 여러번 실행 해봄)

### Environment
Studio, Windows 10 64bit

### Expected Result
Sound가 잘 찾아져야함

### Issue Frequency
100% (Always)



### Workaround Solution
ReplicatedStorage에 옮겨서 사용하니 잘 작동합니다.

### 🖼️ Image Upload
![image.png|269x307](upload://bqHL82mnfz88AAhqLMCAiBzqhRy.png)