How do I change the face of a decal with a script?

  1. What do you want to achieve? Keep it simple and clear!

Change where the decal is facing with a script.

  1. What is the issue? Include screenshots / videos if possible!

I can’t figure how to do it.

  1. What solutions have you tried so far? Did you look for solutions on the Developer Hub?

I have tried using Enum or looking it in google.

I would appreciate any help!

5 Likes

Decals have a property called face which you use to change what face of the part you want the decal to appear on. You could use Enum.NormalId to set the face property:

Decal.Face = Enum.NormalId.Left -- The decal will apear on the left side of the part.
15 Likes