How do I make a GUI appear above the players head saying the rank in a certain group they're in.
It's a simple script, you need to know how to use Billboard Gui and the script.
Put scriptA inside Workspace, scriptB inside Billboard Gui and Billboard Gui inside Lighting.
Example scriptA inside Workspace:
game.Workspace.ChildAdded:connect(function(rplr) game.Lighting.RankTag:Clone().Parent = rplr.Head -- Moving the tag into player's head end)
Example scriptB inside Billboard Gui:
script.Parent.TextLabel.Text = game.Players.LocalPlayer:GetRoleInGroup() -- Your group ID
There's several tutorials in Youtube on how to make the Tag.
I hope this helps you out! :)
Closed as Not Constructive by TheHospitalDev, abnotaddable, and Link150
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?