Hi community!
So recently I’ve been working on this script but I really need help with this script I made!
So basically, I need it to use a forloop, but it won’t work!
for count = 1, 1000000000000000000000000000 do
print(count
end
please help,
thanks!
@Deleted_User12
cookie
2
Looks like you forgot to close your print statement:
for count = 1, 1000000000000000000000000000 do
print(count)
end
This should fix it!
system
Closed
3
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.