Hi everyone! I'm using an old camera script for my game which is supposed to mimic old roblox, i have an FPS limiter aswell but it seems to cancel that out? I have the scripts below too.
local MaxFPS = 30
-- fps to mimic old roblox
while true do
local t0 = tick()
RunService.Heartbeat:Wait()
repeat until (t0 + 1/MaxFPS) < tick()
end```
camera script won't send unless in text document, so take that as you will