Advertisement
End_Wolf

Untitled

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