Advertisement
Guest User

ROBLOX SCRIPT # 2!

a guest
Aug 23rd, 2019
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. ROBLOX SCRIPT
  2. local billboardgui = game:GetService("ServerStorage"):WaitForChild("BillboardGui")
  3. game.Players.PlayerAdded:Connect(function(player)
  4. player.CharacterAdded:Connect(function(char)
  5. if player.Name == "oof" then -- change "oof" to "YOUR NAME"
  6. local clonedgui = billboardgui:Clone()
  7. clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
  8. clonedgui.TextLabel.Text = "Owner"
  9. clonedgui.TextLabel.TextColor3 = Color3.fromRGB(231,206,12)
  10. end
  11. if player:IsInGroup(23651565) then
  12. local clonedgui = billboardgui:Clone()
  13. clonedgui.Parent = game.Workspace:WaitForChild(player.Name).Head
  14. clonedgui.TextLabel.Text = "Owner"
  15. clonedgui.TextLabel.TextColor3 = Color3.fromRGB(231,206,12)
  16. end
  17. end)
  18. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement