SHOW:
|
|
- or go back to the newest paste.
| 1 | local players = game:GetService("Players")
| |
| 2 | local player = players.LocalPlayer | |
| 3 | while wait(10) do | |
| 4 | for _,v in next, players:GetChildren() do | |
| 5 | if v.Team ~= player.Team then | |
| 6 | local esp = Instance.new("PointLight",v.Character.Head)
| |
| 7 | esp.Color = Color3.fromRGB(255, 0, 0) | |
| 8 | esp.Range = 18 | |
| 9 | esp.Brightness = 4.635 | |
| 10 | end | |
| 11 | end | |
| 12 | end |