Is both the track file and the track image inside a folder named ā(Your Track Name)ā, and is that folder inside Documents/Automation/Tracks? That could be why itās not appearing.
Actually, does the track.lua file include a line which reads:
Track = {
Name = "Suzy Track v2",
--Track Image Info
--Track Image must be 1280 x 720
--Start Position on the Image x,y from Top Left
Start = { 945, 95 },
If track name is not completed (or if it shares a name with another track, eg. Name = āExample Trackā), the name will not show up in the list at all, regardless of the name of the folder it is in. This is where the game reads the track name for the list. This is probably where your problem is. Check the name listed inside the lua file.
EDIT:
Also, I see your attachment is named track2.lua, which also will not work. After inspection of your lua file, not sure how the game will deal with special characters in the text string:
Track = {
Name = "1/4 Mile in the East track",
--Track Image Info
--Track Image must be 1280 x 720
--Start Position on the Image x,y from Top Left
Start = { 430, 120 },
Either you named it in a foreign character set which didnāt translate into my English character set, or your trackās name may be invalid.
The fact that it is named ātrack2.luaā is most likely the problem. If it is named this in the actual track folder, the track will not show up. It must be named ātrack.luaā.
Youāre doing wrong for some points.
First, Your track image file MUST BE .PNG format, not .jpg, .gif or any other formats.
Second, your track image size is wrong, it must be resized to 1280 x 720 pixels.
Finally both your lua file and image file should be named āTrack.luaā and āTrack.pngā anything else wonāt work.
Try fix these problems, and Iām pretty sure your track will work!