Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Title script
- -- Make sure you make a BillBoardGui with a Text Label in it and put it in ServerStorage
- -- Put this script in ServerScriptService
- -- Made by Dubleey
- local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui")
- game.Players.PlayerAdded:Connect(function(player)
- player.CharacterAdded:Connect(function(character)
- if player.Name == "" then -- Put the players name you want to give the tag too in the ""
- local clonedgui = billboardgui:Clone()
- clonedgui.TextLabel.Text = "" -- Put the words that the tag will say in the ""
- clonedgui.TextLabel.TextColor3 = Color3.fromRGB(0,0,0) -- Replace the 0,0,0 with the RGB numbers you want
- clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
- end
- end)
- end)
Add Comment
Please, Sign In to add comment