Hi!
I want a Part to rotate around this Submarine, and I have encased the Submarine in another part.
I have the script below, which is a child of the rotating part:
local angle = 10
while wait() do
script.Parent.CFrame = CFrame.new(target.Position)
* CFrame.Angles(0, angle, 0)
* CFrame.new(0, 0, -230)
angle = angle + math.rad(10)
end
However, this goes… really fast.
I’d like it to slow down to a moderate pace, so it doesn’t hurt peoples eyes…!
How can I edit my script?
Thanks, AridOats.