I wanted to try and make my camera always follow an object, so that when I move it my camera follows along. It only seems to work once though and then it stops working?Code:counterGUID, counter = "e2b243", {} camParams = {} function onload() counter = getObjectFromGUID(counterGUID) camParams.object = counter camParams.offset = nil end function update() if Player["Blue"].seated == true then Player["Blue"]:attachCameraToObject(camParams) end end