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

How would I flip a part upside down?

Asked by 5 years ago

Kind of embarrassing how simple the question is but when it comes to vectors and Cframe, they're my worst area of expertise. Thanks for the help.

3 answers

Log in to vote
2
Answered by 5 years ago

Put this in a part

script.Parent.Orientation = Vector3.new(0,0,-180)
0
dear god finally thank you. True_Warrior 29 — 5y
Ad
Log in to vote
1
Answered by
OBenjOne 190
5 years ago
Edited 5 years ago

In a script in the part:

script.Parent.Orientation = Vector3.new(x,y,z)

x,y,z stand for the new rotation (probably 0,180,0)

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago
workspace.Flip.CFrame = workspace.Flip.CFrame * CFrame.Angles(math.rad(180),0,0) -- use math.rad for every angle 

Answer this question