-
-
Notifications
You must be signed in to change notification settings - Fork 5
ShowData
Anthony Headley edited this page Apr 19, 2020
·
2 revisions
Returns the ShowData Object. This object can be used to traverse the hierarchy from the root of ShowData()
Name | Description | Optional |
---|
object: ShowData ...
local profileName = ShowData().UserProfiles[1].name;
Echo("User 1 is called: %s", profileName) -- User 1 is called: Default
local wheelMode = ShowData().UserProfiles:Find("Default").wheelmode
Echo("The Default users wheelmode is %s", wheelMode) --The Default users wheelmode additive