I have a question, why is this not working?
script.Parent.Pick.ClickDetector.MouseClick:Connect(function()
local sound = Instance.new("Sound")
sound.Parent = script.Parent.Pick
sound.SoundId = "rbxassetid://6196766947"
sound.Playing = true
script.Parent.FlashLight1.Transparency = 1
script.Parent.FlashLight2.Transparency = 1
script.Parent.Part.Transparency = 1
game.Workspace.CurrentCamera.FlashLight.FlashLight1.Transparency = 0
game.Workspace.CurrentCamera.FlashLight.FlashLight2.Transparency = 0
game.Workspace.CurrentCamera.FlashLight.Arm.Transparency = 0
game.Workspace.CurrentCamera.FlashLight.Part.Transparency = 0
script.Disabled = true
end)