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

how to make a rainbow Game Pass chat name script?

Asked by 4 years ago
Edited 4 years ago

game.Players.PlayerAdded:Connect(function(player)

01local tags = Instance.new("Folder", player)
02 
03tags.Name = "Tags"
04 
05if (service:UserOwnsGamePassAsync(player.UserId, gamepassId)) then
06 
07    local newTag = Instance.new("IntValue", tags)
08 
09    newTag.Name = "VIP"
10 
11    local chatColor = Instance.new("Color3Value", newTag)
12 
13    chatColor.Name = "ChatColor"
14 
15    chatColor.Value = BrickColor.new("Gold").Color
View all 23 lines...

end)

this is what i have done but it does not work can someone help me make a rainbow game pass chat name script

0
when game runs, there is a module created in server script service, its inside chatservicerunner (chatservicerunner module only shows when you start the game) called Chatservice. You can use that and use :SetExtraData() on it and put your preferences, Here is a video for more explanation https://www.youtube.com/watch?v=eP42X2NlJ0M kepiblop 124 — 4y

Answer this question