Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

help with camera manipulation?

Asked by
lukeb50 631 Moderation Voter
9 years ago

i have a localscript that is supposed to focus the camera on a brick when it starts, and the focus on the part that is selected(it is stored in an ObjectValue) but it randomly focuses on a part, and will not focus on the selected when the player activates the focus feature. here is the script(i know i should use a function and call it instead of writing the code twice, but i failed to do so)

i get no error messages

01workspace.CurrentCamera.CameraSubject=workspace.BuildingBase
02 
03script.Parent.MouseButton1Click:connect(function()
04workspace.CurrentCamera.CameraSubject=script.Parent.Parent.Parent.Parent.SelectedItem.Value
05end)
06 
07 
08 
09function onKeyPress(inputObject, gameProcessedEvent)
10    if inputObject.KeyCode == Enum.KeyCode.F then
11workspace.CurrentCamera.CameraSubject=script.Parent.Parent.Parent.Parent.SelectedItem.Value
12end
13end
14 
15game:GetService("UserInputService").InputBegan:connect(onKeyPress)

any ideas for my problems? thanks

0
Possibly a problem with what your making the CameraSubhect to? PreciseLogic 271 — 9y

1 answer

Log in to vote
0
Answered by 9 years ago

All the information you will need for Camera Manipulation is on the Wiki. I linked it for you below.

ROBLOX Wiki: http://wiki.roblox.com/index.php?title=Camera_manipulation

0
i always check the wiki and do extensive debugging before posting here. there is nothing in there that helps lukeb50 631 — 9y
Ad

Answer this question