Hi, please help me real quick with an issue
What do you want to achieve? I need to create with Instance.new a ‘Highlight’ and parent it to all of a player’s children
What is the issue? I can’t figure out how to do it
What solutions have you tried so far? I looked around on the dev forum but couldn’t found that works
please help me, my game is almost done and this is the last detail missing
1 Like
CZXPEK
(czo)
December 4, 2022, 4:50pm
#2
You can just parent the Highlight to the players character and it will apply to all the bodyparts
boterflic5
(boterflic5)
December 4, 2022, 5:03pm
#3
local Players = game:GetService("Players")
local player = Players.LocalPlayer
player.CharacterAdded:Connect(function(char)
local hil = Instance.new("Highlight")
hil.Parent = char
end)
system
(system)
Closed
December 18, 2022, 5:03pm
#4
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.