Palazikaka

Untitled

Jan 1st, 2020
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. for __,v in pairs(game.Players:GetChildren()) do
  2. if v.Name == game.Players.LocalPlayer.Name then
  3. print("HOLDER")
  4. else
  5. local a = Instance.new("BillboardGui",v.Character.HumanoidRootPart)
  6. a.Name = math.random(20000000)
  7. a.Size = UDim2.new(10,0, 10,0)
  8. a.AlwaysOnTop = true
  9. local b = Instance.new("Frame",a)
  10. b.Name = math.random(20000000)
  11. b.Size = UDim2.new(1,0, 1,0)
  12. b.BackgroundTransparency = 0.75
  13. b.BackgroundColor3 = Color3.new(0, 17, 255)
  14. b.BorderSizePixel = 2
  15. b.BorderColor3 = Color3.new(255, 255, 255)
  16. end
  17. end
Advertisement
Add Comment
Please, Sign In to add comment