pyxfluff
(Pyx)
1
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
lluckvy
(aaron)
3
Lighting is not a valid member of player, it’s a service. You can just do
cc:Clone().Parent = game.Lighting
and so on
pyxfluff
(Pyx)
4
lol im stupid, thanks. it works now
pyxfluff
(Pyx)
5
Would there be a way to destroy an affect with a TextButton?