I have tried the Dev Page of roblox. I am trying to Make an Island Social Hangout. But The I am not good at Camera script. There is a photo: https://docs.google.com/document/d/1jYEhvrT3NNXUw9aLnIIC0MdjAoB_Y_tarNtzmLCQt4I/edit?usp=sharing
Of what i want it to look like.
create a part and look at camera manipulation
here is a great video by Previized Click here for YT video
His video has more than one part to it. You can watch the next parts to learn lerping and other tactics with camera manipulation
If you want a quick preview then here it is:
local camPart = workspace.CamPart --//Part where you want the camera to go to game.Players.PlayerAdded:Connect(function() workspace.CurrentCamera.CFrame = camPart.CFrame --//You have to use workspace.CurrentCamera end)
btw this has to be a local script.
YOU CANNOT MANIPULATE CAMERAS FROM SERVER SCRIPT unless you use a remoteEvent to fire all clients then manipulate the cameras from a local script.