Hello, I am currently trying to make an admin nametag but there’s a problem.
For some odd reason whenever I add a string for some reason roblox does not know it’s a string and just leaves it black, not sure if this is just for me though.
I have tried to copy and paste the text into a new script but this doesn’t seem to work either.
If someone can help me out, it would be much appreciated.
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(char)
if player:IsInGroup(6200393) then
local AdminTag = Instance.new("BillboardGui")
end
end)
end)
Just made a new world, same problem.