of     1   

adoman
#181467715Monday, January 11, 2016 2:13 AM GMT

Normally it goes down a line everytime you print() How can this print() work on the same line SO Instead of this while true do print("hello") wait(1) end output - hello hello hello THIS: while true do print("hello") wait(1) end output - hellohellohello
phasify
#181467915Monday, January 11, 2016 2:16 AM GMT

aer you asking a question or is this a tutorial If you forum on ATR, join my group: http://www.roblox.com/My/Groups.aspx?gid=2696037 ;)
adoman
#181467939Monday, January 11, 2016 2:17 AM GMT

Stop please no spam, Just want to know how to do this..
Nemraz
#181467984Monday, January 11, 2016 2:17 AM GMT

in the context of what, the output? oh i see, you have to specify a certain variable or value or something itself that once the script is fully done, takes that info and prints it out.
Nemraz
#181468025Monday, January 11, 2016 2:18 AM GMT

adoman
#181468102Monday, January 11, 2016 2:19 AM GMT

bump
adoman
#181468153Monday, January 11, 2016 2:20 AM GMT

No, like println where the output bar shows everything on the Same line
LeztexTV
#181468195Monday, January 11, 2016 2:20 AM GMT

What are you asking? Just say print("hellohellohello") ...
bobbowolf
#181468680Monday, January 11, 2016 2:28 AM GMT

Comic Sans, that's how From, your local bonehead
adoman
#181469924Monday, January 11, 2016 2:47 AM GMT

no on a loop..
bobbowolf
#181469999Monday, January 11, 2016 2:48 AM GMT

well i dont know #code Use comic sans #code you know this is just a test of the code thing k?
AgnosticAnon
#181470073Monday, January 11, 2016 2:49 AM GMT

Nemraz is correct. What I suppose is occurring is that the interpreter is comprehending the line as ending via the "\0" escape character, which is the null zero(Also known informally as the "string terminator") in C. Given that this would seem to prevent the use of escape sequences, you will need to concatenate each value onto a variable, as shown below: local s = ""; --I used an empty variable so that "Hello" will stack individual. The semicolons are a habit. while wait() do --Infinite loop. Self Explanatory. s = s.."hello"; print(s); end Hopefully that helped you.
adoman
#181470426Monday, January 11, 2016 2:55 AM GMT

answered : io.write
AgnosticAnon
#181470554Monday, January 11, 2016 2:56 AM GMT

"answered : io.write" The standard I/O library is disabled inside ROBLOX.
Dan_Aesthetic
#181471068Monday, January 11, 2016 3:03 AM GMT

Scripting Helpers #code ("𝗧𝗮𝗸𝗲 𝗮 𝗹𝗲𝗮𝗸 𝗳𝗿𝗼𝗺 𝘁𝗵𝗲 𝗼𝘁𝗵𝗲𝗿 𝘀𝗶𝗱𝗲!")
AgnosticAnon
#181471163Monday, January 11, 2016 3:05 AM GMT

"Scripting Helpers" Game-Design now. Scripting-Helpers was dissolved. Although most users deliberately post their questions inside Scripters.
BuildIntoGames
#181471224Monday, January 11, 2016 3:05 AM GMT

Impossible to do, unless you print the results afterwards

    of     1