Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How would I insert a PointLight into a torso?

Asked by 10 years ago

I need the light inside the torso so the light follows the character.

4 answers

Log in to vote
0
Answered by
Hybric 271 Moderation Voter
10 years ago

Insert a script inside Startpack (A LOCAL SCRIPT) then the script's Text/Code should be:

local g = Instance.new("PointLight")
g.Color = Color3.new(1,1,1)
g.Range = 20
g.Brightness = 2
g.Enabled = true
g.Parent = script.Parent.Parent.Character.Torso
Ad
Log in to vote
0
Answered by 10 years ago
local light = Instance.new("PointLight")
light.Color = BrickColor.new("Really black").Color
light.Range = 20
light.Brightness = 2
light.Parent = script.Parent.Parent.Character.Torso
0
Didn't see the answer above woops XD AstralKick 25 — 10y
Log in to vote
0
Answered by
Qxest 25
10 years ago

Instance.new("PointLight", Workspace.iEternalFire.Torso).Range=20

Remember to disable GlobalShadows with this script.

game.Lighting.GlobalShadows=false

Log in to vote
-1
Answered by 10 years ago

local l = Instance.new("PointLight",game.Workspace.Wasache.Torso)

Answer this question