Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- BillboardGui = Instance.new("BillboardGui")
- local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui")
- game.Players.PlayerAdded:Connect(function(player)
- player.CharacterAdded:Connect(function(char)
- if player.Name == "<DaVector212>" then
- game.Workspace:WaitForChild(player.Name)
- local clonedgui = billboardgui:Clone()
- clonedgui.Parent = game.Workspace[player.Name].Head
- clonedgui.TextLabel.Text = "Savage"
- clonedgui.TextLabel.TextColor3 = Color3.fromRGB(239, 184, 56)
- clonedgui.TextLabel.TextStrokeColor3 = Color3.fromRGB(0, 0, 0)
- clonedgui.TextLabel.TextStrokeTransparency = 0
- while true do
- clonedgui.TextLabel.TextColor3 = Color3.new(0,204,255)
- wait(.1)
- clonedgui.TextLabel.TextColor3 = Color3.new(0,255,0)
- wait(.1)
- clonedgui.TextLabel.TextColor3 = Color3.new(255,255,0)
- wait(.1)
- clonedgui.TextLabel.TextColor3 = Color3.new(255,0,0)
- wait(.1)
- clonedgui.TextLabel.TextColor3 = Color3.new(153,0,153)
- wait(.1)
- clonedgui.TextLabel.TextColor3= Color3.new(0,0,255)
- wait(.1)
- end
- end
- end)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement