Joriangames

NameTag/OverheadGui script

Oct 14th, 2020
752
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. ---This script is created by Joriangames/Problox Studio Scripts
  2. ---Watch his video to totally understand everything!!! Watch the tutorial here: https://youtu.be/BOMW_0eqO-g
  3. ---Dont forget to subscribe to my channel for more roblox studio tutorials
  4. game.Players.PlayerAdded:Connect(function(plr)
  5.     plr.CharacterAdded:Connect(function(char)
  6.         local Name = plr.Name
  7.         local NameTag = game.ServerStorage.OverheadGui:Clone()
  8.         NameTag.Parent = char.Head
  9.         local textlabel = NameTag.TextLabel
  10.         textlabel.Text = Name
  11.     end)
  12. end)
Add Comment
Please, Sign In to add comment