I need the light inside the torso so the light follows the character.
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
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
Instance.new("PointLight", Workspace.iEternalFire.Torso).Range=20
Remember to disable GlobalShadows with this script.
game.Lighting.GlobalShadows=false
local l = Instance.new("PointLight",game.Workspace.Wasache.Torso)