How do I rotate a surfacegui without rotating the part?

Hello!

I have been facing some issues with surface guis.
The gui is having a flipped view.
Photo.
image
I don’t really want to disrupt my builder by rotating the parts so how do I fix this?

1 Like

You could rotate the textlable that is in the surface gui. Setting the Rotation to 180 will completely flip it upside down, setting it to 90 will flip it 90 degrees etc.

Where do I find that property?

If you go to properties Most Gui Objects have it. You can also access it in a script:

local textlabel = --define here

textlabel.Rotation = 180
2 Likes