Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

[Solved]Region3 part is very small when created with the same size as the region3?

Asked by 5 years ago
Edited by User#5423 5 years ago

This question has been solved by the original poster.
local Region = Region3.new(Vector3.new(workspace.Part.Position.X,workspace.Part.Position.Y, workspace.Part.Position.Z ), Vector3.new(workspace.Part.Position.X, workspace.Part.Position.Y, workspace.Part.Position.Z))

wait(1)
local Part = Instance.new("Part", workspace)
Part.Anchored = true
Part.Size = Region.Size
Part.CFrame = Region.CFrame
Part.Color = Color3.new(255,0,0)
Part.CanCollide = false
Part.Transparency = 0.5
Part.Name = "haha"

As you can see, I want the part to be as big as the region. However, it becomes super tiny instead. < 1 stud. Anyone know why?

0
Fixed it myself. I added +10 on one of the sides, on the X, Y and Z. Thesquid13 301 — 5y
0
add [Solved] to the title to mark the question as solved User#5423 17 — 5y

Answer this question