Is there a easy solution to spectate a player?
I tried with:
// client-side
/* event goes here to call the function */
let cam = mp.cameras.new('values go here') // example, cam gets created
cam.attachTo(player, 10.0, 0.0, 10.0, true); <- gives me "expected Number" as client notification
cam.setActive(true);
// server-side
/* event goes here */
player.call("spectate", spectatePlayer);
I already tried something like mp.game.cam.attachCamToEntity but it's not a function
Need help with this