of     1   

vastqud
#182517922Wednesday, January 27, 2016 9:30 PM GMT

So let's say I wanted to delete the parts only in a region3 thingy that I've created, and there are multiple parts called "Part" in the workspace.. this would work, right? local k = Region3.new(Vector3.new(0,0,0), Vector3.new(5,5,5))-- idk if that actually how u do it, but whatever for _,v in pairs(workspace:FindPartsInRegion3(k,nil,100) do--btw, as a side note, what's the difference between this and saying "for i,v", instead of "for _,v"? v:Destroy() end That works right?
SenseiWarrior
#182518055Wednesday, January 27, 2016 9:32 PM GMT

people use _,v when they dont need the first variable (the index of the table) Instance.new("BodyThrust",SenseiWarrior).position = CFrame.new(SenseiWarrior,YourGirlsDMs)
vastqud
#182518234Wednesday, January 27, 2016 9:35 PM GMT

Ah, Could I still use for i,v, but just not use the index? Or would for _,v be faster, or just actually work? I've been writing all my fora as for i, broke some time now...
vastqud
#182518278Wednesday, January 27, 2016 9:36 PM GMT

Excuse my typos, I'm on mobile... But my script works, right?

    of     1