so, I have this issue where once the player presses the Play button after 4 seconds the frame will fade in and it will teleport them, but the issue is that the camera does not follow when they are teleported.
local tween = game:GetService("TweenService")
local tweenspeed = 1
local info = TweenInfo.new(tweenspeed, Enum.EasingStyle.Quad, Enum.EasingDirection.In, 0)
local frame = script.Parent.Parent.Loading
script.Parent.PlayButton.MouseButton1Click:Connect(function()
tween:Create(frame, info, {BackgroundTransparency = 0}):Play()
wait(2)
script.Parent.Parent.Camera.Disabled = true
script.Parent.Parent.preLoader.Disabled = true
wait(4)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(workspace.TestingSpawnLocation.Position)
end)