this don't show my icon i made over my head
01 | -- Made by Hyper_Tech |
02 |
03 | game.Players.PlayerAdded:connect(onPlayerRespawned) |
04 | function onPlayerRespawned(newPlayer) |
05 | wait( 1 ) |
06 | if newPlayer = = ( "littledamian55" ) then |
07 | gui = Instance.new( "BillboardGui" ) |
08 | gui.Parent = newPlayer.Character.Head |
09 | gui.Adornee = newPlayer.Character.Head |
10 | gui.Size = UDim 2. new( 3 , 0 , 2 , 0 ) |
11 | gui.StudsOffset = Vector 3. new( 0 , 2 , 0 ) |
12 | text = Instance.new( "ImageLabel" ) |
13 | text.Image = "http://www.roblox.com/asset/?id=156411593" |
14 | text.Size = UDim 2. new( 1.25 , 0 , 1.25 , 0 ) |
15 | text.Position = UDim 2. new(- 0.125 , 0 ,- 0.25 , 0 ) |
Because the background transparency is 1 witch means its invisible try 0.5, 0.6 etc....
Tell me if it works
You are defining the "onPlayerRespawned" function AFTER the connection. That means that on line 1 it's not set to anything, so it will error when you try to use it on connect(). You should actually just remove the entire line 3 - it wouldn't do anything except break even if you did define the function as I said above.
On line 6, you want to use if newPlayer.Name == "littledamian55" then
Well their is a few reasons this dosent work. First reason is because transparency is 1 try 0.6 or lower. And you are trying to put weapons in with the same billboard gui script. Instead try a Group rank billboard GUI. Try this script and put it in Workspace.
01 | local group = 0000 ---- Put the group ID here. |
02 | game.Players.PlayerAdded:connect( function (player) |
03 | player.CharacterAdded:connect( function (character) |
04 |
05 | if player:IsInGroup(group) then |
06 | local gui = Instance.new( "BillboardGui" , character.Head) |
07 | gui.Adornee = gui.Parent |
08 | local text = Instance.new( "TextLabel" , gui) |
09 | text.Size = UDim 2. new( 0.5 , 0 , 0.05 ) |
10 | gui.StudsOffSet = Vector 3. new( 0 , 4 , 0 ) |
11 | text.BackgroundColor 3 = Color 3. new( 0 / 255 , 0 / 255 , 0 / 255 ) |
12 | text.TextColor 3 = Color 3. new( 255 / 255 , 255 / 255 , 255 / 255 ) |
13 | text.Font = "SourceSansBold" |
14 | text.FontSize = "Size18" |
15 | text.Text = player.Name.. ": " ..player:GetRoleInGroup(group).. "" |
This should work.