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

How to I made it 1st person?

Asked by 9 years ago

I want my game to be a 1st person shooter, but can't get the script. Also, how do I make it so that the user has no control over the way he/she faces? A.K.A. how do I make sure the character doesnt look any other way then how I want them to?

2 answers

Log in to vote
0
Answered by 9 years ago

I don't have an answer for for the last one. But for a first person shooter game, just grab a free model.

Ad
Log in to vote
0
Answered by 9 years ago

Create a local script and place it in the starterPack. This script will get the player's camera and lock it in LockFirstPerson mode. This will solve your first question.

local Player = game.Players.LocalPlayer --Find the local player
Player.CameraMode = Enum.CameraMode.LockFirstPerson --Lock First Person

Answer this question