How would I be able to fix this in my TitleModule?
Asked by
5 years ago Edited 5 years ago
So I have been making Chat Roles for YouTubers that want one on my Roblox game and I made a Chat role called VIP and when ever they buy vip they don't have there Chat Role I made them anymore, same with my Owner role since I own the VIP role I somehow get the VIP role instead of owner any answers would be help full heres my script
01 | local ms = game:GetService( "MarketplaceService" ) |
02 | local gs = game:GetService( "GamePassService" ) |
03 | local gc = game:GetService( "ReplicatedStorage" ):WaitForChild( "gamepassChecker" ) |
06 | [ 6285119 ] = { title = '????VIP????' , priority = 10 , color = Color 3. fromRGB( 255 , 255 , 0 ), color 0 = Color 3. fromRGB( 248 , 248 , 248 ), font = Enum.Font.SciFi } , |
10 | [ 606970529 ] = { title = '????SnuggleBunny????' , priority = 4 , color = Color 3. fromRGB( 255 , 0 , 191 ), color 0 = Color 3. fromRGB( 4 , 175 , 236 ), font = Enum.Font.SciFi } , |
11 | [ 232929746 ] = { title = '????UnicornKitty????' , priority = 4 , color = Color 3. fromRGB( 255 , 0 , 191 ), color 0 = Color 3. fromRGB( 255 , 176 , 0 ), font = Enum.Font.SciFi } , |
12 | [ 846331315 ] = { title = '????Snuggie????' , priority = 4 , color = Color 3. fromRGB( 255 , 0 , 191 ), color 0 = Color 3. fromRGB( 4 , 175 , 236 ), font = Enum.Font.SciFi } , |
13 | [ 146565263 ] = { title = '??Roxers??' , priority = 4 , color = Color 3. fromRGB( 170 , 0 , 170 ), color 0 = Color 3. fromRGB( 4 , 175 , 236 ), font = Enum.Font.SciFi } , |
14 | [ 78574122 ] = { title = 'Friends' , priority = 4 , color = Color 3. fromRGB( 255 , 0 , 191 ), color 0 = Color 3. fromRGB( 255 , 0 , 191 ), font = Enum.Font.SciFi } , |
15 | [ 166724867 ] = { title = 'Admin' , priority = 4 , color = Color 3. fromRGB( 151 , 114 , 165 ), color 0 = Color 3. fromRGB( 255 , 255 , 255 ), font = Enum.Font.SciFi } , |
16 | [ 6285119 ] = { title = '????OWNER????' , priority = 10 , color = Color 3. fromRGB( 0 , 255 , 255 ), color 0 = Color 3. fromRGB( 0 , 255 , 0 ), font = Enum.Font.SciFi } , |
17 | [ 71994295 ] = { title = 'Developer' , priority = 4 , color = Color 3. fromRGB( 151 , 114 , 165 ), color 0 = Color 3. fromRGB( 255 , 255 , 255 ), font = Enum.Font.SciFi } |
22 | function sendInfo(player) |
24 | local info = saves [ player.UserId ] |
29 | for key, value in pairs (gamepasses) do |
30 | if gc:InvokeServer(player, key) = = true and value.priority > priority then |
31 | print (player.Name .. ' owns gamepass ' .. tostring (key)) |
32 | info = { title = value.title, color = value.color, color 0 = value.color 0 , font = value.font } |
33 | priority = value.priority |
37 | for key, value in pairs (players) do |
38 | if player.UserId = = key and value.priority > priority then |
39 | info = { title = value.title, color = value.color, color 0 = value.color 0 , font = value.font } |
40 | priority = value.priority |
46 | info = { title = 'Guest' , priority = 4 , color = Color 3. fromRGB( 255 , 169 , 228 ), color 0 = Color 3. fromRGB( 255 , 255 , 255 ), font = Enum.Font.SciFi } |
49 | saves [ player.UserId ] = info |