|
| 25 Oct 2014 02:06 PM |
| How do I put an intvalues value onto a text label? |
|
|
| Report Abuse |
|
|
|
| 25 Oct 2014 02:08 PM |
local TextLabel = blah local IntValue = blah
TextLabel.Text = tostring(IntValue.Value) |
|
|
| Report Abuse |
|
|
|
| 25 Oct 2014 02:09 PM |
intvalue = script.Parent script.Parent.Parent.Text = intvalue.Value
--textlabel ----script ------intvalie |
|
|
| Report Abuse |
|
|
| |
|
vividtrip
|
  |
| Joined: 14 Oct 2008 |
| Total Posts: 2890 |
|
|
| 25 Oct 2014 02:10 PM |
The IntValue class has a property named 'Value'. For example. I could do 'print(workspace.IntValue.Value) and it would print the value. If you were to put it onto a textlabel, you'd probably do something along the lines of.
'(TextLabel).Text = (IntValue).Value'.
Becuz I Used Corrects Grammer |
|
|
| Report Abuse |
|
|
vividtrip
|
  |
| Joined: 14 Oct 2008 |
| Total Posts: 2890 |
|
|
| 25 Oct 2014 02:11 PM |
Darn it, I was late.
Becuz I Used Corrects Grammer |
|
|
| Report Abuse |
|
|
|
| 25 Oct 2014 02:12 PM |
I meant intvalue = script.Value script.Parent.Text = intvalue.Value |
|
|
| Report Abuse |
|
|