--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] workspace.Map.PocketMons.ChildAdded:Connect(function() for i,pok in pairs(workspace.Map.PocketMons:GetChildren()) do if pok.CFrame then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(pok.CFrame.Position) wait(0.2) for i = 1 , 2 do local args = { [1] = CFrame.new(pok.CFrame.Position) } game:GetService("Players").LocalPlayer.Character.Catcher.Cast:FireServer(unpack(args)) end wait(0.1) end end)