How do I make an FPS camera on my place?
Place in a LocalScript in StarterGui or StarterPack.
while wait() do if script.Parent.Parent.Character.Humanoid.Health~=0 then script.Parent.Parent.CameraMode = 1 else script.Parent.Parent.CameraMode = 0 end end
Here you Go
game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:connect(function(char) if plr and char then plr.CameraMaxZoomDistance = 0.5 plr.CameraMinZoomDistance = 0.5 end end) end)
Enjoy!