GetValueString (Method): Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>ArceusInator
Redirect to GetValueString (Function)
>JulienDethurens
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
#REDIRECT [[GetValueString (Function)]]
{{Locked}}
 
<onlyinclude>{{Method
|name        = GetValueString
|returns    = {{type|string}}
|description = Returns the {{type|instance=StatsItem}}'s value.  Its value cannot be read unless this function is used.
|object      = StatsItem
|protected  = yes
}}</onlyinclude>
 
{{clear floats}}
 
{{Example|
If using the [[Command Bar]] or a {{type|instance=CoreScript}}...
<pre>
print(game.Stats.Workspace.World.Joints:GetValueString()) --> 7
</pre>
If using a {{type|instance=Script}} or {{type|instance=LocalScript}}...
<pre>
print(game.Stats.Workspace.World.Joints:GetValueString()) --> s GetValueString
</pre>
}}
 
[[Category:Methods]]

Latest revision as of 03:12, 15 February 2012

Protected:This item is protected. Attempting to use it in a Script or LocalScript will cause an error.
GetValueString( )
Returns string
Description: Returns the StatsItem's value. Its value cannot be read unless this function is used.
Member of: StatsItem


Example

If using the Command Bar or a CoreScript...

print(game.Stats.Workspace.World.Joints:GetValueString()) --> 7

If using a Script or LocalScript...

print(game.Stats.Workspace.World.Joints:GetValueString()) --> s GetValueString