How do i run scripts more times

i want run a script more times from another script.

if(touch.phase == TouchPhase.Began &&gui.HitTest(touch.position)){
    Test.Dosmtgh()* Time.deltaTime;
}

how to fix it

2 Answers

2

If you want to repeat calling a function you could use InvokeRepeating.

You should try to elaborate with your question.