dubleeyrblxx

Title Script -- Roblox

Jul 5th, 2020 (edited)
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.77 KB | None | 0 0
  1. -- Title script
  2. -- Make sure you make a BillBoardGui with a Text Label in it and put it in ServerStorage
  3. -- Put this script in ServerScriptService
  4. -- Made by Dubleey
  5.  
  6. local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui")
  7.  
  8. game.Players.PlayerAdded:Connect(function(player)
  9.    
  10.     player.CharacterAdded:Connect(function(character)
  11.        
  12.         if player.Name == "" then -- Put the players name you want to give the tag too in the ""
  13.             local clonedgui = billboardgui:Clone()
  14.             clonedgui.TextLabel.Text = "" -- Put the words that the tag will say in the ""
  15.             clonedgui.TextLabel.TextColor3 = Color3.fromRGB(0,0,0) -- Replace the 0,0,0 with the RGB numbers you want
  16.             clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
  17.         end
  18.        
  19.     end)
  20.    
  21.    
  22. end)
Add Comment
Please, Sign In to add comment