Hey guys,
I’ve been a scripter for nearly 2 months.
I tried to store basic info of a client when they join my experience.
local userId = player.UserId | |
---|---|
local name = player.Name | |
local accountage = player.AccountAge |
Is there a way to store all this in a table from a stringValue that I created called “account_info” because when i try to i get the error “string expected” and not a table, when I obviously like this:
client_info.Value = {
{"Welcome back: " , name},
{"you're userID: ", userId},
{your account is: " , accountage}
}
If you guys have a soliution, I’m happy to hear it.
Thanks.