See, I make a FPS script (Or any script) And I test it out in solo mode, IT WORKS PERFECTLY! I save the game to my roblox game, and when I try to play the game... I'm not in FPS form like I was in Solo mode, Why is that? Oh, and can someone give me like a 30 second tutorial on how to make animations? Please?
The problem is that when the ROBLOX character dies in Online mode, the CameraMode of the player resets back to Classic instead of staying LockFirstPerson, like you said. There's an easy fix to this, assuming that you are scripting inside of a LocalScript somewhere inside of a GUI or StarterPack.
game.Players.LocalPlayer.Character.Humanoid.Died:connect(function() game.Players.LocalPlayer.CameraMode = "LockFirstPerson" end)