Advertisement
Script_Master132

Island Royale esp name

Apr 30th, 2019
708
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  2. if v ~= game:GetService("Players").LocalPlayer then
  3. local BillboardGui = Instance.new("BillboardGui")
  4. local TextLabel = Instance.new("TextLabel")
  5. --Properties:
  6. BillboardGui.Parent = v.Character
  7. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  8. BillboardGui.Active = true
  9. BillboardGui.AlwaysOnTop = true
  10. BillboardGui.LightInfluence = 0
  11. BillboardGui.Size = UDim2.new(0, 200, 0, 50)
  12. BillboardGui.StudsOffset = Vector3.new(0, 4, 0)
  13.  
  14. TextLabel.Parent = BillboardGui
  15. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  16. TextLabel.BackgroundTransparency = 1
  17. TextLabel.BorderSizePixel = 0
  18. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  19. TextLabel.Font = Enum.Font.SourceSans
  20. TextLabel.TextColor3 = Color3.new(0, 1, 0)
  21. TextLabel.TextScaled = true
  22. TextLabel.TextSize = 14
  23. TextLabel.TextWrapped = true
  24. TextLabel.Text = v.Name
  25. end
  26. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement