I’ve tried to make my own lighting plugin in the past before and it hasn’t worked. I really don’t know what I am doing wrong. Here is my script:
local toolbar = plugin:CreateToolbar(“Add High Quality Lighting”)
local button = toolbar:CreateButton(“Add Lighting”, “Good quality lighting for you to use.”, “”)
local function addLighting()
local Lighting = game.Lighting
Enum.Technology.ShadowMap
end
button.Click:Connect(addLighting)
What am I doing wrong? Sorry If I have put this in the wrong topic, I couldn’t find anywhere else that it fits in.