How would I make this print Animation(Random number) no spaces? Right now it prints Animation (space) (Random number). Random number = local randomnumber = math.random(1, 2)
Just do:
print("Animation" .. randomnumber)
Commas add a space between the parameters, instead you can use two dots, but I think one works fine as long as you keep a space between the parameters.