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

How do I make a group rank GUI appear above players head? [closed]

Asked by 6 years ago

How do I make a GUI appear above the players head saying the rank in a certain group they're in.

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?

1 answer

Log in to vote
0
Answered by
Bazuxk 95
6 years ago
Edited 6 years ago

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! :)

Ad