WorldOfOutlaws

Green PF ESP ROBLOX

Jan 21st, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. local shadelight = game:GetService("Lighting")
  2. shadelight.FogEnd = 100000
  3. shadelight.GlobalShadows = false
  4. shadelight.Brightness = 1
  5. shadelight.Ambient = Color3.fromRGB(140, 140, 140)
  6. local locapapa = game:GetService("Players").LocalPlayer
  7. locapapa.CameraMaxZoomDistance = 400
  8. wait(0.5)
  9. for i,currentplayer in pairs(game:GetService("Players"):GetPlayers()) do
  10. if currentplayer.Name ~= game:GetService("Players").LocalPlayer.Name and currentplayer.Character:FindFirstChild("Head") ~= nil and currentplayer.Character:FindFirstChild("Humanoid") ~= nil then
  11. if currentplayer.Character.Humanoid.Health > 0 and currentplayer.Character.Head:FindFirstChild("billybord") == nil then
  12. local billybord = Instance.new("BillboardGui")
  13. local framy = Instance.new("Frame")
  14. framy.BackgroundColor3 = Color3.new(0, 1, 0)
  15. framy.Size = UDim2.new(0, 100, 0, 100)
  16. billybord.Name = "billybord"
  17. billybord.AlwaysOnTop = true
  18. billybord.LightInfluence = 0
  19. billybord.Size = UDim2.new(0, 4, 0, 4)
  20. billybord.StudsOffset = Vector3.new(0, 2, 0)
  21. billybord.ClipsDescendants = true
  22. framy.Parent = billybord
  23. local lohum = currentplayer.Character.Humanoid
  24. lohum.HealthDisplayType = Enum.HumanoidHealthDisplayType.AlwaysOn
  25. lohum.HumanoidDisplayDistanceType = Enum.HumanoidDisplayDistanceType.Viewer
  26. locapapa.Character.Humanoid.NameDisplayDistance = 100000
  27. locapapa.Character.Humanoid.HealthDisplayDistance = 100000
  28. if currentplayer.Character.Head:FindFirstChild("billybord") == nil then
  29. billybord.Parent = currentplayer.Character.Head
  30. end
  31. end
  32. end
  33. end
Add Comment
Please, Sign In to add comment