I have a GUI on the player’s screen where when they press the button, it will move their camera closer to this “portal” type thing to make a smoother loading into the next scene / instance of a game…
Yet I cannot figure out how to use :Lerp
to move it.
Here is script and what actually happens, any help?
local PlayScreen = script.Parent.PlayScreen
local ChapterOneButton = PlayScreen.ChapterOne
local TweenService = game:GetService("TweenService")
local Camera = game.Workspace.CurrentCamera
local Players = game:GetService("Players")
local Player = Players.LocalPlayer
local CameraPieceFinal = game.Workspace.CameraPieceFinal
--// joining
repeat wait() until Player.Character
print("yass repeating")
Camera.CameraType = "Scriptable"
Camera.CFrame = game.Workspace.CameraPiece.CFrame
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Health, false)
game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
ChapterOneButton.MouseButton1Click:Connect(function()
local time = 1
local tweenInfo = TweenInfo.new(time, Enum.EasingStyle.Linear, Enum.EasingDirection.Out, 0, false, 0)
TweenService:Create(Camerapiece, tweenInfo, {CFrame = CFrame.new(-515.835, 21.09, 127.772)}):Play()
wait(1)
CameraPieceFinal.CFrame = Camerapiece.CFrame:Lerp(CameraPieceFinal.CFrame)
end)