Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

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

01local ms = game:GetService("MarketplaceService")
02local gs = game:GetService("GamePassService")
03local gc = game:GetService("ReplicatedStorage"):WaitForChild("gamepassChecker")
04 
05local gamepasses = {
06    [6285119] = {title = '????VIP????', priority = 10, color = Color3.fromRGB(255, 255, 0), color0 = Color3.fromRGB(248, 248, 248), font = Enum.Font.SciFi},
07}
08 
09local players = {
10    [606970529] = {title = '????SnuggleBunny????', priority = 4, color = Color3.fromRGB(255, 0, 191), color0 = Color3.fromRGB(4, 175, 236), font = Enum.Font.SciFi},
11    [232929746] = {title = '????UnicornKitty????', priority = 4, color = Color3.fromRGB(255, 0, 191), color0 = Color3.fromRGB(255, 176, 0), font = Enum.Font.SciFi},
12    [846331315] = {title = '????Snuggie????', priority = 4, color = Color3.fromRGB(255, 0, 191), color0 = Color3.fromRGB(4, 175, 236), font = Enum.Font.SciFi},
13    [146565263] = {title = '??Roxers??', priority = 4, color = Color3.fromRGB(170, 0, 170), color0 = Color3.fromRGB(4, 175, 236), font = Enum.Font.SciFi},
14    [78574122] = {title = 'Friends', priority = 4, color = Color3.fromRGB(255, 0, 191), color0 = Color3.fromRGB(255, 0, 191), font = Enum.Font.SciFi},
15    [166724867] = {title = 'Admin', priority = 4, color = Color3.fromRGB(151, 114, 165), color0 = Color3.fromRGB(255, 255, 255), font = Enum.Font.SciFi},
View all 60 lines...
0
Also those ? are emojis that didn't post here DuckyRobIox 280 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago

Alright so how you'd do this is fairly simple. Just have an if statement when checking if the player has vip, check if their userid is found in the players table, and if not, THEN give them the vip tag. Easy!

0
Lol Sapppower 17 — 5y
Ad

Answer this question