Answers for "roblox how to make region3"

Lua
9

region3 roblox

local Part = Workspace.Part
local Size = Part.Size
local Region = Region3.new(Part.Position-(Size/2),Part.Position+(Size/2))
Posted by: Guest on February-22-2021
5

roblox how to make region3

local part = Instance.new("Part", workspace)
local size = part.Size
local region3 = Region3.new(part.Position - (size / 2), part.Position + (size / 2))

--[[
makes a new part and sets it's parent to the workspace
your part MUST have an Orientation of (0, 0, 0) and be a cube shape if you want
it's region to correspond to it's appearance in workspace
]]
Posted by: Guest on May-07-2022

Code answers related to "roblox how to make region3"

Browse Popular Code Answers by Language