-- Made by D3f4ult local collector = workspace.Collector collector.Size = Vector3.new(collector.Size.X, 200, 200) collector.Transparency = 1 collector.CanCollide = false local slimesFolder = workspace.Slimes local runService = game:GetService("RunService") local attachment = collector:FindFirstChildWhichIsA("Attachment") if attachment then local particle = attachment:FindFirstChildWhichIsA("ParticleEmitter") if particle then particle:Destroy() end end runService.Heartbeat:Connect(function() collector.CanCollide = false for _, slime in ipairs(slimesFolder:GetChildren()) do local outline = slime:FindFirstChild("Outline") if outline and outline:IsA("MeshPart") then collector.CFrame = outline.CFrame return end end end)