i already have this script, but idk how to make the light follow the camera
local mouse = game.Players.LocalPlayer:GetMouse()
function Light()
local player = game.Players.LocalPlayer
local playerChar = player.Character
local playerLight = playerChar.Head:FindFirstChild("Light")
if playerLight then
playerLight:Destroy()
else
local light = Instance.new("SurfaceLight",playerChar:FindFirstChild("Head"))
light.Name = "Light"
light.Range = 70
light.Angle = 99
light.Shadows = true
light.Brightness = 1
end
end
mouse.KeyDown:connect(function(key)
key = key:lower()
if key == "f" then
script.FlashLightSound:Play()
Light()
end
end)
** You are now Level 2! **