It is possible to make a script that can run 2 thing in one line?
Example: I want to print 2 thing in one line
print("Hi") print("Hi2")
What should i use or do?
It is possible to make a script that can run 2 thing in one line?
Example: I want to print 2 thing in one line
print("Hi") print("Hi2")
What should i use or do?
print("Hi", "Hi2")
or
print("Hi " .. "Hi2")
As for running 2 things in one line, you can separate lines with ;
I’m not 100% sure if that’s what you were asking