Timer goes down instantly when theres no longer a light in the player

  1. I want to make it so if the player has a light source in their character, it will let them pass through an area, and teleport them back when they dont have a light source for 5 seconds

  2. The timer goes down instantly, teleporting the player back.

  3. Checking if the object is actually a light and continuing if not, yet this caused the timer to completely stop working altogether

task.spawn(function()
	while task.wait(1) do
		local table = char:GetDescendants()
		
		local overlapParams = OverlapParams.new()
		overlapParams.FilterType = Enum.RaycastFilterType.Include
		overlapParams.FilterDescendantsInstances = table

		local collisions = workspace:GetPartsInPart(workspace.Map.NeedsLight_Area, overlapParams)

		for i, obj in ipairs(collisions) do
			if obj.Name == "HumanoidRootPart" then
				for i, obj in pairs(char:GetDescendants()) do
					if not (obj.Parent:FindFirstChildOfClass("SpotLight") or obj.Parent:FindFirstChildOfClass("PointLight") or obj.Parent:FindFirstChildOfClass("SurfaceLight")) then timeLeft -= 1 continue end
					
					if obj.Enabled == true then
						timeLeft = maximumTime
						continue
					else
						timeLeft = timeLeft - 1
						continue
					end
				end
			end
		end

		print(timeLeft)

		if timeLeft <= 0 then
			char:PivotTo(workspace.Map.NeedsLight_Area.SpawnPos.WorldCFrame)
			timeLeft = maximumTime
		end
	end
end)

It looks like your subtracting for every single object in the player that doesn’t have a light type source inside of it.