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

Why is my Script Isn't showing my icon above me head?[CLOSED]

Asked by 11 years ago

this don't show my icon i made over my head

01-- Made by Hyper_Tech
02 
03game.Players.PlayerAdded:connect(onPlayerRespawned)
04function 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=UDim2.new(3,0,2,0)
11        gui.StudsOffset=Vector3.new(0,2,0)
12        text=Instance.new("ImageLabel")
13        text.Image = "http://www.roblox.com/asset/?id=156411593"
14        text.Size=UDim2.new(1.25,0,1.25,0)
15        text.Position=UDim2.new(-0.125,0,-0.25,0)
View all 33 lines...

3 answers

Log in to vote
0
Answered by
Mauvn 100
11 years ago

Because the background transparency is 1 witch means its invisible try 0.5, 0.6 etc....

Tell me if it works

0
ok littledamian55 0 — 11y
0
it dont wonk littledamian55 0 — 11y
Ad
Log in to vote
0
Answered by 11 years ago

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

0
still not working littledamian55 0 — 11y
0
What does the output say? RenderSettings 35 — 11y
0
where is that littledamian55 0 — 11y
Log in to vote
0
Answered by 11 years ago

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.

01local group = 0000  ---- Put the group ID here.
02game.Players.PlayerAdded:connect(function(player)
03player.CharacterAdded:connect(function(character)
04 
05if player:IsInGroup(group) then
06local gui = Instance.new("BillboardGui", character.Head)
07gui.Adornee = gui.Parent
08local text = Instance.new("TextLabel", gui)
09text.Size = UDim2.new(0.5, 0, 0.05)
10gui.StudsOffSet = Vector3.new(0, 4, 0)
11text.BackgroundColor3 = Color3.new(0/255, 0/255, 0/255)
12text.TextColor3 = Color3.new(255/255, 255/255, 255/255)
13text.Font = "SourceSansBold"
14text.FontSize = "Size18"
15text.Text = player.Name..": "..player:GetRoleInGroup(group)..""
View all 21 lines...

This should work.

0
i dont have a group. littledamian55 0 — 11y
0
what do you mean "Put weapon in the same billboard GUI." littledamian55 0 — 11y
0
Ok then your problem is (onPlayerRespawned) and try removeing your WepsGroups as well from your script and then test it. GoodkidMad 14 — 11y

Answer this question