I want it to like fix the camera every like let's say 5 minutes. How would I start?
To do this the normal way would be to just reset the character but I'm going to do it differently as the character reset might be annoying to players.
This code is for a LocalScript
fixtime = 60*5 -- 5 minutes in seconds. (Just change the 5 to how many minutes you want in between camera fixes) cam = workspace.CurrentCamera while true do wait(fixtime) -- Wait set time cam:Destroy() -- Remove old camera wait(0.1) -- Camera gets replaced automatically by the game cam.CameraSubject = game.Players.LocalPlayer.Character.Humanoid -- Reset the settings of the camera cam.CameraType = "Custom" end
I tried to explain some what the code does but you can remove it if you want