BACCON
Hi, my name is Baccon. I’m trying to make a intro and have run into a problem with the script, when I’m trying to make the model tween in the viewportframe to get closer to the players… but it goes farther away.
Video
Here’s The Code
local CoolAnimationCamera = Instance.new('Camera', script)
CoolAnimationCamera.Name = 'CoolAnimationCamera'
local PortFrame = script.Parent.Intro.CoolAnimationThing.ViewportFrame
PortFrame.CurrentCamera = CoolAnimationCamera
local ModelThing = game.Lighting.NationalChampionship
local ModelThingClone = ModelThing:Clone()
ModelThingClone.Parent = PortFrame.WorldModel
PortFrame.WorldModel.PrimaryPart = ModelThingClone.Main
CoolAnimationCamera.CFrame = PortFrame.WorldModel.NationalChampionship.Main.CFrame * ang(5.8,0,3.6) * CFrame.new(0,0,8)
tweenModel(workspace.Jet, workspace.JetEnd.CFrame, 4, Enum.EasingStyle.Linear, Enum.EasingDirection.In)
wait(1)
Tween_Part(PortFrame.WorldModel.NationalChampionship.Main,{CFrame = CFrame.new(0,0,300)},Enum.EasingStyle.Linear,Enum.EasingDirection.In,3)
What I Want?
I want the model to be able to turn and tween towards the camera.