Advertisement
filipaopastebins2134

Sonic's nametag v1.0

Jan 18th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui")
  2.  
  3. game.Players.PlayerAdded:Connect(function(player)
  4.  
  5. player.CharacterAdded:Connect(function(Character)
  6.  
  7. if player.Name == "filipaogamer345" then
  8. local clonedgui = billboardgui:Clone()
  9. clonedgui.TextLabel.Text = "Sonic"
  10. clonedgui.TextLabel.TextColor3 = Color3.fromRGB(13, 105, 172)
  11. clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
  12. end
  13. end)
  14.  
  15.  
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement