-- Looping Spooky Sound (Low Pitch) local Spooky1 = Instance.new("Sound", game.Workspace) Spooky1.Name = "SpookyLoop" Spooky1.SoundId = "rbxassetid://133180219581309" Spooky1.Volume = 10 Spooky1.Looped = true Spooky1.Pitch = 0.09 Spooky1:Play() -- Apply Decal to All Sides local decalId = "rbxassetid://86166390223728" local function applyDecalToAllSides(part) local faces = { Enum.NormalId.Top, Enum.NormalId.Bottom, Enum.NormalId.Left, Enum.NormalId.Right, Enum.NormalId.Front, Enum.NormalId.Back } for _, face in ipairs(faces) do local decal = Instance.new("Decal") decal.Texture = decalId decal.Face = face decal.Parent = part end end for _, part in ipairs(workspace:GetDescendants()) do if part:IsA("BasePart") then applyDecalToAllSides(part) end end -- Set Custom Skybox local skyId = "rbxassetid://86166390223728" local sky = Instance.new("Sky") sky.SkyboxBk = skyId sky.SkyboxDn = skyId sky.SkyboxFt = skyId sky.SkyboxLf = skyId sky.SkyboxRt = skyId sky.SkyboxUp = skyId sky.Parent = game.Lighting -- Set Only Fog (No Night) local lighting = game.Lighting lighting.FogColor = Color3.fromRGB(20, 20, 20) lighting.FogStart = 0 lighting.FogEnd = 300 -- 🔁 Repeating Sound Every 10 Seconds task.spawn(function() while true do local repeatSound = Instance.new("Sound", game.Workspace) repeatSound.Name = "RepeatingSound" repeatSound.SoundId = "rbxassetid://7337298420" repeatSound.Volume = 10 repeatSound.Looped = false repeatSound:Play() repeatSound.Ended:Connect(function() repeatSound:Destroy() end) task.wait(10) end end)