ZonePlus Scripting Issue

Hi, I am trying to make a script that prints when a player events and prints left when they leave.

This is the api I used (ZonePlus): Zone - ZonePlus

Nothing is printing when the player enters the zone, no clue why. Thank you - BMWLux

This is my script:

local part = game.Workspace.JumpPad
local Zone = require(game.ReplicatedStorage.Zone)
local zone = Zone.new(game.Workspace.TouchPad)
zone.playerEntered:Connect(function(player)
    print("in")
end)
zone.playerExited:Connect(function(player)
    print("left")
end)