Hey, I have this code:
points={
Vector3.new(0,0,0);
Vector3.new(5,5,5);
}
local reg3=Region3.new(points[1], points[2])
Workspace.Terrain:SetCells(reg3, 4, 0, 1)
But it doesn't work... I tried using Region3int16.new as well, and that didn't work. Any insight as to why this doesn't work? |