-
I want to fix this module script.
-
![image](//devforum-uploads.s3.dualstack.us-east-2.amazonaws.com/uploads/original/4X/b/7/a/b7a069a9a05d5f15842c74a1e189780b33497216.png)
- I tried looking for some things on youtube but I couldnt find anything
local Settings = {
{
Label = "[SBD] - Sublime Development", --Name you want for the group
Color = Color3.fromRGB(255, 255, 255), --Text colour
groupId = 15518530 --Group id
DevId = 255
VipRank = 255
},
{
Label = "Name",
Color = Color3.fromRGB(255, 255, 255),
groupId = 1234
DevId = 255,
VipRank = 255
},
return Settings
You missed a few commas after the variables.
groupId and DevId in the first and groupId in the second.
Hello, you were missing a few dots and causing a syntax error with the improper commas.
local Settings = {
{
Label = "[SBD] - Sublime Development", --Name you want for the group
Color = Color3.fromRGB(255, 255, 255), --Text colour
groupId = 15518530, --Group id
DevId = 255,
VipRank = 255,
},
{
Label = "Name",
Color = Color3.fromRGB(255, 255, 255),
groupId = 1234,
DevId = 255,
VipRank = 255,
},
}
return Settings
It was also improperly formatted, which caused the return function to error.
2 Likes
it worked thanks a lot for the help!
My pleasure to help, if you have any further questions, make sure to make another topic.
1 Like