Hey. Is there a way to have a text or bar aura using TSU only show one text area in total, instead of one pr. clone?
I'm trying to get a WA to track and show the amount of imps i have summoned, but it ends up showing the text for each clone, which often briefly means several numbers ontop of each other.
Currently i've made a function in aura_env which takes the allstates table as argument, and then i call that at the end of of the trigger:
local imps = 0
for k, state in pairs(states) do
if state.demon == "Imp" then
imps = imps + 1
end
end
aura_env.ActiveImps = imps
end```
and then my text area shows `aura_env.ActiveImps`, but as you can see the screenshot, it doesn't look very elegant 😄