It won’t spin. I tried changing its cframe, orientation, and the “fromEulerAngleXYZ” thing using tweenservice but it doesnt work, cframe.new or cframe.fromeuleranglexyz doesnt make it spin or move at all, orientation makes it move but only like vertically and horizontally. I want it to spin like a tornado? Also I’m pretty new so Im not very good at scripting
3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I tried searching dev hub and youtube but the solutions don’t work.
I tried doing this
local Mgoal = {}
Mgoal.Size = MainTornado.Size + Vector3.new(0,0,0)
Mgoal.Orientation = MainTornado.Orientation + Vector3.new(0,0,0)
Mgoal.CFrame = MainTornado.CFrame*CFrame.fromEulerAngelsXYZ(0,0,0)
local Minfo = TweenInfo.new(0.5)
local Mtween = TweenService:Create(MainTornado,Minfo,Mgoal)
Mtween:Play()