Advertisement
axelloft1

ESP without reload

Jul 2nd, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. local Player = game.Players:GetChildren()
  2. for i,v in pairs(Player) do
  3. local BillboardGui = Instance.new("BillboardGui")
  4. local Frame = Instance.new("Frame")
  5. if v.Team == game.Players.LocalPlayer.Team then
  6. else
  7. if game.Workspace:FindFirstChild(v.Name).Head:FindFirstChild("BilldBoardGui") then
  8. else
  9. BillboardGui.Parent = game.Workspace:FindFirstChild(v.Name).Head
  10. BillboardGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  11. BillboardGui.Active = true
  12. BillboardGui.Adornee = game.Workspace:FindFirstChild(v.Name).Head
  13. BillboardGui.AlwaysOnTop = true
  14. BillboardGui.LightInfluence = 1.000
  15. BillboardGui.Size = UDim2.new(1, 0, 1, 0)
  16. Frame.Parent = BillboardGui
  17. Frame.BackgroundColor3 = Color3.new(255,0,255)
  18. Frame.Rotation = 45.000
  19. Frame.Size = UDim2.new(1, 0, 1, 0)
  20. end
  21. end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement