Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to attach billboard Gui to shirt?

Asked by 6 years ago

I got this billboard gui and i wanna attach it to my shirt any ideas?

01local X = 324 local Y = 157 local P = Instance.new('Part')
02P.Name = 'Bitmap'
03P.Anchored = true
04P.Transparency = 1
05P.Position = Vector3.new(0, 0, 0)
06P.Parent = game.Workspace
07 
08local B = Instance.new('BillboardGui')
09B.Name = 'Image'
10B.AlwaysOnTop = true
11B.Size = UDim2.new(0, X, 0, Y)
12B.Parent = P
13local F = Instance.new('Frame')
14F.Name = 'Holder'
15F.Size = UDim2.new(1, 0, 1, 0)
View all 45 lines...

Answer this question