Advertisement
krLuCiEzkr

Overhead Gui

Feb 7th, 2020
673
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. local billboardgui =
  2. game:GetService("ServerStorage"):WaitForChild("BillboardGui")
  3.  
  4. game.Players.PlayerAdded:Connect(function(player)
  5.  
  6. player.CharacterAdded:Connect(function(character)
  7.  
  8. if player.Name == "Enter you username Roblox here" then
  9. local clonedgui = billboardgui:Clone()
  10. clonedgui.TextLabel.Text = "Enter a TextLabel on BillBoardGui you write here"
  11. clonedgui.TextLabel.TextColor3 = Color3.fromRGB(TextLabel on BillBoardGui color here)
  12. clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
  13. end
  14.  
  15. end)
  16.  
  17.  
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement