RemoveFromQueue(id, index)
Remove a queue item at the specified index.
Parameters:
id(string): TV identifier.index(number): Queue position.
Returns:
removedItem(table?): Removed queue item ornilif not found.
Example:
local removedItem = exports['mrctv']:RemoveFromQueue("exampleTV", 2)
if removedItem then
print("Removed item:", removedItem)
else
print("No item found at the specified index")
end