Advertisement
mavythegamer

ESP leaked 3.0 [Nexul aim]

Jun 25th, 2018
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. print()
  2. wait(0.1)
  3. local function esp()
  4. for i,v in pairs(game.Players:GetChildren()) do
  5. if v.Name ~= game.Players.LocalPlayer.Name then
  6. if v ~= game.Players.LocalPlayer.Character.Torso then
  7.  
  8. local base = Instance.new("BillboardGui", workspace.Camera)
  9. local esP = Instance.new("Frame", base)
  10. -- Billboard
  11. base.AlwaysOnTop = true
  12. base.Enabled = true
  13. base.Size = UDim2.new(4.5,0,6,0)
  14. base.Name = "ESP"
  15. base.Adornee = v.Character.Torso
  16. base.StudsOffset = Vector3.new(0, -0.6, 0)
  17. -- Frame
  18. esP.BackgroundColor3 = Color3.new(75, 0, 0) -- Change color of ESP here with RGB :D ~ cProximity
  19. esP.BackgroundTransparency = 0.8
  20. esP.BorderColor3 = Color3.new(0,0,0)
  21. esP.BorderSizePixel = 1
  22. esP.Size = UDim2.new(1,0,1,0)
  23. --Names
  24. local name = Instance.new("TextLabel",base)
  25. name.Size = UDim2.new(1,0,1,0)
  26. name.BackgroundTransparency = 1
  27. name.Position = UDim2.new(0,0,0,0)
  28. name.Text = v.Name
  29. name.TextScaled = true
  30. name.TextColor3 = Color3.new(255,255,255)
  31. name.TextXAlignment = "Center"
  32. name.TextYAlignment = "Top"
  33. name.Font = "Highway"
  34. name.Position = UDim2.new(0,0,0,-100)
  35. end
  36. end
  37. print("ESP Loaded!")
  38. print("Created by Kid Atlaas/FileExplorer")
  39. end
  40.  
  41. game.Players.LocalPlayer.CharacterAdded:connect(esp)
  42. end
  43. esp()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement