Gui background effect not working

  1. **What do you want to achieve?
    I want clip descendants to work while the spiny image is rotating
  2. What is the issue? Include screenshots / videos if possible!
    image

image

Spinny = script.Parent

while true do
	wait(0.01)
	Spinny.Rotation = Spinny.Rotation +1
end


Heres the place
spinny GUI.rbxl (39.6 KB)

1 Like

I’m not sure I undertand what you’re trying to do, but maybe this is the problem: ClipsDescendants and Rotation don’t work nicely together:

Note that GuiObject.Rotation isn’t supported by this property. If this or any ancestor GUI has a non-zero GuiObject.Rotation , this property is ignored and descendant GUI elements will be rendered regardless of this property’s value.

1 Like