We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, do you know how to add new Values while in a string?
I have: for i, v in ipairs(Config.Fonts) do fontslider:AddValue(Config.Fonts[i].value, Config.Fonts[i].label) end
for i, v in ipairs(Config.Fonts) do fontslider:AddValue(Config.Fonts[i].value, Config.Fonts[i].label) end
I have no errors, but the values don't added.
The Config:
`Config = {}
Config.Fonts = { [1] = {value = {graffiti1}, label = 'Next Custom'}, [2] = {value = {graffiti2}, label = 'Dripping Marker'}, [3] = {value = {graffiti3}, label = 'Docallisme'}, [4] = {value = {graffiti4}, label = 'Fat Wandals'}, [5] = {value = {graffiti5}, label = 'Sister Spray'}, [6] = {value = {graffiti6}, label = 'Pricedown'}, [7] = {value = {graffiti7}, label = 'Chalet'} }`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
do you know how to add new Values while in a string?
I have:
for i, v in ipairs(Config.Fonts) do fontslider:AddValue(Config.Fonts[i].value, Config.Fonts[i].label) end
I have no errors, but the values don't added.
The Config:
`Config = {}
Config.Fonts = {
[1] = {value = {graffiti1}, label = 'Next Custom'},
[2] = {value = {graffiti2}, label = 'Dripping Marker'},
[3] = {value = {graffiti3}, label = 'Docallisme'},
[4] = {value = {graffiti4}, label = 'Fat Wandals'},
[5] = {value = {graffiti5}, label = 'Sister Spray'},
[6] = {value = {graffiti6}, label = 'Pricedown'},
[7] = {value = {graffiti7}, label = 'Chalet'}
}`
The text was updated successfully, but these errors were encountered: