Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local billboardgui = game.GetService:("ServerStorage"):WaitForChild("BillboardGui")
- game.Players.PlayerAdded:Connect(function(player)
- player.CharacterAdded:Connect(function(character)
- if player.Name == "EnderWolfMage"
- local clonedgui = billboardgui:Clone()
- clonedgui.TextLabel.Text = "Spyro"
- clonedgui.TextLabel.TextColor3 = Color3.fromRGB(255,0,0)
- clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
- end
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement