so you have pretty much read the title,
I want to make it so that any value in ResolutionSizeX= is going to become 1920 every single number.
Heres my code:
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
My.Computer.FileSystem.WriteAllText("C:\Users\NarpZ\AppData\Local\FortniteGame\Saved\Config\WindowsClient\GameUserSettings.ini",
My.Computer.FileSystem.ReadAllText("C:\Users\NarpZ\AppData\Local\FortniteGame\Saved\Config\WindowsClient\GameUserSettings.ini").Replace("ResolutionSizeX=", "ResolutionSizeX=1920"),
False)
End Sub