I have a script as simple as
using UnityEngine;
using UnityEngine.UI;
public class textchanger : MonoBehaviour
{
public Text text;
void Start()
{
text.text = "test";
}
If I make precisely the same in Script Graph it runs fine in Editor but is not executed on Android devices.
Unity 2021.3.15f1 lts
Visual Scripting 1,7,8
Android SDK