Hi guys, my camera is fixed in place when I play my game. The game has no scripts, why is this happening?
https://gyazo.com/5aa8ab086fe57c0f9d07c2fc91ff2947
Thanks.
Where is the spawn located?
Is the a place for the player to stand?
Hope this helped.
Are you pressing run or play?
chars
I am pressing play. Tried play here as well.
Is everything anchored?
StopPuttingCharLimits
Ok Nothing looks different.
Hmm, ok. How do I do this then?
It still didn’t bond to the humanoid unfortunately. What should I do now?
Didn’t work unfortunately, thanks for your help though!
This usually happens because of lag, but you could try to set the CameraSubject manually by putting a LocalScript in StarterPlayer > StarterCharacterScripts:
wait(1/60)
local Cam = workspace.CurrentCamera
local Humanoid = script.Parent:WaitForChild("Humanoid")
if Humanoid then
Cam.CameraSubject = Humanoid
Cam.CameraType = Enum.CameraType.Custom
end
If your simply trying to make the camera be on the player, Simply set the CameraSubject property to the Players Humanoid and change the CameraType to Custom
Just wanna point out that the minimum wait time is 0.03 seconds so 1/60 is Redundant (Ik this is just a minor thing)
Yea, I know about that, is just a strange habit
Yes, my game is very laggy, so that is probably why.