How to make a overhead gui rank - Roblox scripting

Published: 10 January 2019
on channel: Ropix
14,727
214

In this video I will teach you how to script a overhead rank gui!
make sure to like and subscribe

code:
local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui")
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(char)
game.Workspace:WaitForChild(player.Name)
if player.Name == "Himal110" then
local clonedgui = billboardgui:clone()
clonedgui.Parent = game.Workspace[player.Name].Head
clonedgui.Textlabel.Text = "Owner"
clonedgui.Textlabel.TextColor3 = Color3.fromRGB(231,206,12)
end
end)
end)