Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local shadelight = game:GetService("Lighting")
- shadelight.FogEnd = 100000
- shadelight.GlobalShadows = false
- shadelight.Brightness = 1
- shadelight.Ambient = Color3.fromRGB(140, 140, 140)
- local locapapa = game:GetService("Players").LocalPlayer
- locapapa.CameraMaxZoomDistance = 400
- wait(0.5)
- for i,currentplayer in pairs(game:GetService("Players"):GetPlayers()) do
- if currentplayer.Name ~= game:GetService("Players").LocalPlayer.Name and currentplayer.Character:FindFirstChild("Head") ~= nil and currentplayer.Character:FindFirstChild("Humanoid") ~= nil then
- if currentplayer.Character.Humanoid.Health > 0 and currentplayer.Character.Head:FindFirstChild("billybord") == nil then
- local billybord = Instance.new("BillboardGui")
- local framy = Instance.new("Frame")
- framy.BackgroundColor3 = Color3.new(0, 1, 0)
- framy.Size = UDim2.new(0, 100, 0, 100)
- billybord.Name = "billybord"
- billybord.AlwaysOnTop = true
- billybord.LightInfluence = 0
- billybord.Size = UDim2.new(0, 4, 0, 4)
- billybord.StudsOffset = Vector3.new(0, 2, 0)
- billybord.ClipsDescendants = true
- framy.Parent = billybord
- local lohum = currentplayer.Character.Humanoid
- lohum.HealthDisplayType = Enum.HumanoidHealthDisplayType.AlwaysOn
- lohum.HumanoidDisplayDistanceType = Enum.HumanoidDisplayDistanceType.Viewer
- locapapa.Character.Humanoid.NameDisplayDistance = 100000
- locapapa.Character.Humanoid.HealthDisplayDistance = 100000
- if currentplayer.Character.Head:FindFirstChild("billybord") == nil then
- billybord.Parent = currentplayer.Character.Head
- end
- end
- end
- end
Add Comment
Please, Sign In to add comment