Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Simple Quest - How do I get for loop to print correctly?

Asked by 7 years ago

for x = 1,500 do print("jij") end

This prints out jij then some strange character, when i copy it and paste it, it gives me

jij (x500)

How do i get plain old: jij jij jij etc... thanks

1 answer

Log in to vote
1
Answered by 7 years ago
Edited 7 years ago

This is a ROBLOX update that helps prevent spam in the output. The number after the jij in output is how many times it printed that specific message.

If you want, you can concatenate x to the string so it's a different string:

for x = 1,500 do 
    print("jij -"..i) 
end
0
thank you for such quick response - this is a great site! micy852 0 — 7y
Ad

Answer this question