awesome work but why not store the info in a database and make this /text hello my text is here
something like this
local position_name = string.sub(event.command, string.len(cmd[1]) + 6);
if (string.len(text_name) >= 4) then
local position_value = split(tostring(event.player:getPosition()))
database:queryupdate("INSERT INTO text (text_name, position_x, position_y, position_z) VALUES ('" .. text_name .. "','" .. position_value[1] .. "','" .. position_value[2] .. "','" .. position_value[3] .. "');")
event.player:sendTextMessage("[#00ff00]text Set: " .. text_name .. " on X:".. position_value[1] .." Y:".. position_value[2] .." Z:".. position_value[2] .."")
create_cache()
end
