-
What do you want to achieve? Fix my script.
-
What is the issue? Im trying to put an beam effect on my Character, but the beam spawns in a random part of the map.
-
What solutions have you tried so far? I tried to use attachments but din’t worked.
My script:
event.OnServerEvent:Connect(function(player)
local char = player.Character
local beam = script.beam:Clone()
beam.Parent = char["HumanoidRootPart"]
local A0 = Instance.new("Attachment",char["HumanoidRootPart"])
A0.Name = "att0"
end)
Why this inst working?