Just put them inside the folder where TPT is, and then open the console (~) and type dofile("filename.lua")
Also, I think the download links are broken.
Tlines(startx, starty, "line 1", "line 2", "line 3", "line 4", ...)
startx: The amount of pixels from the left edge
starty: The amount of pixels from the top edge.
-- Get these values by pressing D and then looking at the X,Y values on the right edge of the stage.
lines: Every line of text.
-- NOTES:
-- The function will fail if there are too many lines so they will run off the screen.
-- Every line needs to be inside quotes (single or double, quote marks inside strings will need to be escaped like \" or \' )
-- Every line will need to be separated by a comma.
-- Every line will have an 1px gap in between each other.
-- The function automatically uses the last used element. To change that, use the regular T function like this:
-- T(x, y, "text", "bhol") -- This makes bhol the used element.