local Notify = loadstring(game:HttpGet('https://raw.githubusercontent.com/StupidProAArsenal/Notifications/main/Notification%20Library%20%231', true))() local waitSec = 5 Notify:newChoiceNotify("Start?", "MAKE SURE TO JUMP", "otherwise it will not work", "info", "Collecting", 999, function() for i,v in pairs(game:GetService("Workspace").LevelSections.Start.ScavangerHunt:GetChildren()) do if v:IsA("Part") then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position) Notify:newNotify("Collected", "Waiting "..waitSec.." seconds to Collect again", "success", 5) task.wait(waitSec) end end end)