Sorry, I'm a begginer at scripting and I hate packages, I want no packages in my training place.
local debris = game:GetService('Debris') local function onDescendantAdded(descendant) if descendant:IsA('CharacterMesh') then -- checks if its a package mesh debris:AddItem(descendant, 0) -- if so delete it end end workspace.DescendantAdded:connect(onDescendantAdded) -- checks for anything that enters the workspace, even if it was added into a separate parent just as long as its inside the workspace