Heya! I created a simple customizable player outliner that takes advantage of the new highlight instance release. Below are some details of the resource.
What does this look like?
By default, the resource will make your characters look like this:
However, you can use the config file to change the transparency and color of the outline!
How do I configure the resource?
In the PlayerOutliner
module, you will find another Config
module. The contents look like this:
return {
-- If true, then the outline will be removed when a player dies
RemoveHighlightOnDeath = true,
-- This is the outline color
HighlightColor = Color3.fromRGB(0, 0, 0),
-- From 0-1, how invisible the outline is
HightlightTransparency = 0.5,
-- The name of the outline being created
HighlightInstanceName = "PlayerOutline",
-- If true, the module will automatically begin adding outlines to the player characters that spawn
-- Only can do so when require() is called on the module
CreateOutlinesAutomatically = true,
-- If true, then every part, including accessories, are highlighted
-- Warning! A max 31 highlight count is in place on Roblox,
-- only use on small servers.
HightlightEveryPart = false,
}
You can change these settings to your liking.
Want to integrate the module into your own code or into a framework, such as Yucon Framework? The module works by itself, so you can do that!
Where to get this resource
You can get the resource directly in your inventory! Or, alternatively, you may download the resource as a file.
Or, download it here (3.0 KB)
Hope this resource is helpful for you guys! Thanks for reading