Roblox highlights

You can write your topic however you want, but you need to answer these questions:

  1. What do you want to achieve? Keep it simple and clear!
    i want to make my highlight look like it is glowing

  2. What is the issue? Include screenshots / videos if possible!
    the highlight is looking dull and not glowy
    image (44)

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    adding bloom, changing colors
    After that, you should include more details if you have any. Try to make your topic as descriptive as possible, so that it’s easier for people to help you!

function applyHighlight(radius)
	local ECOTI = setting:FindFirstChild("ECOTI")
	if ECOTI and ECOTI.Value then
		for _, player in pairs(game.Players:GetChildren()) do
			if player:IsA("Player") and player.Character ~= nil and player.Character:FindFirstChild("FLIRParts") == nil then
				local highlight = Instance.new('Highlight', player.Character)
				local heatSig = Instance.new('PointLight', player.Character.PrimaryPart)
				highlight.Name = "FLIRParts"
				highlight.OutlineColor = Color3.fromRGB(11, 48, 255)  
				highlight.FillColor = Color3.fromRGB(0, 13, 255)  
				highlight.DepthMode = Enum.HighlightDepthMode.Occluded
				highlight.FillTransparency = 0.8
				highlight.OutlineTransparency = 0
				table.insert(FLIRFolders, highlight)
				table.insert(FLIRFolders, heatSig)
			end
		end
	end
end

please help ive been trying to fix this for a while

Highlights don’t glow. Use selection boxes instead. Lower the bloom threshold. to get SelectionBoxes to glow.

1 Like

I’m using it so I just get the outline of the character, I don’t want it to look like every part is selected

In that case, no, it is impossible to get a shine effect on a highlight.

what other methods could i use? i just need the outline effect similar to the attached image
935067442-c9812a147ce554aac8eaca9c186675e2f23c6b74bee713ed3a120a6461a9cb50-d_640