Hey Developers!
I have been having this vague recurring error for quite a few days and have thrown in the towel and now I am here.
Here are the deeds:
Error: 10:58:07.402 - Requested module experienced an error while loading
That link (within the Output) brings me to my reference of the module (ObjectCloning)
Reference to ObjectCloning:
local ObjectCloning = require(game.ServerStorage.ObjectCloning)
ObjectCloning.CreateVideoZoneDetectionObjectsClone()
ObjectCloning.CreateAssignedZoneClone()
ObjectCloning.CreateIntersectionBoundsClone()
Inside ObjectCloning:
local ObjectCloning = {}
local VideoDetectionObjects = game.ServerStorage.VideoDetectionObjects
local UnassignedZone = game.ServerStorage.VideoDetectionObjects.VideoZones.Vz_Unassigned
local ZoneIDNumber = game.ServerStorage.VideoDetectionObjects.VideoZones.Vz_Unassigned.Zone.ZoneIDNumber.Value
local IntersectionBounds = game.ServerStorage.VideoDetectionObjects.VideoZones.Utilities.IntersectionBounds
local Preemption = game.ServerStorage.VideoDetectionObjects.VideoZones.Utilities.PreemptionZone
local COUNT = game.ServerStorage.VideoDetectionObjects.VideoZones.Utilities.Vz_COUNT
UnassignedZone.Parent = game.ServerStorage
IntersectionBounds.Parent = game.ServerStorage
function ObjectCloning.CreateVideoZoneDetectionObjectsClone()
local VideoZoneClone = VideoDetectionObjects:Clone()
VideoZoneClone.Parent = game.Workspace
end
ObjectCloning.CreateVideoZoneDetectionObjectsClone()
function ObjectCloning.CreateAssignedZoneClone()
local AssignedZoneClone = UnassignedZone:Clone(“Vz”…ZoneIDNumber)
AssignedZoneClone.Parent = game.Workspace.VideoDetectionObjects.VideoZones
end
ObjectCloning.CreateAssignedZoneClone()
function ObjectCloning.CreateIntersectionBoundsClone()
local IntersectionClone = IntersectionBounds:Clone()
IntersectionClone.Parent = game.Workspace.VideoDetectionObjects.VideoZones.Utilities
IntersectionClone.Name = “ItWorks! Ave”
end
ObjectCloning.CreateIntersectionBoundsClone()
return ObjectCloning
Now, the very frustrating thing about this is that it was running and being referenced and loaded properly about two days ago…