#Nametag title system

1 messages · Page 1 of 1 (latest)

agile summit
#

scale of my billboard gui is changing scale when zooming in and out regardless of picking scale or offset udim sizes

local billboard = Instance.new("BillboardGui")
billboard.Name = "Nametag"
billboard.Size = UDim2.new(0, 320, 0, 240) 
billboard.SizeOffset = Vector2.new(0, 0)   
billboard.StudsOffset = Vector3.new(0, 4, 0)
billboard.AlwaysOnTop = true
billboard.MaxDistance = 120
billboard.ResetOnSpawn = false
billboard.Parent = head
billboard.Adornee = head

what im currently rocking
variable: billboard.Size = UDim2.new(0, 320, 0, 240)

worthy pine
#

billboard guis change size dynamically with the screens movement to match the billboard.size given

agile summit
inner orbit
agile summit
inner orbit
#

inside the billboard gui

agile summit
#

this is just some of what im rocking:

local billboard = Instance.new("BillboardGui")
billboard.Name = "Nametag"
billboard.Size = UDim2.new(0, 0, 0, 0) 
billboard.SizeOffset = Vector2.new(0, 0)   
billboard.StudsOffset = Vector3.new(0, 4, 0)
billboard.AlwaysOnTop = true
billboard.MaxDistance = 120
billboard.ResetOnSpawn = false
billboard.Parent = head
billboard.Adornee = head


local holder = Instance.new("Frame")
holder.Size = UDim2.new(1, 0, 1, 0)
holder.BackgroundTransparency = 1
holder.Name = "Holder"
holder.Parent = billboard


local logo = Instance.new("ImageLabel")
logo.Name = "Logo"
logo.Size = UDim2.new(0, 120, 0, 120)              
logo.Position = UDim2.new(0.5, 0, 0, 55)            
logo.AnchorPoint = Vector2.new(0.5, 0)
logo.BackgroundTransparency = 1
logo.ScaleType = Enum.ScaleType.Fit
logo.Visible = false
logo.Image = ""
logo.Parent = holder
fossil geyserBOT
#

studio** You are now Level 2! **studio

agile summit
#

There is a text label, there's 3

#

I don't have it right now im on phone

inner orbit
#

why not just do it in a screengui and turn visible on/off

agile summit
#

I was recommended a billboardgui

stuck crypt
agile summit
agile summit
stuck crypt