roblox if position of block code example
Example: roblox if position of block
local pos = Vector3.new(0,1,0) -- not the actual position
local region = GetFromRegionsTable(regionName)
local parts = game:GetService("Workspace"):FindPartsInRegion3(region)
for _,part in pairs(parts) do
if part.pos == pos then
print("Found part inside region!")
break
end
end