How would i save text in a VBScript code?
set objFile= CreateObject ("Scripting.FileSystemObject")
Set textfile = objFile.CreateTextFile("Results.txt")
but i dont know how i would save text to that file. any help?

PDF Downloads
As a Pro member, you will gain access to download any Instructable in the PDF format.
You also have the ability to customize your PDF download.
Dim nm, em, FSO, oFile
nm = InputBox("Please enter the 1st line:", "Value for ""nm""")
em = InputBox("Please enter the 2nd line:", "Value for ""em""")
Set FSO = CreateObject("Scripting.FileSystemObject")
Set oFile = FSO.OpenTextFile("Results.txt", 2, True)
oFile.Write(nm & vbCrLf & em)
oFile.Close
Set oFile = Nothing
Set FSO = Nothing