I know this may seem dumb but can you do this:
local region = Region3.new(),Region3.new()
I have been testing with region3 for a while and I’m kind of a noob at it but is above a more efficient way instead of having multiple variables.
I know this may seem dumb but can you do this:
local region = Region3.new(),Region3.new()
I have been testing with region3 for a while and I’m kind of a noob at it but is above a more efficient way instead of having multiple variables.
No however you can make a table of your regions.
local regions = { Region3.new(), Region3.new() }
Okay. Thank you for telling me.