Are tweens with changing goals possible?

I’m trying to make the original number of a sound’s volume and camera field of view change depending on what settings the player changes and I’m not quite sure on how to do that since tweenservice does not seem to be doing it.

Also I did search up and see something about a spring module, but I don’t know where it is, so if you could help me, I would really appreciate it.

2 Likes

Could we see code on how you’re doing the FOV code with the tweens?

First there’s this part:

if TextBox.Parent.Name == “FOV” then
SettingsMenu:GetPropertyChangedSignal(“Visible”):Connect(function()
Camera:GetPropertyChangedSignal(“FieldOfView”):Connect(function()
Camera.FieldOfView = FOVNumber
end)
end)
end

Then this:

local ReverseCameraTween = TweenService:Create(Camera, CameraInfo, {FieldOfView = FOVNumber})

Then the tween plays once a close button is clicked

As far as i know: No.
You’ll need to stop the tween,change it, then start a new one.

When you play a tween the only thing you can do to it is to Cancel() or Pause()