I've been trying to get the front surface of a part named "Sidewalk" using normal id but it won't work,am I doing it wrong?
How can I get the front surface of the part named sidewalk?
Front = (Vector3.FromNormalId(Enum.NormalId.Front)) ---------------------------------------- Sidewalk = Instance.new("Part",workspace) Sidewalk.Size = Vector3.new(4, 1, 37) Sidewalk.Position = Vector3.new(4, 1, 37) Sidewalk.Name = "Sidewalk" Sidewalk.Anchored = true ---------------------------------------- FrontPosition = Sidewalk.Position*Front ---------------------------------------- Point = Instance.new("Part",workspace) Point.Position = FrontPosition Point.Name = "Point" Point.Anchored = true ---------------------------------------- print(FrontPosition)