So im making a script that when the player joins their camera view will be the same as a part 's view here it is:
local CurrCam = workspace.Camera local NewCam = workspace.NewCam CurrCam.CameraType = Enum.CameraType.Scriptable while true do CurrCam.CFrame = NewCam.CFrame end
I wrote this by raw btw
Add Wait() to the loop like this:
while true do Wait() CurrCam.CFrame = NewCam.CFrame end