GTA V NativesblipBlip::scaleOn this pageBlip::scaleThis function is used to change the blip scale. Syntax ```typescript blip.scale = 2; ``` Example This will change a blip scale to 2. ```js let createdBlip = mp.blips.new(1, new mp.Vector3(0, 0, 0)); createdBlip.scale = 2; ``` See Also