What's the difference in the usage of .. and %s?

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
1 Like

Thanks for the help! Looks like I didn’t look deeper enough!