How can I make a camera similar to the one of Roblox Studio?
Asked by
7 years ago Edited 7 years ago
I need someone to make a camera script or teach me how to make a camera script that can be maneuvered by pressing W, A, S, or D. (the normal keys to move a character and the studio's camera) It also has to be able to be rotated with Right-Click & Drag.
Attempted Code:
01 | local cam = workspace.CurrentCamera |
03 | cam.CameraType = "Custom" |
04 | local userInputService = game:GetService( "UserInputService" ) |
05 | local player = game.Players.LocalPlayer |
19 | userInputService.InputBegan:connect( function (inputObject) |
20 | if inputObject.KeyCode = = Enum.KeyCode.W then |
22 | cam.CoordinateFrame = CFrame.new(X, Y, Z) |
24 | if inputObject.KeyCode = = Enum.KeyCode.S then |
26 | cam.CoordinateFrame = CFrame.new(X, Y, Z) |
31 | userInputService.InputEnded:connect( function (inputObject) |
32 | if inputObject.KeyCode = = Enum.KeyCode.W then |
35 | if inputObject.KeyCode = = Enum.KeyCode.S then |
I kinda gave up mid-way so, yeah there's a lot of errors in there.
If you can help me or know someone who can help me, please respond! I really need this.
~Chez_Guy :)