I tried to use a table, that didn't work. There were no errors in the output so I'm confused.
01 | local health = game.CopperOre.Health.Value |
02 | local text = game.CopperOre.Health.Value |
03 | local CopperOre = game.workspace.CopperOre |
04 | local CopperGui = game.workspace.CopperOre.BillboardGui.TextLabel |
05 |
06 | local texthealth = { text, health, } |
07 |
08 | text = "health" |
09 | health = 10 |
10 | CopperGui.Text = (texthealth) |
1 | local health = game.CopperOre.Health.Value |
2 | local text = game.CopperOre.Health.Value |
3 | local CopperOre = game.workspace.CopperOre |
4 | local CopperGui = game.workspace.CopperOre.BillboardGui.TextLabel |
5 |
6 | text = "health" |
7 | health = 10 |
8 | CopperGui.Text = (text.. ":" ..health) |
this basically combine... yes :) cant explain :(
hope I helped lol