operatorControl() is only called once. If you want to actually do something, you have to make a loop.
Code:
public void tele()
{
frisbeeIndexer.set(1.0);
}
//Don't modify the following method
public void operatorControl()
{
while (isOperatorControl())
{
tele();
Timer.delay(3/1000); //this prevents the cRIO from becoming overloaded, especially if tele() is empty
}
}
Having tele() as a separate method keeps things clearer and keeps inexperienced programmers from messing with something they shouldn't, but you're more than welcome to have everything in operatorControl().