Script not putting items into lighting

Hi!
This script should put the items into lighting, but it wont.

wait (3)
local cc = script.cc1
local blu = script.Blur

game.Players.PlayerAdded:Connect(function(player)
	player.CharacterAdded:Wait()
	cc:Clone().Parent = player.Lighting
	blu:Clone().Parent = player.Lighting
end)

Thanks for any support!

cc:Clone().Parent = game.Lighting, you put player.Lighting

Lighting is not a valid member of player, it’s a service. You can just do

cc:Clone().Parent = game.Lighting

and so on

lol im stupid, thanks. it works now

Would there be a way to destroy an affect with a TextButton?