-- LocalScript inside StarterPlayerScripts
local camera = workspace.CurrentCamera
local cameraPart = workspace:WaitForChild("CameraPart")
-- Wait until player spawns
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function()
wait(1) -- Slight delay to ensure everything loads
camera.CameraType = Enum.CameraType.Scriptable
camera.CFrame = cameraPart.CFrame
end)
end)
** You are now Level 3! **