of     1   

y1p
#218176727Sunday, June 04, 2017 10:30 PM GMT

How do I find parts in workspace with say a Position.Y value of 0?
robloxman303030
#218177340Sunday, June 04, 2017 10:38 PM GMT

for i,v in pairs(workspace:GetChildren()) do if v:IsA("Part") then if v.Position.Y==0 then print("found") end end end
hoemando
#218177360Sunday, June 04, 2017 10:38 PM GMT

for _, object in pairs (game.Workspace:GetChildren()) do if object.Position.Y == 0 then --whatever you want to do with it-- end end idk if this works but give it a shot
hoemando
#218177425Sunday, June 04, 2017 10:39 PM GMT

robloxman got it

    of     1