I used Roblox’s beam creation through a script and then just changed the values to HumanoidRootPart and a Part as the draw area but I cannot see the line. I doesn’t really matter where it goes but connecting the player with a beam to a part.
Its in a script.
local att0 = Instance.new(“Attachment”)
local att1 = Instance.new(“Attachment”)local plr = game.Players:GetPlayers()
local character = plr.Character
local HumanoidRootPart = character and character:FindFirstChild(“HumanoidRootPart”)att0.Parent = game.Workspace.Part
att1.Parent = HumanoidRootPartlocal beam = Instance.new(“Beam”)
beam.Attachment0 = att0
beam.Attachment1 = att1– appearance properties
beam.Color = ColorSequence.new({ – a color sequence shifting from white to blue
ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 255, 255)),
ColorSequenceKeypoint.new(1, Color3.fromRGB(0, 255, 255)),
})
beam.LightEmission = 1 – use additive blending
beam.LightInfluence = 0 – beam not influenced by light
beam.Texture = “rbxasset://textures/particles/sparkles_main.dds” – a built in sparkle texture
beam.TextureMode = Enum.TextureMode.Wrap – wrap so length can be set by TextureLength
beam.TextureLength = 1 – repeating texture is 1 stud long
beam.TextureSpeed = 1 – slow texture speed
beam.Transparency = NumberSequence.new({ – beam fades out at the end
NumberSequenceKeypoint.new(0, 0),
NumberSequenceKeypoint.new(0.8, 0),
NumberSequenceKeypoint.new(1, 1),
})
beam.ZOffset = 0 – render at the position of the beam without offset– shape properties
beam.CurveSize0 = 0 – create a curved beam
beam.CurveSize1 = 0 – create a curved beam
beam.FaceCamera = true – beam is visible from every angle
beam.Segments = 10 – default curve resolution
beam.Width0 = 1 – starts small
beam.Width1 = 1 – ends big– parent beam
beam.Enabled = true
beam.Parent = att0