Sufxxor
|
  |
| Joined: 19 Aug 2013 |
| Total Posts: 211 |
|
|
| 28 Nov 2015 04:42 PM |
I have no idea what to do i'm trying to make a gui over a players head that says there name and follows them but it dosnt work and there are no tutorials that i have found can someone help me?
-Sufxxor |
|
|
| Report Abuse |
|
|
morash
|
  |
| Joined: 22 May 2010 |
| Total Posts: 5834 |
|
| |
|
Sufxxor
|
  |
| Joined: 19 Aug 2013 |
| Total Posts: 211 |
|
|
| 28 Nov 2015 04:45 PM |
are there any scripts involved?
-Sufxxor |
|
|
| Report Abuse |
|
|
morash
|
  |
| Joined: 22 May 2010 |
| Total Posts: 5834 |
|
|
| 28 Nov 2015 04:47 PM |
| Just one that replicates the GUI to the character and applies the correct name to the text, but nothing other than that. |
|
|
| Report Abuse |
|
|
Sufxxor
|
  |
| Joined: 19 Aug 2013 |
| Total Posts: 211 |
|
|
| 28 Nov 2015 04:50 PM |
| on a scale of 1/10 how hard is it because to be honest i'm just starting out like i started 1 month ago and i have just been reading roblox wiki |
|
|
| Report Abuse |
|
|
morash
|
  |
| Joined: 22 May 2010 |
| Total Posts: 5834 |
|
| |
|
|
| 28 Nov 2015 04:51 PM |
| As long as you can make the BillboardGUI the script is just one line. |
|
|
| Report Abuse |
|
|
|
| 28 Nov 2015 04:51 PM |
game.Players.PlayerAdded:connect(function(Player) Player.CharacterAdded:connect(function(Character) local Billboard = Instance.new("BillboardGui", Character) Billboard.Size = UDim2.new(0, 1, 0, 1) Billboard.Adornee = Character.Head Billboard.StudsOffset = Vector3.new(0, 2.5, 0) local Label = Instance.new("TextLabel", Billboard) Label.Text = Player.Name end) end)
There ya go. Just make the Label look better. |
|
|
| Report Abuse |
|
|
Sufxxor
|
  |
| Joined: 19 Aug 2013 |
| Total Posts: 211 |
|
|
| 28 Nov 2015 04:57 PM |
| lol sorry to say but it didn't work what do i do i added a textlabel and i put the local script in server script service and it dosnt work |
|
|
| Report Abuse |
|
|
|
| 28 Nov 2015 05:02 PM |
game.Players.PlayerAdded:connect(function(Player) Player.CharacterAdded:connect(function(Character) local Billboard = Instance.new("BillboardGui", Character) Billboard.Size = UDim2.new(0, 1, 0, 1) Billboard.Adornee = Character.Head Billboard.StudsOffset = Vector3.new(0, 2.5, 0) local Label = Instance.new("TextLabel", Billboard) Label.Text = Player.Name end) end)
Put it in a server script in server script service.. wtf, not a localscript. |
|
|
| Report Abuse |
|
|
Sufxxor
|
  |
| Joined: 19 Aug 2013 |
| Total Posts: 211 |
|
| |
|
|
| 28 Nov 2015 05:06 PM |
| You gonna tell me the output or you gonna sit there with your thumb up your butt? |
|
|
| Report Abuse |
|
|
Sufxxor
|
  |
| Joined: 19 Aug 2013 |
| Total Posts: 211 |
|
|
| 28 Nov 2015 06:04 PM |
| There is no output but i still dosnt work |
|
|
| Report Abuse |
|
|