make text have same value as an object

Hey, is it possible to make a text property have the same value as a property on an object.

Its easy to make so everytime the value increases on the object it also increases on the text.

But what i have a random numer on the object and then i want the text property to get the same value. how?

Ty in advance!

Sry for bad english :stuck_out_tongue:

nvm i solved it

I have been wondering the same. Can you please explain how did you solve it?

Property actuator - Copy.

Or python:

text_obj['Text'] = str(some_other_object['prop'])

ye exalcy how hreidmarr explained

It should look like this

Great!
Thanks!