CameraSubject (Property): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>Trappingnoobs
fixed
m Text replacement - "<SyntaxHighlight code="lua">" to "<syntaxhighlight lang="lua">"
Tags: mobile web edit mobile edit
 
(12 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{CatUp|Properties}}
<onlyinclude>{{Property
<onlyinclude>{{Property
|name        = CameraSubject
|name        = CameraSubject
|property    = [[Instance]] ''Camera subject''
|property    = {{type|instance=Instance}}
|description = A [[Model]], [[Part]], or [[Humanoid]] for the camera to look at. Setting this property will override the [[Focus]] property.
|description = A [[Model]], [[Part]], or [[Humanoid]] for the camera to look at. Setting this property will override the [[Focus]] property.
|object      = Camera
|object      = Camera
Line 10: Line 8:




{{Example|In a LocalScript inside the player's character or player's PlayerGui we can do<br/><pre>
{{Example|In a LocalScript inside the player's character or player's PlayerGui we can do<br/><syntaxhighlight lang="lua">
game.Workspace.CurrentCamera.CameraSubject = game.Workspace.Part
game.Workspace.CurrentCamera.CameraSubject = game.Workspace.Part
</pre>
</syntaxhighlight>


Makes the player's camera point towards 'Part'.
Makes the player's camera point towards 'Part'.


<pre>
<syntaxhighlight lang="lua">
game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid
game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid
</pre>
</syntaxhighlight>


Reverts the camera to pointing back towards the character.
Reverts the camera to pointing back towards the character.

Latest revision as of 05:38, 27 April 2023

CameraSubject
Property Instance
Description A Model, Part, or Humanoid for the camera to look at. Setting this property will override the Focus property.
Member of Camera


Example
In a LocalScript inside the player's character or player's PlayerGui we can do
game.Workspace.CurrentCamera.CameraSubject = game.Workspace.Part

Makes the player's camera point towards 'Part'.

game.Workspace.CurrentCamera.CameraSubject = game.Players.LocalPlayer.Character.Humanoid

Reverts the camera to pointing back towards the character.


See Also