Basically, I am trying to make a Fan gui, where it will rotate, and repeat.
local Fan = script.Parent
local Tween = game:GetService("TweenService")
local tweenInfo = TweenInfo.new(5)
Fan.Rotation = 0
local tween1 = Tween:Create(Fan, tweenInfo, {Rotation = (360)}):Play()