How to i create outline on player like ESP?
i have no idea to create something like this.
1 Like
You could use a selection box element, which you set on the part and set its adornee to the player model itself. Does this help?
1 Like
They are good for single parts but i wouldn’t recommend them for more than 3 objects for performance reasons and limitation, they have a limit of 31 objects if i remember correctly and i think this would cause problems especially when using it on players
1 Like
you can use the Highlight instance and create one into the player’s character model, for an easy start, try using this script so you can get an idea on how highlights work
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(character)
local highlight = Instance.new("Highlight", character)
highlight.Name = "PlayerHighlight"
hightlight.OutlineColor = Color3.new(0, 0, 0)
highlight.FillTransparency = 1
highlight.Enabled = true
end)
end)
3 Likes
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.