I would like to know how I could round a number to a multiple of 4 for a Grid placement system. It is in Vector3 format.
I figured it out
local function Round4(Round) local result = Round / 4 result = math.round(result) return result * 4 end