Advertisement
KodingKid

How to make an overhead GUI for yourself only in Roblox

Apr 13th, 2021
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.54 KB | None | 0 0
  1. local billboardgui = game:GetService("ServerStorage"):Waitforchild("BillboardGui")
  2. game.Players.PlayerAdded:Connect(function(player)
  3. player.CharacterAdded:Connect(function(character)
  4.       if player.Name ==  "KodingKid" then --your name goes here
  5.        local clonedgui = billboardgui:Clone()
  6.        clonedgui.TextLabel.Text = "CREATOR" --any title you want
  7.        clonedgui.TextLabel.TextColor3 = Color3.fromRGB(144,9,123) --any colour you want
  8.        clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
  9.           end
  10.       end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement