local remote = game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("CaptureItem")
local spawners = workspace:WaitForChild("Game"):WaitForChild("LiveOpsPersistent"):WaitForChild("Christmas2025"):WaitForChild("Spawners"):WaitForChild("PresentHunt")
spawn(function()
while true do
for _, spawner in pairs(spawners:GetChildren()) do
if spawner:FindFirstChild("PresentSpawnerPad") then
spawn(function()
remote:InvokeServer("Christmas2025Presents", 71, spawner.PresentSpawnerPad)
end)
end
end
wait(0.01)
end
end)
Comments
credit would be nice 😁