derekiscool423

esp

Mar 26th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. --Thanks To HessaFTW And His Slave BlueHunter
  2. --Hessa Is the one that made this compalation
  3. --BlueHunter was the test subject
  4. --Have eny scripts that arent in here send them to HessaFTW and he will test and put in for next update
  5.  
  6. for i,v in pairs(game.Players:GetChildren()) do
  7. if v ~= game.Players.LocalPlayer.Character.Torso then
  8.  
  9. local base = Instance.new("BillboardGui", workspace.Camera)
  10. local esP = Instance.new("Frame", base)
  11. -- Billboard
  12. base.AlwaysOnTop = true
  13. base.Enabled = true
  14. base.Size = UDim2.new(4.5,0,6,0)
  15. base.Name = "ESP"
  16. base.Adornee = v.Character.Torso
  17. base.StudsOffset = Vector3.new(0, -0.6, 0)
  18. -- Frame
  19. esP.BackgroundColor3 = Color3.new(170, 255, 0)
  20. esP.BackgroundTransparency = 0.8
  21. esP.BorderColor3 = Color3.new(0,0,0)
  22. esP.BorderSizePixel = 1
  23. esP.Size = UDim2.new(1,0,1,0)
  24. --Names
  25. local name = Instance.new("TextLabel",base)
  26. name.Size = UDim2.new(1,0,1,0)
  27. name.BackgroundTransparency = 1
  28. name.Position = UDim2.new(0,0,0,0)
  29. name.Text = v.Name
  30. name.TextScaled = true
  31. name.TextColor3 = Color3.new(255,255,255)
  32. name.TextXAlignment = "Center"
  33. name.TextYAlignment = "Top"
  34. name.Font = "Highway"
  35. name.Position = UDim2.new(0,0,0,-100)
  36. end
  37. end
  38. print("ESP Loaded!")
  39. print("Created by Kid Atlaas/FileExplorer")
Add Comment
Please, Sign In to add comment