Hi Everyone. I am going to show you how to make a overhead GUI.Overhead GUI is
a GUI that developers place on heads of special people or a player that bought a
a gamepass. This is not hard it is so easy...
First you need to put a brick. Then you insert a billboard gui in the brick.
Set Billboard GUI's StudsOffset to (0,2.5,0). After doing that add a textlabel
in it set transparency as 1 and Go down then click on TextScaled. You can
Select your font too if you want. Then drag billboard gui into the
(game>ReplicatedStorage)
Insert a script in the (game>ServerScriptService) then open it. Delete
delete everything in it then type
local billboardgui = game:GetService("ServerStorage"):Waitforchild("BillboardGui")
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
if player.Name == "Proasdjsj" then
local clonedgui = billboardgui:Clone()
clonedgui.TextLabel.Text = "OWNER"
clonedgui.TextLabel.TextColor3 = Color3.fromRGB(165,7,163)
clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
end
end)