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