ZonePlus reload issue

Hi, I am having an issue where I have a zone, it works fine at the start, but then when I delete the zone part and put it back in it does not work. Zone - ZonePlus (1foreverhd.github.io) This is the api

local Zone = require(game:GetService("ReplicatedStorage").Zone)
local zone = Zone.new(script.Parent);
local Triggered = script.Parent.Parent.Parent.Bools.HasBeenTriggered
zone.playerEntered:Connect(function(player)
	print(player.Name .. " ENTERED!")
	warn("ENTERED")
end)

This is my script.