I want to make it so a player has a point light,but the other players won't see it.He can only see his point light,how would I do that? This script is running on a local script
Player = game.Players.LocalPlayer local Torso = Player.Character.Torso local Light = Instance.new("PointLight",Torso) Light.Range = 10 Light.Shadows = true