-
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
-
The timer goes down instantly, teleporting the player back.
-
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)