$scene = Scene_Skill.new($game_party.actors[0]) # initializes Scene_Skill with the first actor of the database (ID: 0)
@actor = $game_party.actors[0] # stores the first actor of the database (ID: 0) in @actor
$scene = Scene_Skill.new(@actor) # initializes Scene_Skill with the actor ID held by @actor