If you want to, I think it would be cool to make this as a Cookie Tech Tutorial, because many people would like it.
2 Likes
May you please view this post?
1 Like
Certainly can & also lot’s of people have made a nametag tutorial, so it wouldn’t be original, appreciate the suggestion though! >:D
Could you please mark me solution too?
This is the only one that is rainbow besides RoScripters, but that one barely works.
final script:
local TweenService = game:GetService("TweenService")
local MarketPlaceService = game:GetService("MarketplaceService")
local VipPlayers = {"YourSnowingDev", "B00PUP"} -- Any person's name put here will get the gamepass for free
local gamePassId = 10525616 --REPLACE THIS WITH YOUR GAMEPASSID
local groupID = 12212248 --REPLACE THIS WITH YOUR GROUPID
local function FindPlayer(Plr)
for Num, Pler in pairs(VipPlayers) do
if Pler == Plr then
return true
end
end
end
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function()
local groupRank = player:GetRoleInGroup(groupID)
local clone = script.Rank:Clone()
clone.Parent = game.Workspace:WaitForChild(player.Name).Head
clone.Frame.Name1.Text = player.Name
clone.Frame.Rank.Text = groupRank
if MarketPlaceService:UserOwnsGamePassAsync(player.UserId, gamePassId) or FindPlayer(player.Name) then
while true do
if MarketPlaceService:UserOwnsGamePassAsync(player.UserId, gamePassId) or FindPlayer(player.Name) then
local Rainbow = clone.Frame.Name1
local Color = Color3.new(math.random(), math.random(), math.random())
local ColorTween = TweenService:Create(Rainbow, TweenInfo.new(3), {TextColor3 = Color})
ColorTween:Play()
wait(3)
end
end
end
end)
end)
the other one didn’t work unless you owned the gamepass, and was very buggy. The fixed one is above. You can make a tutorial with that script above.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.