Advertisement
End_Wolf

Untitled

Jul 9th, 2018
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1.  
  2. local billboardgui = game.GetService:("ServerStorage"):WaitForChild("BillboardGui")
  3.  
  4. game.Players.PlayerAdded:Connect(function(player)
  5. player.CharacterAdded:Connect(function(character)
  6. if player.Name == "EnderWolfMage"
  7. local clonedgui = billboardgui:Clone()
  8. clonedgui.TextLabel.Text = "Spyro"
  9. clonedgui.TextLabel.TextColor3 = Color3.fromRGB(255,0,0)
  10. clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
  11. end
  12. end)
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement