Camera Loading Screen

I’m not sure where this can go, but I’ve been trying to find any tutorials of parenting the Player’s view to a part, put it in a location and just edit it from there. Also being able to move the (player’s mouse) side to side to see more of an area.

If there are any tutorials or tips to accomplish something like this, please let me know!

Thanks in regard,

1 Like
-- Setting camera cframe to a part.
-- LocalScript
local Camera = workspace.CurrentCamera
Camera.CameraType = Enum.CameraType.Scriptable
Camera.CFrame = workspace.Part.CFrame

For the camera side to side thing: How to make your Camera follows your Cursor slightly | Fast Roblox Studio Tutorial - YouTube

1 Like

Thanks for the help! I checked out the video and it worked!

Quick question, how would I change the Player’s view back to normal, let’s say after they clicked a TextButton?

local Textbutton = --Put textbutton here
Textbutton.MouseButton1Click:Connect(function()
    workspace.CurrentCamera.CameraType = Enum.CameraType.Custom
end)

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.