You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Keep it simple and clear!
Im trying to make a sytem where it gives a tag to dev and premium -
What is the issue? Include screenshots / videos if possible!
everything works great except the dev tag and premium tag clone to the dev with premium and i want the dev to have priority -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
yes i look on devforum and devhub but i cant find
After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!
here is the current code
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(char)
if player.MembershipType == Enum.MembershipType.Premium then
if not player.UserId == 1578730070 or player.UserId == 196190193 or player.Name == "Creeperman16487" then
local clone = script.premium:Clone()
clone.Parent = char.Head
end
end
if player.UserId == 1578730070 or player.UserId == 196190193 or player.Name == "Creeperman16487" then
local clone = script.dev:Clone()
clone.Parent = char.Head
end
end)
end)