Main Idea
Shift Lock
is something I learned while making a 3rd person shooter. Shift Lock is ideal in any third person game. Now to do this we will be changing a default roblox camera script.
Step 1Click play. Easy as that. Now go into starter player scripts, and look for the camera script. Copy this script, not the script, right click the Camera Script
and click copy. Now click stop. Now go to The Explorer
, and go into Starter Player
, and click the arrow next to it.
Step 2Paste the Camera Script inside of the StarterPlayerScripts
and click the arrow next to the CameraScript
.
Step 3Now click open the Root Camera
script and go to line 197. There should be a paragraph of script that looks like the following:
3 | local isFirstPerson = false |
4 | local isRightMouseDown = false |
5 | local isMiddleMouseDown = false |
6 | this.RotateInput = ZERO_VECTOR 2 |
7 | this.DefaultZoom = LANDSCAPE_DEFAULT_ZOOM |
8 | this.activeGamepad = nil |
now on line 197, you change the
to
Step 4
Now go to line 246 and there should be a paragraph that looks like the following.
1 | function this:GetShiftLock() |
2 | return ShiftLockController:IsShiftLocked() |
change that line of code to this:
1 | function this:GetShiftLock() |
Now you should be all set.