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

Gui Closing and Changing Camera?

Asked by 6 years ago

I made a script that when you click the gui button Outfit, the whole gui clears from the screen and then the camera position changes to the brick name CameraForOutfit. The gui closing part works but the camera changing role doesnt. I am getting a message saying that the part CameraForOutfit is not a valid member of workspace. Whats wrong with the code? Thanks

1local Camera = workspace.CurrentCamera
2 
3script.Parent.MouseButton1Click:connect(function()
4    script.Parent.Parent:Destroy()
5    Camera.CameraType = Enum.CameraType.Scriptable
6    Camera.CFrame = workspace.CameraForOutFit.CFrame
7end)
0
try retyping the brick's name again User#23365 30 — 6y
0
I tried it but the camera is not placed to the brick named CameraForOutfit. The camera just stays were the player spawned Flognaw3210 25 — 6y

1 answer

Log in to vote
0
Answered by
xPolarium 1388 Moderation Voter
6 years ago
Edited 6 years ago

You need to update the CFrame of the camera. You can use BindToRenderStep that way you can stop the updating at a later point.

Also I'm going to be using some part I had in workspace as a test example. You would need to edit the script to your liking, but the idea is the same.

01local RunService = game:GetService("RunService") --RunService to get BindToRenderStep
02 
03local camera = workspace.CurrentCamera --Our camera, we're in a local script
04 
05local offset = Vector3.new(5,5,5) --some offset we'll add to our camera's Pos
06 
07function updateCam()
08    --This will position the camera to the Part and add and offset
09    --It will also make the camera focus/lookAt the part
10    camera.CFrame = CFrame.new(workspace.Part.Position + offset, workspace.Part.Position)
11end
12 
13script.Parent.MouseButton1Click:Connect(function()
14    script.Parent.Parent:Destroy()
15 
View all 24 lines...

More useful stuff on BindToRenderStep.

0
Hello thank you for replying so far everything went great with your script and updating the camera. Everything is perfect except that the camera is not focusing on the part that I want the camera to be on. The camera just goes off far away from the map, it works but how would I change it to focus on the brick. I tried changing the vectors but still nothing, thanks. Flognaw3210 25 — 6y
Ad

Answer this question