local VHS = game.ReplicatedStorage.ToggleVHSEvent
local VHS = game.StarterGui.VHS
local button = script.Parent.Parent.TextButton
local sound = game.StarterGui.VHS.ambient
local equalizer = game.StarterGui.VHS.ambient.EqualizerSoundEffect
button.MouseButton1Click:Connect(function()
VHS.Enabled = not VHS.Enabled
equalizer.Enabled = not equalizer.Enabled
end)
script.Parent.MouseButton1Click:Connect(function()
if sound.Volume == 0 then
sound.Volume = 1.5
else
sound.Volume = 0
end
end)
i dont understand this shit