What is ipairs and pairs? Example please
What is an argument? Example please
Is it laggier to make an animation by script then by using animation editor?
What is the difference between the two connection lines, is one faster?
Do I use "wait for data ready" when I want the script to run after a player is loaded
Ill do my best to answer your questions
ipairs is used to print values accordingly to their position in a table. for example:
table = {"a","b","c"} for i,v ipairs(table)do print(i,v) end
output: * 1 a 2 b 3 c *
Arguments are similar to variables for example
print("This is the argumet!")
The animation editor is probably a better way to go since code has a chance of messing up
This entirely depends on what you're trying to do.