-- LUA Script - precede every function and global member with lowercase name of script + '_main' -- Default script - does nothing. function camera_control_init(e) end local mod = math.modf function camera_control_main(e) if g_KeyPressE == 1 then PositionCamera( 0, g_PlayerPosX, g_PlayerPosY + 200, g_PlayerPosZ) end Prompt(mod(g_PlayerPosX) .. ", " .. mod(g_PlayerPosY) .. ", " .. mod(g_PlayerPosZ) ) end