Title explains it all. But I want to know about the difference between ..
and %s
.
print("My name is" .. player.Name) -- AridFights1
print(("My name is %s"):format(player.Name)) -- AridFights1
I want to know which one of them works better, and if they have a difference or not. Thanks!
- Arid