So , im new to scripting and i have a problem , i dont know how to script an overhead gui , i alreadi did the bilboard thing , and created the gui , but i cant show it off on my friend head , can someone send a script? it would be very useful
If you want a tutorial on how to do it, I know that AlvinBlox has made a good tutorial on making an overhead GUI, also explaining the process in what he has went through. Here is the link:
http://www.youtube.com/watch?v=TfeWj3zGAkM
One thing that this isn't is a request site as people have already said, you have to at least try to make the script first before you come here and request for help.
hi bro
now, you can unserstand it?
game.Players.PlayerAdded:Connect(function(plr) --checks a player join plr.CharacterAdded:connect(function(char) --checks the player got a character (the player is spawned) local a = Instance.new("BillboardGui", char.Head) --makes a new "background" to the palyer's head local aw = Instance.new("TextLabel", a) --makes the Label what can be seen overhead aw.Text = plr.Name --renames the label the the player's name aw.Size = UDim2.new(0, 200, 0, 50) --resizes the label cuz the basic size = 0 a.Size = UDim2.new(0, 200, 0, 50) --resizes the "background" cuz the basic size = 0 a.StudsOffset = Vector3.new(0, 5, 0) --repositions the label aw.TextScaled = true --repositions the label's text end) end)
just say me what the gui says your question not holds what it says
Closed as Not Constructive by User#5423
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?