Advertisement
ShadyMoonStudios

owner tag script

Mar 17th, 2023 (edited)
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. script.Parent = game.ServerScriptService
  2. local billboard = script.BillboardGui
  3.  
  4. local playername = "Greylovesdogs1"
  5. local redV = 48
  6. local greenV = 213
  7. local blueV = 200
  8. local text = "Owner"
  9.  
  10. game.Players.PlayerAdded:Connect(function(player)
  11. player.CharacterAdded:Connect(function(char)
  12. if player.Name == playername then
  13. local newgui = billboard:Clone()
  14. newgui.Parent = char.Head
  15. newgui.TextLabel.TextColor3 = Color3.fromRGB(redV, greenV, blueV)
  16. newgui.TextLabel.Text = text
  17. end
  18. end)
  19. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement