Turning a generic part into the player

Can you send a screenshot of your whole “StarterPlayer” folder? Make sure everything is visible.

1 Like

Make a local script in StarterCharacterScripts and set the Model’s PrimaryPart to the cube and add this script:

local cam = workspace.CurrentCamera

cam.CameraType = Enum.CameraType.Fixed
cam.CameraSubject = script.Parent.PrimaryPart
1 Like