local RS = game:GetService("ReplicatedStorage") local remote = RS.Packages._Index["sleitnick_knit@1.6.0"].knit.Services.PickupManager.RE.Collect local amount = 32124 -- Amount of how much scrap you want everytime you kill an zombie workspace.DescendantAdded:Connect(function(v) local id = v:GetAttribute("Id") if id then pcall(function() remote:FireServer(id, "SCRAP", amount) end) end end)