SHOW:
|
|
- or go back to the newest paste.
1 | local Char = game.Players.LocalPlayer.Character | |
2 | local Head = Char.Head | |
3 | ||
4 | local naeeym2 = Instance.new("BillboardGui",Char) | |
5 | naeeym2.AlwaysOnTop = true | |
6 | naeeym2.Size = UDim2.new(5,35,2,35) | |
7 | naeeym2.StudsOffset = Vector3.new(0,2,0) | |
8 | naeeym2.Adornee = Head | |
9 | naeeym2.Name = "Name" | |
10 | ||
11 | local tecks2 = Instance.new("TextLabel",naeeym2) | |
12 | tecks2.BackgroundTransparency = 1 | |
13 | tecks2.TextScaled = true | |
14 | tecks2.BorderSizePixel = 0 | |
15 | tecks2.Text = "Weird Nova thingy" | |
16 | tecks2.Font = "Garamond" | |
17 | tecks2.TextSize = 30 | |
18 | tecks2.TextStrokeTransparency = 0 | |
19 | ||
20 | tecks2.TextStrokeColor3 = Color3.new(0, 0, 0) | |
21 | tecks2.Size = UDim2.new(1,0,0.5,0) | |
22 | tecks2.Parent = naeeym2 | |
23 | ||
24 | while true do | |
25 | r=math.random(255) | |
26 | g=math.random(255) | |
27 | b=math.random(255) | |
28 | tecks2.TextColor3 = Color3.fromRGB(r,g,b) | |
29 | wait(0.5) | |
30 | end |