Hello, I’m extremely confused as to how I would get a frame to rotate around a specific point. In my case it is that I am wanting a frame to rotate around a circle. There is a better explanation following on with the image below. I don’t understand anything about the rotation and I’ve looked through loads of topics and they are either incorrect or don’t follow what I am looking for.
Basically the red line needs to move throughout the circle.
Easiest way would be if u knew at which rotation the black area starts and ends,
e.g. if the red indicator first touches the black part at rotation = 100 and stops touching at rotation = 130
(you would either eyeball these 2 values or make sure of them whilst setting up the black area)
now you can compare the rotation value of ur invisible rotation frame to the rotation value u know it needs to be in between in order to touch the black part, a simple if statement would suffice:
local Rotation = InvisibleFrame.Rotation
if Rotation > 100 and Rotation < 120 then
-- red indicator is touching black area of circle
end