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

How to make a third person camera script?

Asked by 5 years ago

How do you make your game a third person game?

0
Disable scrolling Gameplayer365247v2 1055 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

If you want to make your player's camera a Third Person Camera the easy way would be this; change the CameraMinZoomDistance higher in a localscript inside StarterPlayer>StarterPlayerScripts

    local player = game.Players.LocalPlayer

player.CameraMinZoomDistance = 10

If you want to make the the maximum zoom distance lower you can change it too by adding

player.CameraMaxZoomDistance = 10 -- or whatever you want
Ad

Answer this question