This is a suggestion of a different way to fix it:
You could use camera.CoordinateFrame
, which is basically changing where the camera is positioned, and where it is looking. It uses CFrame
.
E.G:
01 | local cam = game.Workspace.CurrentCamera |
03 | local part = Instance.new( "Part" ,game.Workspace) |
05 | part.BrickColor = BrickColor.new( "Really black" ) |
06 | part.Position = Vector 3. new( 0 , 10 , 0 ) |
09 | cam.CoordinateFrame = CFrame.new(game.Workspace.Baseplate.Position,part.Position) |
CFrame values basically go like this:
Argument #1:
Vector3
value, position of the camera, in the script above, it makes the position of the camera the same as Baseplate
's position.
Argument #2:
Vector3
value, what the camera is looking at, in the script above, it is looking at the black Part
.
For more info on CFrame
: http://wiki.roblox.com/index.php/CFrame
When trying to be above a part that is moving, you need to have the first argument of CoordinateFrame
's CFrame to be in the same position of the part that is moving, so you can always see it, and that it is in the center of the screen.
Like so:
1 | local p = game.Workspace.TestPart |
3 | local cam = game.Workspace.CurrentCamera |
6 | p.Position = p.Position + Vector 3. new( 0.01 , 0 , 0 ) |
7 | cam.CoordinateFrame = CFrame.new(p.Position + Vector 3. new( 0 , 10 , 0 ),p.Position ) |
This script should move a Part
on the X
axis every hundredth of a second, and make the camera look at the Part
.
Also, the reason I am adding to the CoordinateFrame
's first argument is because I want to see the Part
, not look at it while inside the Part
(which is basically impossible).