How can I make a gun first person? Any help please! Thanks!
To set the player's camera to be first person, use the CameraMode property of the Player object.
So to get the player into first person when they equip the gun, we can use the Equipped event.
script.Parent.Equipped:connect(function() -- Set the player's CameraMode to LockFirstPerson end)
And to take them out of first person when the unequip the gun we can use the Unequipped event.
script.Parent.Unequipped:connect(function() -- Set the player's CameraMode to Classic. end)
Setting the player's camera mode is as simple as setting a part's name.
game.Players.LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson