I’m trying to fetch my characters health from a seperate script and use it to change a GUI text but I’m getting the Cannot convert int to string error.
//This is my script to set the GuiText
var hp = attributes.health;
guiText.text = hp;
//This is my attributes script to store health
static var health = 10;