▶ Property "Animator.EvaluationThrottled" is not currently enabled. (x7) - Studio
This is on mobile and with this code:
if mobile then
local GameSettings = UserSettings().GameSettings
local IsLocked = false
IsLocked = not IsLocked
GameSettings.RotationType = IsLocked and Enum.RotationType.CameraRelative or Enum.RotationType.MovementRelative
if humanoid then humanoid.CameraOffset = IsLocked and Vector3.new(3, 0, 0) or Vector3.zero end
else
player:FindFirstChild("OTSView").Value = true
end
I’m guessing it doesn’t give you the line of code this warning is from?
Anyways, it might be a problem with the humanoid’s animator, but i don’t know. I’ve never experienced this warning before. Try humanoid.Animator.EvaluationThrottled = false (or = IsLocked)