How do I fix this module script

  1. I want to fix this module script.

image

  1. 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