You can write your topic however you want, but you need to answer these questions:
-
What do you want to achieve? Keep it simple and clear!
i want to make my highlight look like it is glowing -
What is the issue? Include screenshots / videos if possible!
the highlight is looking dull and not glowy
-
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