Part render bug

Hello,
I was hanging out with some cframe things and i got strange bug:
Снимок экрана 2021-07-09 113433
Its normal part without anything in, thats script which i writed:

local p = workspace.Part.CFrame workspace.Part.CFrame = 
CFrame.new(
p.Position.X,p.Position.Y,p.Position.Z,
p.RightVector.X,p.UpVector.X,p.LookVector.X,
p.RightVector.Y,p.UpVector.Y,p.LookVector.Y,
p.RightVector.Z,p.UpVector.Z,p.LookVector.Z)

If i will write run it again it will fix and if again it will broke.
Idk how do post for engine bugs so i doing it like this

It’s not an “engine bug”. It happens because you’re inverting the part vectors:

2 Likes