Hey, quick question, how am I able to teleport with both location + rotation? This is the script that I have to teleport the car without rotation. It works great. --------------------------------------------------------- local function teleportPlayer(data) local vehicleName = data.subjectName if data.event == 'enter' and data.subjectName ~= 'scenario_player0' then TorqueScript.eval(vehicleName..'.position = "42.6746483 109.390358 720.762146";') end end return teleportPlayer ------------------------------------------------------- Though, I'm trying to get it to rotate aswell, what would I add to do this?